From 2503ca78d3e583cb1291cb9a99a6e79526a348ee Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Mon, 9 Jul 2018 15:15:35 +0200 Subject: Created DSALib Created ZooBOTanica --- DSALib/Characters/ICharacter.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 DSALib/Characters/ICharacter.cs (limited to 'DSALib/Characters/ICharacter.cs') diff --git a/DSALib/Characters/ICharacter.cs b/DSALib/Characters/ICharacter.cs new file mode 100644 index 0000000..aabebe6 --- /dev/null +++ b/DSALib/Characters/ICharacter.cs @@ -0,0 +1,13 @@ +namespace DiscoBot.DSA_Game.Characters +{ + public interface ICharacter : ICombatant + { + string TestTalent(string talent, int erschwernis = 0); + + string TestEigenschaft(string eigenschaft, int erschwernis = 0); + + string Fernkampf(string talent, int erschwernis = 0); + + string TestZauber(string waffe, int erschwernis); + } +} -- cgit v1.2.3-54-g00ecf