summaryrefslogtreecommitdiff
path: root/DSALib/Characters/Critter.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
commit2503ca78d3e583cb1291cb9a99a6e79526a348ee (patch)
tree5be61d23d80c23422f68831b0862918dd4f5616c /DSALib/Characters/Critter.cs
parent4671e76af27446a74c1015bd76b52e48ea241e74 (diff)
Created DSALib Created ZooBOTanica
Diffstat (limited to 'DSALib/Characters/Critter.cs')
-rw-r--r--DSALib/Characters/Critter.cs36
1 files changed, 36 insertions, 0 deletions
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();
+ }
+ }
+}