More items

This commit is contained in:
elacey
2019-05-23 13:37:47 -04:00
parent 220d9b1268
commit 31983e88a7
5 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.bayviewglen.zork.Items;
public class Bucket extends Item{
public Bucket(){
super(31, "Bucket", "A bucket filled with soapy water with rust on the bottom after constant use", false, 20, 20);
}
}

View File

@@ -0,0 +1,8 @@
package com.bayviewglen.zork.Items;
public class Butter extends Item{
public Butter(){
super(29, "Butter", "I can't believe it's not butter!", true, 20, 10);
}
}

View File

@@ -0,0 +1,8 @@
package com.bayviewglen.zork.Items;
public class Mop extends Item{
public Mop(){
super(30, "Mop", "A mop which was used recently by a maid and is still damp", false, 50, 30);
}
}

View File

@@ -0,0 +1,8 @@
package com.bayviewglen.zork.Items;
public class Novel extends Item{
public Novel(){
super(28, "Novel", "An auto-biography about Kevin DesLauriers", false, 50, 10);
}
}

View File

@@ -0,0 +1,8 @@
package com.bayviewglen.zork.Items;
public class Towels extends Item{
public Towels(){
super(32, "Towels", "A few towels used to dry the floors after they are mopped", false, 50, 20);
}
}