Guest User

Untitled

a guest
Feb 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. public class GameText {
  2. public static final String welcome = "Welcome to Hunt the Wombus!";
  3. public static final String killedRick = "You killed Rick!";
  4. public static final String killedByRick = "You were killed by Rick!";
  5. public static final String killedByArrow = "You took an arrow to the knee!";
  6. public static final String killedByPit = "You fell into the Pit";
  7. public static final String playerNoArrows = "Oh, no arrows left";
  8. public static final String batRoom = "You hear the flapping of wings nearby.";
  9. public static final String movedByBats = "Ah, bats have moved caught you and are dragging you to a different room!";
  10. public static final String movedToNewRoom = "You moved to a new room";
  11. public static final String movedNull = "Have not moved..";
  12. public static final String pitRoom = "You feel a cool breeze nearby.";
  13. public static final String rickText1 = "You hear something near by, \"....give.....up\"";
  14. public static final String rest = "Resting";
  15. public static final String pickedUpArrows = "You picked up %d arrow(s)";
  16. public static final String playAgain = "\nEnter (Y)es to play another game: ";
  17. public static final String goodbye = "\n\nGoodbye, thanks for playing";
  18. public static final String pointer = "\n> ";
  19. public static final String invalidCommand = "\nInvalid command please enter again";
  20.  
  21. public static final String instructions = "\nTo Move enter (M)ove followed by the direction (N, S, E, W)" +
  22. "\nTo Shoot enter (S)hoot followed by the direction (N, S, E, W)" +
  23. "\nTo see these options again, type (H)elp" +
  24. "\nTo quit the game enter (Q)uit";
Add Comment
Please, Sign In to add comment