Advertisement
Luninariel

Monsters - Pine tree

Dec 7th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package edu.missouriwestern.cpozo.csc254.monsters;
  2.  
  3.  
  4.  
  5. public class pineTree extends Plant {
  6. public pineTree (){
  7. super();
  8. symbol = "\uD83C\uDF33";
  9. aggressiveness = 0.5;
  10. strength = 0.1;
  11. setStamina(2.0);
  12. attackMessage = "I'll be whoppine your butt";
  13. passiveMessage = "I'll pine for you";
  14. }
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement