Exemple #1
0
 public void attack(Animal target)
 {
     this.moodDown();
     target.injured();
 }
Exemple #2
0
 public void toxic(Animal target)
 {
     this.moodUp();
     target.injured();
     target.moodDown();
 }