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 Novel extends Item{
public Novel(){
super(28, "Novel", "An auto-biography about Kevin DesLauriers", false, 50, 10);
}
}