Advertisement
Luninariel

Monsters - Owl

Dec 7th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package edu.missouriwestern.cpozo.csc254.monsters;
  2.  
  3. public class Owl extends Animal implements Nocturnal {
  4. public Owl (){
  5. super();
  6. symbol = "\uD83E\uDD89";
  7. aggressiveness = 1.0;
  8. strength = 1.4;
  9. setStamina(1.0 + Math.random());
  10. attackMessage = "Hoot Hoot";
  11. passiveMessage = "How many licks does it take to get to the tootsie roll center of a tootsie pop?";
  12. }
  13.  
  14. @Override
  15. public void changeMessages() {
  16.  
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement