Updated item weights

This commit is contained in:
elacey
2019-05-29 13:13:28 -04:00
parent 2d40e5954a
commit 8aff29156b
4 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ package com.bayviewglen.zork.Items;
public class Base extends Item{
public Base(){
super(5, "Base", "A base for an ancient battering ram", false, 100, 1);
super(5, "Base", "A base for an ancient battering ram", false, 100, 30);
}
}

View File

@@ -2,7 +2,7 @@ package com.bayviewglen.zork.Items;
public class Cylinder extends Item{
public Cylinder(){
super(6, "Cylinder", "A part of a battering ram meant to lay on the base and have a point attatched to the end", false, 100, 1);
super(6, "Cylinder", "A part of a battering ram meant to lay on the base and have a point attatched to the end", false, 100, 30);
}
}

View File

@@ -2,7 +2,7 @@ package com.bayviewglen.zork.Items;
public class Point extends Item{
public Point() {
super(7, "Point", "A part of the battering ram that is attatched to the cylinder and smashes the door", false, 100, 1);
super(7, "Point", "A part of the battering ram that is attatched to the cylinder and smashes the door", false, 100, 30);
}
}

View File

@@ -2,7 +2,7 @@ package com.bayviewglen.zork.Items;
public class Sword extends Item{
public Sword(){
super(33, "Sword", "A steel, double-edged sword which seems to have been sharpened recently", 20, 20);
super(33, "Sword", "A steel, double-edged sword which seems to have been sharpened recently", 50, 30);
}
}