summaryrefslogtreecommitdiff
path: root/DSALib/Characters/ICombatant.cs
blob: a99bff9d9cd4614a6809ac42b283188d594892bc (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DiscoBot.DSA_Game.Characters
{
    public interface ICombatant
    {
        string Name { get; set; }

        int Lebenspunkte_Basis { get; set; }
        int Lebenspunkte_Aktuell { get; set; }

        int Ausdauer_Basis { get; set; }
        int Ausdauer_Aktuell { get; set; }

        int Astralpunkte_Basis { get; set; }
        int Astralpunkte_Aktuell { get; set; }
        
        string Angriff(string talent, int erschwernis = 0);

        string Parade(string talent, int erschwernis = 0);
    }
}