Item classes added

This commit is contained in:
elacey
2019-05-23 13:21:27 -04:00
parent f1c5c19652
commit 904e5bdefa
9 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.bayviewglen.zork.Items;
public class Chips extends Item{
public Chips(){
super(22, "Chips", "A sealed bag of jalapeno falovured chips on the counter beside the milk", true, 20, 1);
}
}