summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Talent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/DSA_Game/Talent.cs')
-rw-r--r--DiscoBot/DSA_Game/Talent.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/DiscoBot/DSA_Game/Talent.cs b/DiscoBot/DSA_Game/Talent.cs
index fe097fa..ff91742 100644
--- a/DiscoBot/DSA_Game/Talent.cs
+++ b/DiscoBot/DSA_Game/Talent.cs
@@ -35,5 +35,24 @@
var sc = (StringComparer)new SpellCorrect();
return sc.Compare(quarry, this.Name);
}
+
+ public bool IstFernkampftalent()
+ {
+ switch (Name)
+ {
+ case "Armbrust":
+ case "Belagerungswaffen":
+ case "Blasrohr":
+ case "Bogen":
+ case "Diskus":
+ case "Schleuder":
+ case "Wurfbeile":
+ case "Wurfmesser":
+ case "Wurfspeere":
+ return true;
+ default:
+ return false;
+ }
+ }
}
}