All items and some item classes added
This commit is contained in:
@@ -33,3 +33,17 @@ socks, item
|
||||
painting, item
|
||||
inventory, verb
|
||||
i, verb
|
||||
notebook, item
|
||||
shaving cream, item
|
||||
toothbrush, item
|
||||
toothpaste, item
|
||||
milk, item
|
||||
cheese, item
|
||||
yogurt, item
|
||||
chips, item
|
||||
granola bars, item
|
||||
chocolate, item
|
||||
warm bread, item
|
||||
clothes, item
|
||||
sword, item
|
||||
blanket, item
|
||||
8
src/com/bayviewglen/zork/Items/Notebook.java
Normal file
8
src/com/bayviewglen/zork/Items/Notebook.java
Normal file
@@ -0,0 +1,8 @@
|
||||
package com.bayviewglen.zork.Items;
|
||||
public class Notebook extends Item{
|
||||
|
||||
public Notebook(){
|
||||
super(15, "Notebook", "A book filled with diagrams and descriptions, belonging to Henry Pellatt", false, 50, 1);
|
||||
}
|
||||
|
||||
}
|
||||
8
src/com/bayviewglen/zork/Items/ShavingCream.java
Normal file
8
src/com/bayviewglen/zork/Items/ShavingCream.java
Normal file
@@ -0,0 +1,8 @@
|
||||
package com.bayviewglen.zork.Items;
|
||||
public class ShavingCream extends Item{
|
||||
|
||||
public ShavingCream(){
|
||||
super(16, "Shaving Cream", "A can of shaving cream with foam still around the edge of the nozzle", false, 10, 1);
|
||||
}
|
||||
|
||||
}
|
||||
7
src/com/bayviewglen/zork/Items/Toothbrush.java
Normal file
7
src/com/bayviewglen/zork/Items/Toothbrush.java
Normal file
@@ -0,0 +1,7 @@
|
||||
package com.bayviewglen.zork.Items;
|
||||
public class Toothbrush extends Item{
|
||||
|
||||
public Toothbrush(){
|
||||
super(17, "Toothbrush", "A light blue manual toothbrush stained with missing bristles after continual use", false, 5, 1);
|
||||
}
|
||||
}
|
||||
8
src/com/bayviewglen/zork/Items/Toothpaste.java
Normal file
8
src/com/bayviewglen/zork/Items/Toothpaste.java
Normal file
@@ -0,0 +1,8 @@
|
||||
package com.bayviewglen.zork.Items;
|
||||
public class Toothpaste extends Item{
|
||||
|
||||
public Toothpaste(){
|
||||
super(18, "Toothpaste", "A half used tube of toothpaste crumpled up with little care", false, 10, 1);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user