All items and some item classes added

This commit is contained in:
elacey
2019-05-22 22:46:57 -04:00
parent 59f51231c8
commit cfe2f0253d
5 changed files with 46 additions and 1 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);
}
}