Advertisement
Luninariel

Monsters - Rabbit

Dec 7th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package edu.missouriwestern.cpozo.csc254.monsters;
  2.  
  3. public class rabbitOfCaerbannog extends Animal {
  4. public rabbitOfCaerbannog (){
  5. super();
  6. symbol = "\uD83D\uDC07";
  7. aggressiveness = 5.0;
  8. strength = 2.0;
  9. setStamina(1.5 + Math.random());
  10. attackMessage = "bites at the jugular in an attempt to kill";
  11. passiveMessage = "sleeps, be thankful you do not die today";
  12. }
  13.  
  14.  
  15. }
  16.  
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement