Installation and Configuration/Chest Items HowTo

How to Set Your Chest Items

Here's aan example of chest items from config.yml:

  chestItems: MELON:1 TORCH:2 BONE:1 LAVA_BUCKET:1 PUMPKIN_SEEDS:1 SUGAR_CANE:1 RED_MUSHROOM:1 BROWN_MUSHROOM:1 CACTUS:1 BREAD:1 WHEAT:1 LEATHER_BOOTS:1 LEATHER_HELMET:1 LEATHER_CHESTPLATE:1 LEATHER_LEGGINGS:1 WOOD_AXE:10:1 INK_SACK:3:1

A list of possible materials can be found here.

Note the last two items that have durability/damage modifiers:

WOOD_AXE:10:1

Items can be set to have a specific level of durability. (See http:minecraft.gamepedia.com/Item_durability for info).

INK_SACK:3:1

The damage modifier can be used for some materials to denote variations on that material. For example, INK_SACK:3 is actually a cocoa bean. Codes can be found out from Minecraft ID web sites.

Adding Potions

Potion formats are:

POTION <effect>:<quantity>

or

POTION <effect>:<type>:<quantity> where <type> can be EXTENDED,SPLASH or EXTENDEDSPLASH

Potions must be described by name. The following options are available:

  • WATER - just plain water
  • REGEN
  • SPEED
  • FIRE_RESISTANCE
  • POISON
  • INSTANT_HEAL
  • NIGHT_VISION
  • WEAKNESS
  • STRENGTH
  • SLOWNESS
  • INSTANT_DAMAGE
  • WATER_BREATHING (Acid protection)
  • INVISIBILITY

Potions can also have an extended duration (EXTENDED) and/or be a splash potion (SPLASH). Some potions can be both (EXTENDEDSPLASH). Instant potions cannot be extended.

Here's an example of a chest with just potions in it:

  chestItems: POTION:INVISIBILITY:2:1 POTION:INVISIBILITY:1:1 POTION:WATER_BREATHING:1 POTION:WATER_BREATHING:EXTENDED:1 POTION:INSTANT_DAMAGE:SPLASH:2