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 Mop extends Item{
public Mop(){
super(30, "Mop", "A mop which was used recently by a maid and is still damp", false, 50, 30);
}
}