Items and classes added

This commit is contained in:
elacey
2019-05-16 20:47:49 -04:00
parent 7a766cf76a
commit 4506c1e17f
3 changed files with 18 additions and 1 deletions

View File

@@ -29,3 +29,5 @@ robes, item
water bottle, item
pen, item
book, item
socks, item
painting, item

View File

@@ -0,0 +1,7 @@
package com.bayviewglen.zork.Items;
public class Painting extends Item{
public Painting(){
super(14, "Painting", "An antique painting made from vibrant colours with an artists signature in the bottom right corner", false, 50, 1);
}
}

View File

@@ -0,0 +1,8 @@
package com.bayviewglen.zork.Items;
public class Socks extends Item{
public Socks(){
super(13, "Socks", "Old socks with a lot of wear and tear, worn by Henry Pellatt", false, 5, 1);
}
}