summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Dsa.cs
blob: c6ea1c34a8d2603ba03119268d97c26a5a9dd1c7 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
namespace DiscoBot.DSA_Game
{
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;

    using DiscoBot.Audio;
    using DiscoBot.Auxiliary;
    using DiscoBot.Commands;
    using DiscoBot.DSA_Game.Characters;
    using DiscoBot.DSA_Game.Save;

    using Discord.Commands;

    public static class Dsa
    {
        public static ICommandContext GeneralContext { get; set; }

        public static AudioService Service { get; set; }

        public static Dictionary<string, string> Relation { get; set; } = new Dictionary<string, string>(); // dictionary to match the char

        public static List<ICharacter> Chars { get; set; } = new List<ICharacter>();  // list of all characters

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

        public static Properties Properties { get; set; }
        
        public static void Startup()
        {
            Relation.Add("The Doctor", "Numeri Illuminus"); // Relation
            Relation.Add("Tardis", "Helga von Drachenei, Tausendsasserin"); // "Numeri Illuminus");
            Relation.Add("DSA Bot", "Morla"); // "Felis Exodus Schattenwald");
            Relation.Add("Morla", "Morla");
            Relation.Add("Rhoktar", "Rhoktar4");
            Relation.Add("MagicBro5", "Krenko");
            Relation.Add("Nicolas", "Hartmut Reiher");
            Relation.Add("TrueKuehli", "Ledur Torfinson");

             //Relation.Add("Papo","Gwendelson");
            //Relation.Add("Papo", "Pump aus der Gosse");

            //Nachteile für LE, AE, MR
            // Relation.Add("Papo", "Angilbert Arres");

            //Vorteile für LE, AE, MR
            Relation.Add("Papo", "Beef");
            //Relation.Add("Papo", "Astrallos");

            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));
            }

            Properties = Save.Properties.Deserialize();
            Properties.Serialize();

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