}
public Item jumpingBoots() {
Item item = new Item("jumping boots", '[', Common.hsv(180, 50, 50), "Makes you more evasive and can be used to jump."){
public Screen use(Screen screen, World world, Creature owner){
return new JumpScreen(screen, world, owner);
}
};
return item;
}