blob: bf1e52d330dc9601e739a8bed10e0df4bd09436b (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
namespace DSALib
{
public class Talent // talent objekt
{
public Talent(string name, string probe, int value)
{
this.Name = name;
this.Probe = probe;
this.Value = value;
}
public string Name { get; set; }
public string Probe { get; set; }
public int Value { get; set; }
public string[] GetEigenschaften() // turn XX/XX/XX into string[]{XX,XX,XX}
{
var temp = this.Probe.Split('/');
for (var index = 0; index < temp.Length; index++)
{
temp[index] = temp[index].Replace("/", string.Empty);
}
return temp;
}
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;
}
}
}
}
|