mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
update meteoric
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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#")
|
||||
|
||||
Reference in New Issue
Block a user