This commit is contained in:
Luca Carnegie
2019-05-31 17:32:06 -04:00
6 changed files with 22 additions and 17 deletions

View File

@@ -1,8 +0,0 @@
package com.bayviewglen.zork.Items;
public class WarmBread extends Item{
public WarmBread(){
super(25, "Warm Bread", "A fresh loaf of bread sits just outside of the oven still warm to the touch", true, 30, 10);
}
}

View File

@@ -0,0 +1,9 @@
package com.bayviewglen.zork.Items;
public class Warmbread extends Item{
public Warmbread() {
super(25, "Warm Bread", "A freshly baked loaf of bread sits ominously on the counter", true, 20, 10);
}
}

View File

@@ -1,7 +1,7 @@
package com.bayviewglen.zork.Items;
public class WaterBottle extends Item{
public class Waterbottle extends Item{
public WaterBottle() {
public Waterbottle() {
super(10, "Water Bottle", "A plastic water bottle half filled with filthy water", true, 10, 1);
}