mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
2.1.120
This commit is contained in:
parent
2644de5ab4
commit
325cbcad9d
@ -1,3 +1,6 @@
|
|||||||
|
Version 2.1.120
|
||||||
|
Fixed a bug involving the new netherite equipment
|
||||||
|
|
||||||
Version 2.1.119
|
Version 2.1.119
|
||||||
1.16 Support
|
1.16 Support
|
||||||
Fixed another dupe bug
|
Fixed another dupe bug
|
||||||
@ -8,8 +11,8 @@ Version 2.1.119
|
|||||||
Calculations which change depend on the quality of your tool or armor has had netherrack support coded in
|
Calculations which change depend on the quality of your tool or armor has had netherrack support coded in
|
||||||
All excavation drops that can drop from soul_sand now also drop from soul_soil (edited treasures.yml)
|
All excavation drops that can drop from soul_sand now also drop from soul_soil (edited treasures.yml)
|
||||||
|
|
||||||
Added Netherrack armor/weapons/tools to repair.vanilla.yml
|
Added netherite armor/weapons/tools to repair.vanilla.yml
|
||||||
Added Netherrack armor/weapons/tools to salvage.vanilla.yml
|
Added netherite armor/weapons/tools to salvage.vanilla.yml
|
||||||
|
|
||||||
Added 'Bamboo_Sapling' to bonus drops for Herbalism in experience.yml
|
Added 'Bamboo_Sapling' to bonus drops for Herbalism in experience.yml
|
||||||
Added 'Ancient_Debris' with a value of 7777 to Mining experience tables in experience.yml
|
Added 'Ancient_Debris' with a value of 7777 to Mining experience tables in experience.yml
|
||||||
@ -42,7 +45,8 @@ Version 2.1.119
|
|||||||
Added 'Warped_Stem' to bonus drops for Woodcutting in config.yml
|
Added 'Warped_Stem' to bonus drops for Woodcutting in config.yml
|
||||||
Added 'Shroomlight' to bonus drops for Woodcutting in config.yml
|
Added 'Shroomlight' to bonus drops for Woodcutting in config.yml
|
||||||
|
|
||||||
NOTES: You may have to edit your configs for this update to mcMMO, either do it manually or delete the config files to regenerate them.
|
NOTES: You will likely need to update repair.vanilla.yml, salvage.vanilla.yml and treasures.yml
|
||||||
|
You can just delete those config files to regenerate them fresh which is much faster if you don't have any custom settings in those files
|
||||||
Here are the default configuration files if you wish to compare them to your own servers settings while updating your configs.
|
Here are the default configuration files if you wish to compare them to your own servers settings while updating your configs.
|
||||||
https://paste.gg/p/anonymous/bf8ba1a24c8c4f188da5f8b8ebfc2b35 (Keep scrolling)
|
https://paste.gg/p/anonymous/bf8ba1a24c8c4f188da5f8b8ebfc2b35 (Keep scrolling)
|
||||||
|
|
||||||
|
@ -75,8 +75,8 @@ public class SalvageConfig extends ConfigLoader {
|
|||||||
}
|
}
|
||||||
else if (ItemUtils.isDiamondArmor(salvageItem) || ItemUtils.isDiamondTool(salvageItem)) {
|
else if (ItemUtils.isDiamondArmor(salvageItem) || ItemUtils.isDiamondTool(salvageItem)) {
|
||||||
salvageMaterialType = MaterialType.DIAMOND;
|
salvageMaterialType = MaterialType.DIAMOND;
|
||||||
} else if (ItemUtils.isNetherriteTool(salvageItem) || ItemUtils.isNetherriteArmor(salvageItem)) {
|
} else if (ItemUtils.isNetheriteTool(salvageItem) || ItemUtils.isNetheriteArmor(salvageItem)) {
|
||||||
salvageMaterialType = MaterialType.NETHERRACK;
|
salvageMaterialType = MaterialType.NETHER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -10,7 +10,7 @@ public enum MaterialType {
|
|||||||
IRON,
|
IRON,
|
||||||
GOLD,
|
GOLD,
|
||||||
DIAMOND,
|
DIAMOND,
|
||||||
NETHERRACK,
|
NETHER,
|
||||||
OTHER;
|
OTHER;
|
||||||
|
|
||||||
public Material getDefaultMaterial() {
|
public Material getDefaultMaterial() {
|
||||||
@ -36,9 +36,9 @@ public enum MaterialType {
|
|||||||
case DIAMOND:
|
case DIAMOND:
|
||||||
return Material.DIAMOND;
|
return Material.DIAMOND;
|
||||||
|
|
||||||
case NETHERRACK:
|
case NETHER:
|
||||||
if(Material.getMaterial("netherrite_scrap") != null)
|
if(Material.getMaterial("netherite_scrap") != null)
|
||||||
return Material.getMaterial("netherrite_scrap");
|
return Material.getMaterial("netherite_scrap");
|
||||||
else
|
else
|
||||||
return Material.GOLD_INGOT;
|
return Material.GOLD_INGOT;
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@ public class SwordsManager extends SkillManager {
|
|||||||
|
|
||||||
public int getToolTier(ItemStack itemStack)
|
public int getToolTier(ItemStack itemStack)
|
||||||
{
|
{
|
||||||
if(ItemUtils.isNetherriteTool(itemStack))
|
if(ItemUtils.isNetheriteTool(itemStack))
|
||||||
return 5;
|
return 5;
|
||||||
if(ItemUtils.isDiamondTool(itemStack))
|
if(ItemUtils.isDiamondTool(itemStack))
|
||||||
return 4;
|
return 4;
|
||||||
|
@ -143,12 +143,12 @@ public final class ItemUtils {
|
|||||||
return mcMMO.getMaterialMapStore().isDiamondArmor(item.getType().getKey().getKey());
|
return mcMMO.getMaterialMapStore().isDiamondArmor(item.getType().getKey().getKey());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isNetherriteArmor(ItemStack itemStack) {
|
public static boolean isNetheriteArmor(ItemStack itemStack) {
|
||||||
return mcMMO.getMaterialMapStore().isNetherriteArmor(itemStack.getType().getKey().getKey());
|
return mcMMO.getMaterialMapStore().isNetheriteArmor(itemStack.getType().getKey().getKey());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isNetherriteTool(ItemStack itemStack) {
|
public static boolean isNetheriteTool(ItemStack itemStack) {
|
||||||
return mcMMO.getMaterialMapStore().isNetherriteTool(itemStack.getType().getKey().getKey());
|
return mcMMO.getMaterialMapStore().isNetheriteTool(itemStack.getType().getKey().getKey());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -26,8 +26,8 @@ public class MaterialMapStore {
|
|||||||
private HashSet<String> foodItemWhiteList;
|
private HashSet<String> foodItemWhiteList;
|
||||||
private HashSet<String> glassBlocks;
|
private HashSet<String> glassBlocks;
|
||||||
|
|
||||||
private HashSet<String> netherriteArmor;
|
private HashSet<String> netheriteArmor;
|
||||||
private HashSet<String> netherriteTools;
|
private HashSet<String> netheriteTools;
|
||||||
private HashSet<String> woodTools;
|
private HashSet<String> woodTools;
|
||||||
private HashSet<String> stoneTools;
|
private HashSet<String> stoneTools;
|
||||||
private HashSet<String> leatherArmor;
|
private HashSet<String> leatherArmor;
|
||||||
@ -75,7 +75,7 @@ public class MaterialMapStore {
|
|||||||
chainmailArmor = new HashSet<>();
|
chainmailArmor = new HashSet<>();
|
||||||
goldArmor = new HashSet<>();
|
goldArmor = new HashSet<>();
|
||||||
diamondArmor = new HashSet<>();
|
diamondArmor = new HashSet<>();
|
||||||
netherriteArmor = new HashSet<>();
|
netheriteArmor = new HashSet<>();
|
||||||
armors = new HashSet<>();
|
armors = new HashSet<>();
|
||||||
|
|
||||||
woodTools = new HashSet<>();
|
woodTools = new HashSet<>();
|
||||||
@ -83,7 +83,7 @@ public class MaterialMapStore {
|
|||||||
ironTools = new HashSet<>();
|
ironTools = new HashSet<>();
|
||||||
goldTools = new HashSet<>();
|
goldTools = new HashSet<>();
|
||||||
diamondTools = new HashSet<>();
|
diamondTools = new HashSet<>();
|
||||||
netherriteTools = new HashSet<>();
|
netheriteTools = new HashSet<>();
|
||||||
bows = new HashSet<>();
|
bows = new HashSet<>();
|
||||||
stringTools = new HashSet<>();
|
stringTools = new HashSet<>();
|
||||||
tools = new HashSet<>();
|
tools = new HashSet<>();
|
||||||
@ -185,7 +185,7 @@ public class MaterialMapStore {
|
|||||||
tierValue.put(id, 6);
|
tierValue.put(id, 6);
|
||||||
}
|
}
|
||||||
|
|
||||||
for(String id : netherriteArmor) {
|
for(String id : netheriteArmor) {
|
||||||
tierValue.put(id, 12);
|
tierValue.put(id, 12);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -209,7 +209,7 @@ public class MaterialMapStore {
|
|||||||
fillChainmailWhiteList();
|
fillChainmailWhiteList();
|
||||||
fillGoldArmorWhiteList();
|
fillGoldArmorWhiteList();
|
||||||
fillDiamondArmorWhiteList();
|
fillDiamondArmorWhiteList();
|
||||||
fillNetherriteArmorWhiteList();
|
fillnetheriteArmorWhiteList();
|
||||||
|
|
||||||
//Add all armors to armors hashset
|
//Add all armors to armors hashset
|
||||||
armors.addAll(leatherArmor);
|
armors.addAll(leatherArmor);
|
||||||
@ -217,7 +217,7 @@ public class MaterialMapStore {
|
|||||||
armors.addAll(chainmailArmor);
|
armors.addAll(chainmailArmor);
|
||||||
armors.addAll(goldArmor);
|
armors.addAll(goldArmor);
|
||||||
armors.addAll(diamondArmor);
|
armors.addAll(diamondArmor);
|
||||||
armors.addAll(netherriteArmor);
|
armors.addAll(netheriteArmor);
|
||||||
|
|
||||||
armors.add("turtle_shell");
|
armors.add("turtle_shell");
|
||||||
}
|
}
|
||||||
@ -245,7 +245,7 @@ public class MaterialMapStore {
|
|||||||
fillIronToolsWhiteList();
|
fillIronToolsWhiteList();
|
||||||
fillGoldToolsWhiteList();
|
fillGoldToolsWhiteList();
|
||||||
fillDiamondToolsWhiteList();
|
fillDiamondToolsWhiteList();
|
||||||
fillNetherriteToolsWhiteList();
|
fillnetheriteToolsWhiteList();
|
||||||
|
|
||||||
fillSwords();
|
fillSwords();
|
||||||
fillAxes();
|
fillAxes();
|
||||||
@ -262,7 +262,7 @@ public class MaterialMapStore {
|
|||||||
tools.addAll(ironTools);
|
tools.addAll(ironTools);
|
||||||
tools.addAll(goldTools);
|
tools.addAll(goldTools);
|
||||||
tools.addAll(diamondTools);
|
tools.addAll(diamondTools);
|
||||||
tools.addAll(netherriteTools);
|
tools.addAll(netheriteTools);
|
||||||
tools.addAll(tridents);
|
tools.addAll(tridents);
|
||||||
tools.addAll(stringTools);
|
tools.addAll(stringTools);
|
||||||
tools.addAll(bows);
|
tools.addAll(bows);
|
||||||
@ -290,7 +290,7 @@ public class MaterialMapStore {
|
|||||||
swords.add("gold_sword");
|
swords.add("gold_sword");
|
||||||
swords.add("golden_sword");
|
swords.add("golden_sword");
|
||||||
swords.add("diamond_sword");
|
swords.add("diamond_sword");
|
||||||
swords.add("netherrite_sword");
|
swords.add("netherite_sword");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillAxes() {
|
private void fillAxes() {
|
||||||
@ -301,7 +301,7 @@ public class MaterialMapStore {
|
|||||||
axes.add("gold_axe");
|
axes.add("gold_axe");
|
||||||
axes.add("golden_axe");
|
axes.add("golden_axe");
|
||||||
axes.add("diamond_axe");
|
axes.add("diamond_axe");
|
||||||
axes.add("netherrite_axe");
|
axes.add("netherite_axe");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillPickAxes() {
|
private void fillPickAxes() {
|
||||||
@ -312,7 +312,7 @@ public class MaterialMapStore {
|
|||||||
pickAxes.add("gold_pickaxe");
|
pickAxes.add("gold_pickaxe");
|
||||||
pickAxes.add("golden_pickaxe");
|
pickAxes.add("golden_pickaxe");
|
||||||
pickAxes.add("diamond_pickaxe");
|
pickAxes.add("diamond_pickaxe");
|
||||||
pickAxes.add("netherrite_pickaxe");
|
pickAxes.add("netherite_pickaxe");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillHoes() {
|
private void fillHoes() {
|
||||||
@ -323,7 +323,7 @@ public class MaterialMapStore {
|
|||||||
hoes.add("gold_hoe");
|
hoes.add("gold_hoe");
|
||||||
hoes.add("golden_hoe");
|
hoes.add("golden_hoe");
|
||||||
hoes.add("diamond_hoe");
|
hoes.add("diamond_hoe");
|
||||||
hoes.add("netherrite_hoe");
|
hoes.add("netherite_hoe");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillShovels() {
|
private void fillShovels() {
|
||||||
@ -334,7 +334,7 @@ public class MaterialMapStore {
|
|||||||
shovels.add("gold_shovel");
|
shovels.add("gold_shovel");
|
||||||
shovels.add("golden_shovel");
|
shovels.add("golden_shovel");
|
||||||
shovels.add("diamond_shovel");
|
shovels.add("diamond_shovel");
|
||||||
shovels.add("netherrite_shovel");
|
shovels.add("netherite_shovel");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillLeatherArmorWhiteList() {
|
private void fillLeatherArmorWhiteList() {
|
||||||
@ -378,11 +378,11 @@ public class MaterialMapStore {
|
|||||||
diamondArmor.add("diamond_boots");
|
diamondArmor.add("diamond_boots");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillNetherriteArmorWhiteList() {
|
private void fillnetheriteArmorWhiteList() {
|
||||||
netherriteArmor.add("netherrite_helmet");
|
netheriteArmor.add("netherite_helmet");
|
||||||
netherriteArmor.add("netherrite_chestplate");
|
netheriteArmor.add("netherite_chestplate");
|
||||||
netherriteArmor.add("netherrite_leggings");
|
netheriteArmor.add("netherite_leggings");
|
||||||
netherriteArmor.add("netherrite_boots");
|
netheriteArmor.add("netherite_boots");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillWoodToolsWhiteList() {
|
private void fillWoodToolsWhiteList() {
|
||||||
@ -464,12 +464,12 @@ public class MaterialMapStore {
|
|||||||
diamondTools.add("diamond_shovel");
|
diamondTools.add("diamond_shovel");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillNetherriteToolsWhiteList() {
|
private void fillnetheriteToolsWhiteList() {
|
||||||
netherriteTools.add("netherrite_sword");
|
netheriteTools.add("netherite_sword");
|
||||||
netherriteTools.add("netherrite_axe");
|
netheriteTools.add("netherite_axe");
|
||||||
netherriteTools.add("netherrite_hoe");
|
netheriteTools.add("netherite_hoe");
|
||||||
netherriteTools.add("netherrite_pickaxe");
|
netheriteTools.add("netherite_pickaxe");
|
||||||
netherriteTools.add("netherrite_shovel");
|
netheriteTools.add("netherite_shovel");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fillGlassBlockWhiteList() {
|
private void fillGlassBlockWhiteList() {
|
||||||
@ -638,12 +638,12 @@ public class MaterialMapStore {
|
|||||||
return chainmailArmor.contains(id);
|
return chainmailArmor.contains(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isNetherriteArmor(Material material) {
|
public boolean isNetheriteArmor(Material material) {
|
||||||
return isNetherriteArmor(material.getKey().getKey());
|
return isNetheriteArmor(material.getKey().getKey());
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isNetherriteArmor(String id) {
|
public boolean isNetheriteArmor(String id) {
|
||||||
return netherriteArmor.contains(id);
|
return netheriteArmor.contains(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isWoodTool(Material material) {
|
public boolean isWoodTool(Material material) {
|
||||||
@ -726,12 +726,12 @@ public class MaterialMapStore {
|
|||||||
return hoes.contains(id);
|
return hoes.contains(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isNetherriteTool(Material material) {
|
public boolean isNetheriteTool(Material material) {
|
||||||
return isNetherriteTool(material.getKey().getKey());
|
return isNetheriteTool(material.getKey().getKey());
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isNetherriteTool(String id) {
|
public boolean isNetheriteTool(String id) {
|
||||||
return netherriteTools.contains(id);
|
return netheriteTools.contains(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isStringTool(Material material) {
|
public boolean isStringTool(Material material) {
|
||||||
|
@ -298,8 +298,8 @@ public class SkillUtils {
|
|||||||
public static int getRepairAndSalvageQuantities(Material itemMaterial, Material recipeMaterial) {
|
public static int getRepairAndSalvageQuantities(Material itemMaterial, Material recipeMaterial) {
|
||||||
int quantity = 0;
|
int quantity = 0;
|
||||||
|
|
||||||
if(mcMMO.getMaterialMapStore().isNetherriteTool(itemMaterial) || mcMMO.getMaterialMapStore().isNetherriteArmor(itemMaterial)) {
|
if(mcMMO.getMaterialMapStore().isNetheriteTool(itemMaterial) || mcMMO.getMaterialMapStore().isNetheriteArmor(itemMaterial)) {
|
||||||
//One netherrite bar requires 4 netherrite scraps
|
//One netherite bar requires 4 netherite scraps
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
## This defaults to OTHER.
|
## This defaults to OTHER.
|
||||||
#
|
#
|
||||||
# ItemMaterialCategory: This is the type of the material of the item to be repaired, this is only important for permissions.
|
# ItemMaterialCategory: 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
|
## Valid values are STRING, LEATHER, WOOD, STONE, IRON, GOLD, DIAMOND, NETHER, and OTHER
|
||||||
## This defaults to OTHER.
|
## This defaults to OTHER.
|
||||||
#
|
#
|
||||||
# RepairMaterial: This is the material name of the item used to repair this repairable.
|
# RepairMaterial: This is the material name of the item used to repair this repairable.
|
||||||
@ -186,32 +186,32 @@ Repairables:
|
|||||||
# Diamond repairables
|
# Diamond repairables
|
||||||
###
|
###
|
||||||
# Tools
|
# Tools
|
||||||
NETHERRITE_SWORD:
|
netherite_SWORD:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: .6
|
XpMultiplier: .6
|
||||||
NETHERRITE_SHOVEL:
|
netherite_SHOVEL:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: .4
|
XpMultiplier: .4
|
||||||
NETHERRITE_PICKAXE:
|
netherite_PICKAXE:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: 1.1
|
XpMultiplier: 1.1
|
||||||
NETHERRITE_AXE:
|
netherite_AXE:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: 1.1
|
XpMultiplier: 1.1
|
||||||
NETHERRITE_HOE:
|
netherite_HOE:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: .75
|
XpMultiplier: .75
|
||||||
# Armor
|
# Armor
|
||||||
NETHERRITE_HELMET:
|
netherite_HELMET:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: 7
|
XpMultiplier: 7
|
||||||
NETHERRITE_CHESTPLATE:
|
netherite_CHESTPLATE:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: 7
|
XpMultiplier: 7
|
||||||
NETHERRITE_LEGGINGS:
|
netherite_LEGGINGS:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: 7
|
XpMultiplier: 7
|
||||||
NETHERRITE_BOOTS:
|
netherite_BOOTS:
|
||||||
MinimumLevel: 0
|
MinimumLevel: 0
|
||||||
XpMultiplier: 7
|
XpMultiplier: 7
|
||||||
#
|
#
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
## This defaults to OTHER.
|
## This defaults to OTHER.
|
||||||
#
|
#
|
||||||
# MaterialType: This is the type of the material of the item to be salvaged, this is only important for permissions.
|
# MaterialType: This is the type of the material of the item to be salvaged, this is only important for permissions.
|
||||||
## Valid values are STRING, LEATHER, WOOD, STONE, IRON, GOLD, DIAMOND, NETHERRACK, and OTHER
|
## Valid values are STRING, LEATHER, WOOD, STONE, IRON, GOLD, DIAMOND, NETHER, and OTHER
|
||||||
## This defaults to OTHER.
|
## This defaults to OTHER.
|
||||||
#
|
#
|
||||||
# SalvageMaterial: This is the material name of the item used to salvage this item.
|
# SalvageMaterial: This is the material name of the item used to salvage this item.
|
||||||
@ -220,40 +220,40 @@ Salvageables:
|
|||||||
XpMultiplier: 6
|
XpMultiplier: 6
|
||||||
MaximumQuantity: 4
|
MaximumQuantity: 4
|
||||||
|
|
||||||
NETHERRITE_SWORD:
|
netherite_SWORD:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: .5
|
XpMultiplier: .5
|
||||||
MaximumQuantity: 2
|
MaximumQuantity: 2
|
||||||
NETHERRITE_SHOVEL:
|
netherite_SHOVEL:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: .3
|
XpMultiplier: .3
|
||||||
MaximumQuantity: 1
|
MaximumQuantity: 1
|
||||||
NETHERRITE_PICKAXE:
|
netherite_PICKAXE:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: 1
|
XpMultiplier: 1
|
||||||
MaximumQuantity: 3
|
MaximumQuantity: 3
|
||||||
NETHERRITE_AXE:
|
netherite_AXE:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: 1
|
XpMultiplier: 1
|
||||||
MaximumQuantity: 3
|
MaximumQuantity: 3
|
||||||
NETHERRITE_HOE:
|
netherite_HOE:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: .5
|
XpMultiplier: .5
|
||||||
MaximumQuantity: 2
|
MaximumQuantity: 2
|
||||||
# Armor
|
# Armor
|
||||||
NETHERRITE_HELMET:
|
netherite_HELMET:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: 6
|
XpMultiplier: 6
|
||||||
MaximumQuantity: 5
|
MaximumQuantity: 5
|
||||||
NETHERRITE_CHESTPLATE:
|
netherite_CHESTPLATE:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: 6
|
XpMultiplier: 6
|
||||||
MaximumQuantity: 8
|
MaximumQuantity: 8
|
||||||
NETHERRITE_LEGGINGS:
|
netherite_LEGGINGS:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: 6
|
XpMultiplier: 6
|
||||||
MaximumQuantity: 7
|
MaximumQuantity: 7
|
||||||
NETHERRITE_BOOTS:
|
netherite_BOOTS:
|
||||||
MinimumLevel: 50
|
MinimumLevel: 50
|
||||||
XpMultiplier: 6
|
XpMultiplier: 6
|
||||||
MaximumQuantity: 4
|
MaximumQuantity: 4
|
||||||
|
Loading…
Reference in New Issue
Block a user