update meteoric

This commit is contained in:
okx-code
2024-12-15 01:47:00 +00:00
parent dcf556c323
commit 65d1b365d6
3 changed files with 4 additions and 10 deletions

View File

@@ -191,13 +191,13 @@ armourModification:
knockbackResistance: 0
meteoricIronHelmet:
key: meteoric_iron_helmet
armour: 3
armour: 4
toughness: 2
extraDurabilityHits: 1
meteoricIronChestplate:
key: meteoric_iron_chestplate
armour: 8
toughness: 2
toughness: 3
extraDurabilityHits: 1
meteoricIronLeggings:
key: meteoric_iron_leggings
@@ -206,7 +206,7 @@ armourModification:
extraDurabilityHits: 1
meteoricIronBoots:
key: meteoric_iron_boots
armour: 3
armour: 4
toughness: 2
extraDurabilityHits: 1

View File

@@ -154,12 +154,6 @@ public class BackpackListener implements Listener {
if (item == null || item.isEmpty()) {
return false;
}
List<Component> lore = item.lore();
if (lore != null && !lore.isEmpty()) {
if (PlainTextComponentSerializer.plainText().serialize(lore.getFirst()).equals("Compacted Item")) {
return true;
}
}
switch (item.getType()) {
case OBSIDIAN,
CRYING_OBSIDIAN,

View File

@@ -42,7 +42,7 @@ public interface FactoryUpgrade {
static List<CraftingRecipe> getRecipes(Plugin plugin) {
ItemStack upgrade = FactoryUpgrade.createUpgrade();
upgrade.setAmount(4);
upgrade.setAmount(6);
return List.of(
new ShapedRecipe(new NamespacedKey(plugin, "factory_upgrade"), upgrade)
.shape("#c#", "#r#", "#f#")