fixed bugs

This commit is contained in:
jslightham
2019-06-01 00:49:31 -04:00
parent c8642adc5c
commit 33586d7f35
6 changed files with 21 additions and 13 deletions

View File

@@ -8,3 +8,8 @@ Description: The wife to the owner of the Castle
Starting Room: Lady Pellatt's Bedroom
Damage Given: 25
Loot: Crowbar
Enemy Name: DesLauriers The Dog
Description: The cookie monster
Starting Room: Kitchen
Damage Given: 40
Loot: Base

View File

@@ -164,7 +164,7 @@ Locked: false
Boarded: false
Items:
Riddler:
Exit Rooms: S-Aspen Bedroom, E-Willow Bedroom
Exit Rooms: S-Aspen Bedroom, E-Willow Bedroom, N-Guest Bedroom
Room name: Guest Bedroom
Room Description: Welcome to the guest bedroom, where guests like yourself stay for the night. There is another tailored<br>man in the corner. He seems to have something he would like to tell you.
@@ -227,7 +227,7 @@ Room Description: You are now in the Conservatory. The walls and ceilings are al
Locked: false
Boarded: false
Items:
Riddler: "Hey<comma> I'm Karen. Kevin is on his break but he told me to give you this riddle", "Marking mortal privation<comma> when firmly in place. An enduring summation<comma> inscribed in my face. What am I?", "A tombstone", Point
Riddler: "Hey<comma> I'm Karen. Kevin is on his break but he told me to give you this riddle", "Marking mortal privation<comma> when firmly in place. An enduring summation<comma> inscribed in my face. What am I?", "tombstone", Cylinder
Exit Rooms: E-Dining Room
Room name: Library

View File

@@ -59,3 +59,5 @@ water, waterbottle
bottle, waterbottle
bread, warmbread
ram, batteringram
deslauriers, deslauriersthedog
dog, deslauriersthedog

View File

@@ -74,3 +74,4 @@ batteringram, item
ladypellatt, enemy
use, verb
bandage, item
deslauriersthedog, enemy

View File

@@ -40,7 +40,7 @@ public class Combat {
enemy.setHealth(enemy.getHealth()-object.getDamage()*1.5);
if(enemy.getHealth() < 0)
enemy.setHealth(0);
System.out.println("You hit " + enemy.getName() + " with a critical hit, doing " + object.getDamage()*1.5 + " damage! His health is now " + enemy.getHealth() + "%");
System.out.println("You hit " + enemy.getName() + " with a critical hit, doing " + object.getDamage()*1.5 + " damage! " + enemy.getName() + "'s health is now " + enemy.getHealth() + "%");
}
else {
enemy.setHealth(enemy.getHealth()-object.getDamage());

View File

@@ -462,7 +462,7 @@ class Game {
System.out.println("I've got to go find Mr. Pellatt now. Good luck with your escape!");
currentRoom.removeRiddler();
} else {
System.out.println("Sorry, you can't carry any more, but a " + prize + " has been added to your room.");
System.out.println("Sorry, you can't carry any more, but a " + prize.getName() + " has been added to your room.");
currentRoom.addItem(prize);
}
} else {