mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-02 08:39:49 +01:00
214 lines
5.2 KiB
YAML
214 lines
5.2 KiB
YAML
#
|
|
# Repair configuration
|
|
# Last updated on ${project.version}-b${BUILD_NUMBER}
|
|
#
|
|
# Any file named repair.*.yml in the mcmmmo folder will be loaded as a repair config
|
|
# All repair configs have a main section titled "Repairables"
|
|
# Afterwards, all sub-items are considered a Repairable to be loaded. The names of each subitem should be the exact material name.
|
|
# The bare minimum of a Repairable is that it have a RepairMaterial and a MaximumDurability
|
|
#
|
|
# ItemType: This is the type of item to be repaired, this is only important to permissions.
|
|
## Valid values are ARMOR, TOOL, and OTHER.
|
|
## This defaults to OTHER.
|
|
#
|
|
# MaterialType: This is the type of the material of the item to be repaired, this is only important for permissions.
|
|
## Valid values are STRING, LEATHER, WOOD, STONE, IRON, GOLD, DIAMOND, and OTHER
|
|
## This defaults to OTHER.
|
|
#
|
|
# RepairMaterial: This is the material name of the item used to repair this repairable.
|
|
## This is required to be set.
|
|
#
|
|
# RepairMaterialMetadata: This is the metadata of the item used to repair this repairable.
|
|
## A value of -1 means to ignore all metadata when repairing.
|
|
## This defaults to -1
|
|
#
|
|
# MaximumDurability: This is the maximum durability of the item.
|
|
## This is required to be set.
|
|
#
|
|
# MinimumLevel: This is the minimum repair level needed to repair this item.
|
|
## Valid values are => 0
|
|
## This defaults to 0
|
|
#
|
|
# MinimumQuantity: This is the minimum number of items needed to repair this item ignoring all other repair bonuses.
|
|
## This is typically the number of the repair material needed to create a new item, for example for a sword it is 2, for an axe it is 3
|
|
## This defaults to 2
|
|
#
|
|
# XpMultiplier: This is the amount to multiply the xp bonus by.
|
|
## This defaults to 1
|
|
#
|
|
#
|
|
# The following is the default repair config that ships with mcMMO, it contains all vanilla items that are repairable.
|
|
#
|
|
#
|
|
###
|
|
Repairables:
|
|
#
|
|
# Wooden repairables
|
|
###
|
|
# Tools
|
|
WOOD_SWORD:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .25
|
|
WOOD_SPADE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .16
|
|
WOOD_PICKAXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
WOOD_AXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
WOOD_HOE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .25
|
|
#
|
|
# Stone repairables
|
|
###
|
|
# Tools
|
|
STONE_SWORD:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .25
|
|
STONE_SPADE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .16
|
|
STONE_PICKAXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
STONE_AXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
STONE_HOE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .25
|
|
#
|
|
# Iron repairables
|
|
###
|
|
# Tools
|
|
IRON_SWORD:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
IRON_SPADE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .3
|
|
IRON_PICKAXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 1
|
|
IRON_AXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 1
|
|
IRON_HOE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
SHEARS:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
FLINT_AND_STEEL:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .3
|
|
# Armor
|
|
IRON_HELMET:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 2
|
|
IRON_CHESTPLATE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 2
|
|
IRON_LEGGINGS:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 2
|
|
IRON_BOOTS:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 2
|
|
#
|
|
# Gold repairables
|
|
###
|
|
# Tools
|
|
GOLD_SWORD:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 4
|
|
GOLD_SPADE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 2.6
|
|
GOLD_PICKAXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 8
|
|
GOLD_AXE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 8
|
|
GOLD_HOE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 4
|
|
# Armor
|
|
GOLD_HELMET:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 4
|
|
GOLD_CHESTPLATE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 4
|
|
GOLD_LEGGINGS:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 4
|
|
GOLD_BOOTS:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 4
|
|
#
|
|
# Diamond repairables
|
|
###
|
|
# Tools
|
|
DIAMOND_SWORD:
|
|
MinimumLevel: 50
|
|
XpMultiplier: .5
|
|
DIAMOND_SPADE:
|
|
MinimumLevel: 50
|
|
XpMultiplier: .3
|
|
DIAMOND_PICKAXE:
|
|
MinimumLevel: 50
|
|
XpMultiplier: 1
|
|
DIAMOND_AXE:
|
|
MinimumLevel: 50
|
|
XpMultiplier: 1
|
|
DIAMOND_HOE:
|
|
MinimumLevel: 50
|
|
XpMultiplier: .5
|
|
# Armor
|
|
DIAMOND_HELMET:
|
|
MinimumLevel: 50
|
|
XpMultiplier: 6
|
|
DIAMOND_CHESTPLATE:
|
|
MinimumLevel: 50
|
|
XpMultiplier: 6
|
|
DIAMOND_LEGGINGS:
|
|
MinimumLevel: 50
|
|
XpMultiplier: 6
|
|
DIAMOND_BOOTS:
|
|
MinimumLevel: 50
|
|
XpMultiplier: 6
|
|
#
|
|
# Leather repairables
|
|
###
|
|
# Armor
|
|
LEATHER_HELMET:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 1
|
|
LEATHER_CHESTPLATE:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 1
|
|
LEATHER_LEGGINGS:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 1
|
|
LEATHER_BOOTS:
|
|
MinimumLevel: 0
|
|
XpMultiplier: 1
|
|
#
|
|
# String repairables
|
|
###
|
|
# Tools
|
|
FISHING_ROD:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
BOW:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|
|
CARROT_STICK:
|
|
MinimumLevel: 0
|
|
XpMultiplier: .5
|