Ejemplo n.º 1
0
 public static Attack Kick()
 {
     return(new Attack("Kick", Dices.Dice1D2(), "Kick the enemy"));
 }
Ejemplo n.º 2
0
 public static Attack Bite()
 {
     return(new Attack("Bite", Dices.Dice1D2(), "Ram your teeth into the enemy"));
 }
Ejemplo n.º 3
0
 public static Attack Punch()
 {
     return(new Attack("Punch", Dices.Dice1D2(), "Punch the enemy"));
 }
Ejemplo n.º 4
0
 public static Weapon Sword()
 {
     return(new Weapon("Sword", Dices.Dice1D4(), "Its a sword", 3, 5));
 }