Advertisement
Luninariel

textGame - Rabbit

Dec 11th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package sample.edu.missouriwestern.cpozo.monsters;
  2.  
  3. public class rabbitOfCaerbannog extends Animal {
  4. public rabbitOfCaerbannog() {
  5. super();
  6. symbol = "\uD83D\uDC07";
  7. aggressiveness = 1.0;
  8. strength = 1.0;
  9. setStamina(1.0 + 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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement