Advertisement
Luninariel

textGame - Warrior

Dec 11th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package sample.edu.missouriwestern.cpozo.monsters;
  2.  
  3. public class Warrior extends Human {
  4. public Warrior (){
  5. super();
  6. symbol = "\uD83D\uDC82";
  7. aggressiveness = 1.0;
  8. strength = 1.4;
  9. setStamina(1.0 + Math.random());
  10. attackMessage = "Attacks skillfully with a sword";
  11. }
  12.  
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement