Guest User

Untitled

a guest
Feb 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. public static final String welcome = "Welcome to Hunt the Wombus!";
  2. public static final String killedRick = "You killed the Wombus!";
  3. public static final String killedByRick = "You were killed by the Wombus!";
  4. public static final String killedByArrow = "You took an arrow to the knee!";
  5. public static final String killedByPit = "You fell into the Pit";
  6. public static final String playerNoArrows = "Oh, no arrows left";
  7. public static final String batRoom = "You hear the flapping of wings nearby.";
  8. public static final String movedByBats = "Ah, sky rats have caught you and flew you to a different room!";
  9. public static final String movedToNewRoom = "You moved to a new room";
  10. public static final String movedNull = "You walked into a wall...Have not moved...";
  11. public static final String pitRoom = "You feel a cool breeze nearby.";
  12.  
  13. public static final String rickText1 = "You hear something near by, \"....give.....up\"";
  14. public static final String rickText2 = "You hear something near by, \".....let...down\"";
  15. public static final String rickText3 = "You hear something near by, \"....run........\"";
  16. public static final String rickText4 = "You hear something near by, \".......Hurt You\"";
  17. public static final String rickText5 = "You hear something near by, \"....say goodbye\"";
  18.  
  19. public static final String rest = "Resting";
  20. public static final String pickedUpArrows = "You picked up %d arrow(s)";
  21. public static final String playAgain = "\nEnter (Y)es to play another game: ";
  22. public static final String goodbye = "\n\nGoodbye, thanks for playing";
  23. public static final String pointer = "\n> ";
  24. public static final String invalidCommand = "\nInvalid command please enter again";
  25.  
  26. public static final String instructions = "\nTo Move enter (M)ove followed by the direction (N, S, E, W)" +
  27. "\nTo Shoot enter (S)hoot followed by the direction (N, S, E, W)" +
  28. "\nTo see these options again, type (H)elp" +
  29. "\nTo quit the game enter (Q)uit";
  30.  
  31. public static final char commandHelp = 'H';
  32. public static final char commandPrintMap = 'P';
  33. public static final char commandMove = 'M';
  34. public static final char commandRest = 'R';
  35. public static final char commandQuit = 'Q';
  36. public static final char commandShoot = 'S';
  37. public static final char commandNorth = 'N';
  38. public static final char commandSouth = 'S';
  39. public static final char commandEast = 'E';
  40. public static final char commandWest = 'W';
  41. public static final char commandYes = 'Y';
Add Comment
Please, Sign In to add comment