summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Characters/SaveChar.cs
blob: 94538bb6e34cd502352b604564777d81f037b4f0 (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
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DiscoBot.DSA_Game.Characters
{
    public class SaveChar : ICharacter
    {
        public string Name { get; set; }

        public int Lebenspunkte_Basis { get; set; }

        public int Lebenspunkte_Aktuell { get; set; }

        public int Ausdauer_Basis { get; set; }

        public int Ausdauer_Aktuell { get; set; }

        public int Astralpunkte_Basis { get; set; }

        public int Astralpunkte_Aktuell { get; set; }

        public static SaveChar FromICharacter(ICharacter c)
        {
            return new SaveChar
            {
                Astralpunkte_Aktuell = c.Astralpunkte_Aktuell,
                Astralpunkte_Basis = c.Astralpunkte_Basis,
                Ausdauer_Aktuell = c.Ausdauer_Aktuell,
                Ausdauer_Basis = c.Ausdauer_Basis,
                Lebenspunkte_Aktuell = c.Lebenspunkte_Aktuell,
                Lebenspunkte_Basis = c.Lebenspunkte_Basis,
                Name = c.Name
            };
        }

        public string TestTalent(string talent, int erschwernis = 0)
        {
            throw new NotImplementedException();
        }

        public string TestEigenschaft(string eigenschaft, int erschwernis = 0)
        {
            throw new NotImplementedException();
        }

        public string Angriff(string talent, int erschwernis = 0)
        {
            throw new NotImplementedException();
        }

        public string Parade(string talent, int erschwernis = 0)
        {
            throw new NotImplementedException();
        }

        public string Fernkampf(string talent, int erschwernis = 0)
        {
            throw new NotImplementedException();
        }

        public string TestZauber(string waffe, int erschwernis)
        {
            throw new NotImplementedException();
        }
    }
}