Advertisement
Luninariel

Monsters - Plant

Dec 7th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package edu.missouriwestern.cpozo.csc254.monsters;
  2.  
  3. public class Plant extends Entity {
  4.  
  5. public Plant (){
  6. this(3.0);
  7. }
  8.  
  9. public Plant(double health){
  10. super();
  11. symbol = "\uD83C\uDF3F";
  12. setHealth(health);
  13. setStamina(3.0);
  14. strength = 0.1;
  15. aggressiveness = 0.0;
  16. attackMessage = "Stands Mighty";
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement