diff --git a/data/words.dat b/data/words.dat index b4721f4..2ac7920 100644 --- a/data/words.dat +++ b/data/words.dat @@ -16,6 +16,8 @@ attack, verb scream, verb read, verb play, verb +give, verb +exercise, verb north, direction south, direction west, direction diff --git a/src/com/bayviewglen/zork/Game.java b/src/com/bayviewglen/zork/Game.java index b9a2b63..d9dffbd 100644 --- a/src/com/bayviewglen/zork/Game.java +++ b/src/com/bayviewglen/zork/Game.java @@ -464,6 +464,12 @@ class Game { System.out.println("You can't talk to someone while in battle!"); } break; + case "exercise": + System.out.println("You break out your High-Knees and Burpees from that one free-trial HIIT class you tried at your\ncommunity centre and feel quite refreshed afterward."); + break; + case "give": + System.out.println("There aren't any cookies in Casa Loma. I guess Rattenbury's mentor group\nwon't be getting their Mentor Kindness gift..."); + break; case "scream": System.out.println("Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhh!"); break;