summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA.cs
blob: af02023fa35f02adb3d26d5e21b5a9e6eb752469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace DiscoBot
{
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Threading.Tasks;

    using Discord.Commands;

    public static class DSA
    {
        public static ICommandContext GeneralContext { get; set; }
        public static Dictionary<string, string> relation = new Dictionary<string, string>(); //dictionary to match the char
        public static List<ICharacter> chars = new List<ICharacter>();                                      //list of all charackters

        public static List<Talent> Talente { get; set; } = new List<Talent>();

        public static async Task Startup()
        {
            relation.Add("The Doctor", "Numeri Illuminus");//Relation
            relation.Add("Tardis", "Morla");//"Numeri Illuminus");
            relation.Add("DSA Bot", "Morla");//"Felis Exodus Schattenwald");
            relation.Add("Morla", "Morla");
            relation.Add("Rhoktar", "Rhoktar4");
            //relation.Add("Papo","Gwendelson");
            relation.Add("Papo", "Pump aus der Gosse");
            relation.Add("Potus", "Potus");
            //relation.Add("Papo", "Pump aus der Gosse");
            foreach (var filename in Directory.GetFiles("helden", "*.xml"))
            {
                chars.Add(new Character(filename));
                (chars.Last() as Character)?.Talente.Select(x => new Talent(x.name, x.probe, 0))
                    .Where(c => !Talente.Exists(v => v.name.Equals(c.name))).ToList().ForEach(v => Talente.Add(v));
            }

            Talente = Talente.OrderBy(x => x.name).ToList();
        }
    }
}