Updated item weights
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user