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/Critter.cs | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 DSALib/Characters/Critter.cs (limited to 'DSALib/Characters/Critter.cs') diff --git a/DSALib/Characters/Critter.cs b/DSALib/Characters/Critter.cs new file mode 100644 index 0000000..5090b6b --- /dev/null +++ b/DSALib/Characters/Critter.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DSALib.Characters +{ + using DiscoBot.DSA_Game.Characters; + + public class Critter : Being, ICombatant + { + private int rs, mr, ko, pa, gs, gw; + + + public Critter(int gw, int gs, int rs, int mr, int ko, int pa) + { + this.gw = gw; + this.gs = gs; + this.rs = rs; + this.mr = mr; + this.ko = ko; + this.pa = pa; + } + + public string Angriff(string talent, int erschwernis = 0) + { + throw new NotImplementedException(); + } + + public string Parade(string talent, int erschwernis = 0) + { + throw new NotImplementedException(); + } + } +} -- cgit v1.2.3-54-g00ecf