This commit is contained in:
Luca Carnegie
2019-05-23 13:18:42 -04:00
6 changed files with 82 additions and 3 deletions

View 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);
}
}

View 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);
}
}

View 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);
}
}

View 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);
}
}