Advertisement
Luninariel

Monsters - Assassin Vine

Dec 7th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package edu.missouriwestern.cpozo.csc254.monsters;
  2.  
  3.  
  4.  
  5. public class assassinVine extends Plant implements Nocturnal {
  6. public assassinVine (){
  7. super();
  8. symbol = "\uD83C\uDF8B";
  9. aggressiveness = 2.0;
  10. strength = 1.0;
  11. setStamina(2.0);
  12. attackMessage = "chokes you tightly as you walk beneath it";
  13. passiveMessage = "dangles there innocently";
  14. }
  15.  
  16. @Override
  17. public void changeMessages() {
  18.  
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement