コード例 #1
0
 public static Attack Punch()
 {
     return(new Attack("Punch", Dices.Dice1D2(), "Punch the enemy"));
 }
コード例 #2
0
 public static Attack Kick()
 {
     return(new Attack("Kick", Dices.Dice1D2(), "Kick the enemy"));
 }
コード例 #3
0
 public static Attack Bite()
 {
     return(new Attack("Bite", Dices.Dice1D2(), "Ram your teeth into the enemy"));
 }