diff --git a/data/enemies.dat b/data/enemies.dat index 10c9960..20db5aa 100644 --- a/data/enemies.dat +++ b/data/enemies.dat @@ -1,4 +1,4 @@ Enemy Name: Henry Pellatt -Description: The owner of the Castle. +Description: The owner of the Castle Starting Room: Circle Room Damage Given: 25 \ No newline at end of file diff --git a/data/rooms.dat b/data/rooms.dat index 6db5cfd..8835007 100644 --- a/data/rooms.dat +++ b/data/rooms.dat @@ -1,7 +1,7 @@ Room name: Circle Room Room Description: You are in the circular room. The windows to the west are bolted shut and curtains cover them.
To the east, a hallway. A scroll hangs on the north wall. Writing is visible. Locked: false -Items:Lockpick +Items:Lockpick, Scroll Exit Rooms: W-Apple Hallway Room name: Apple Hallway Room Description: You are in an empty hallway. Many closed doors surround you. To the west is the Circle Room and north is the Porcupine Stairs. The door to the stairs is locked. There is no key to the door. diff --git a/src/com/bayviewglen/zork/Items/Scroll.java b/src/com/bayviewglen/zork/Items/Scroll.java new file mode 100644 index 0000000..2e09ae4 --- /dev/null +++ b/src/com/bayviewglen/zork/Items/Scroll.java @@ -0,0 +1,11 @@ +package com.bayviewglen.zork.Items; + +public class Scroll { + private String message; + public Scroll(String message) { + this.message = message; + } + public String getMessage() { + return message; + } +}