diff --git a/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialItemType.java b/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialItemType.java index 5b05e2ea4..93e92bdc1 100644 --- a/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialItemType.java +++ b/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialItemType.java @@ -15,7 +15,7 @@ public enum MaterialItemType { DUST, TINY_DUST, GEAR, - PLATES, + PLATE, WIRE, PICKAXE, AXE, diff --git a/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialSet.java b/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialSet.java index b13a9e882..221043128 100644 --- a/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialSet.java +++ b/astromine-core/src/datagen/java/com/github/chainmailstudios/astromine/datagen/material/MaterialSet.java @@ -144,7 +144,7 @@ public Builder metal() { ingot(); nugget(); block(); - plates(); + plate(); return gear(); } @@ -223,8 +223,8 @@ public Builder gear() { return addType(GEAR, new Identifier("c", name + "_gears")); } - public Builder plates() { - return addType(PLATES, new Identifier("c", name + "_plates")); + public Builder plate() { + return addType(PLATE, new Identifier("c", name + "_plates")); } public Builder wire() { diff --git a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/registry/IdentifierFixRegistry.java b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/registry/IdentifierFixRegistry.java index 7b80b9ef3..9be6f1e9d 100644 --- a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/registry/IdentifierFixRegistry.java +++ b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/registry/IdentifierFixRegistry.java @@ -41,9 +41,10 @@ public String get(String oldPath) { @Override public String register(String oldPath, String newPath) { - if (this.containsKey(newPath)) { + if(oldPath.equals(newPath)) throw new IllegalArgumentException("Invalid Identifier fix attempted with paths " + oldPath + " and " + newPath+", paths identical"); + else if (this.containsKey(newPath)) { if (this.get(newPath).equals(oldPath)) - throw new IllegalArgumentException("Recursive Identifier fix attempted with paths " + oldPath + " and " + newPath); + throw new IllegalArgumentException("Invalid Identifier fix attempted with paths " + oldPath + " and " + newPath+", would cause recursion"); else return this.register(oldPath, this.get(newPath)); } else return super.register(oldPath, newPath); } diff --git a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/widget/blade/FluidFilterWidget.java b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/widget/blade/FluidFilterWidget.java index e8fc987c9..31f78e5fe 100644 --- a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/widget/blade/FluidFilterWidget.java +++ b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/common/widget/blade/FluidFilterWidget.java @@ -6,9 +6,9 @@ import com.github.chainmailstudios.astromine.common.utilities.FluidUtilities; import com.github.chainmailstudios.astromine.common.volume.handler.FluidHandler; import com.github.vini2003.blade.client.utilities.Layers; -import com.github.vini2003.blade.common.widget.base.AbstractWidget; import com.github.vini2003.blade.common.widget.base.ButtonWidget; -import com.github.vini2003.blade.common.widget.base.SlotWidget; +import net.fabricmc.api.EnvType; +import net.fabricmc.api.Environment; import net.minecraft.client.MinecraftClient; import net.minecraft.client.render.OverlayTexture; import net.minecraft.client.render.RenderLayer; @@ -30,78 +30,80 @@ import java.util.function.Supplier; public class FluidFilterWidget extends ButtonWidget { - private final Identifier FLUID_BACKGROUND = AstromineCommon.identifier("textures/widget/fluid_filter_background.png"); - - private Supplier fluidSupplier = () -> Fluids.EMPTY; - - private Consumer fluidConsumer = fluid -> {}; - - public Supplier getFluidSupplier() { - return fluidSupplier; - } - - public void setFluidSupplier(Supplier fluidSupplier) { - this.fluidSupplier = fluidSupplier; - } - - public Consumer getFluidConsumer() { - return fluidConsumer; - } - - public void setFluidConsumer(Consumer fluidConsumer) { - this.fluidConsumer = fluidConsumer; - } - - public Identifier getBackgroundTexture() { - return FLUID_BACKGROUND; - } - - @NotNull - @Override - public List getTooltip() { - Identifier fluidId = Registry.FLUID.getId(fluidSupplier.get()); - - return Collections.singletonList(new TranslatableText(String.format("block.%s.%s", fluidId.getNamespace(), fluidId.getPath()))); - } - - @Override - public void onMouseClicked(float x, float y, int button) { - super.onMouseClicked(x, y, button); - - ItemStack stack = getHandler().getPlayer().inventory.getCursorStack(); - - if (isWithin(x, y)) { - if (!stack.isEmpty()) { - FluidHandler.ofOptional(stack).ifPresent(fluids -> { - fluidSupplier = () -> fluids.getFirst().getFluid(); - fluidConsumer.accept(fluidSupplier.get()); - }); - } else if (button == 2) { - fluidSupplier = () -> Fluids.EMPTY; - fluidConsumer.accept(fluidSupplier.get()); - } - } - } - - @Override - public void drawWidget(@NotNull MatrixStack matrices, @NotNull VertexConsumerProvider provider) { - if (getHidden()) { - return; - } - - float x = getPosition().getX(); - float y = getPosition().getY(); - - float sX = getSize().getWidth(); - float sY = getSize().getHeight(); - - RenderLayer layer = Layers.get(getBackgroundTexture()); - - BaseRenderer.drawTexturedQuad(matrices, provider, layer, x, y, getSize().getWidth(), getSize().getHeight(), getBackgroundTexture()); - - if (fluidSupplier.get() != Fluids.EMPTY) { - SpriteRenderer.beginPass().setup(provider, RenderLayer.getSolid()).sprite(FluidUtilities.texture(fluidSupplier.get())[0]).color(FluidUtilities.color(MinecraftClient.getInstance().player, fluidSupplier.get())).light(0x00f000f0).overlay( - OverlayTexture.DEFAULT_UV).alpha(0xff).normal(matrices.peek().getNormal(), 0, 0, 0).position(matrices.peek().getModel(), x + 1, y + 1, x + sX - 1, y + sY - 1, 0F).next(PlayerScreenHandler.BLOCK_ATLAS_TEXTURE); - } - } + private final Identifier FLUID_BACKGROUND = AstromineCommon.identifier("textures/widget/fluid_filter_background.png"); + + private Supplier fluidSupplier = () -> Fluids.EMPTY; + + private Consumer fluidConsumer = fluid -> {}; + + public Supplier getFluidSupplier() { + return fluidSupplier; + } + + public void setFluidSupplier(Supplier fluidSupplier) { + this.fluidSupplier = fluidSupplier; + } + + public Consumer getFluidConsumer() { + return fluidConsumer; + } + + public void setFluidConsumer(Consumer fluidConsumer) { + this.fluidConsumer = fluidConsumer; + } + + public Identifier getBackgroundTexture() { + return FLUID_BACKGROUND; + } + + @NotNull + @Override + public List getTooltip() { + Identifier fluidId = Registry.FLUID.getId(fluidSupplier.get()); + + return Collections.singletonList(new TranslatableText(String.format("block.%s.%s", fluidId.getNamespace(), fluidId.getPath()))); + } + + @Environment(EnvType.CLIENT) + @Override + public void onMouseClicked(float x, float y, int button) { + super.onMouseClicked(x, y, button); + + ItemStack stack = getHandler().getPlayer().inventory.getCursorStack(); + + if (isWithin(x, y)) { + if (!stack.isEmpty()) { + FluidHandler.ofOptional(stack).ifPresent(fluids -> { + fluidSupplier = () -> fluids.getFirst().getFluid(); + fluidConsumer.accept(fluidSupplier.get()); + }); + } else if (button == 2) { + fluidSupplier = () -> Fluids.EMPTY; + fluidConsumer.accept(fluidSupplier.get()); + } + } + } + + @Environment(EnvType.CLIENT) + @Override + public void drawWidget(@NotNull MatrixStack matrices, @NotNull VertexConsumerProvider provider) { + if (getHidden()) { + return; + } + + float x = getPosition().getX(); + float y = getPosition().getY(); + + float sX = getSize().getWidth(); + float sY = getSize().getHeight(); + + RenderLayer layer = Layers.get(getBackgroundTexture()); + + BaseRenderer.drawTexturedQuad(matrices, provider, layer, x, y, getSize().getWidth(), getSize().getHeight(), getBackgroundTexture()); + + if (fluidSupplier.get() != Fluids.EMPTY) { + SpriteRenderer.beginPass().setup(provider, RenderLayer.getSolid()).sprite(FluidUtilities.texture(fluidSupplier.get())[0]).color(FluidUtilities.color(MinecraftClient.getInstance().player, fluidSupplier.get())).light(0x00f000f0).overlay( + OverlayTexture.DEFAULT_UV).alpha(0xff).normal(matrices.peek().getNormal(), 0, 0, 0).position(matrices.peek().getModel(), x + 1, y + 1, x + sX - 1, y + sY - 1, 0F).next(PlayerScreenHandler.BLOCK_ATLAS_TEXTURE); + } + } } diff --git a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/mixin/IdentifierMixin.java b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/mixin/IdentifierMixin.java index 70dafb098..ed35a55a5 100644 --- a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/mixin/IdentifierMixin.java +++ b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/mixin/IdentifierMixin.java @@ -50,7 +50,7 @@ public class IdentifierMixin { @Inject(method = "([Ljava/lang/String;)V", at = @At("RETURN")) private void init(String[] strings, CallbackInfo ci) { - if (AstromineConfig.get().compatibilityMode && namespace.equals(AstromineCommon.MOD_ID) && IdentifierFixRegistry.INSTANCE.containsKey(path)) { + if (namespace.equals(AstromineCommon.MOD_ID) && AstromineConfig.get().compatibilityMode && IdentifierFixRegistry.INSTANCE.containsKey(path)) { String oldPath = path; path = IdentifierFixRegistry.INSTANCE.get(path); AstromineCommon.LOGGER.info("Fixed identifier path from " + oldPath + " to " + path); diff --git a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/registry/AstromineIdentifierFixes.java b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/registry/AstromineIdentifierFixes.java index bb3a93b8e..c77acdd4e 100644 --- a/astromine-core/src/main/java/com/github/chainmailstudios/astromine/registry/AstromineIdentifierFixes.java +++ b/astromine-core/src/main/java/com/github/chainmailstudios/astromine/registry/AstromineIdentifierFixes.java @@ -24,8 +24,14 @@ package com.github.chainmailstudios.astromine.registry; +import com.github.chainmailstudios.astromine.common.registry.IdentifierFixRegistry; + public class AstromineIdentifierFixes { public static void initialize() { } + + public static void register(String oldPath, String newPath) { + IdentifierFixRegistry.INSTANCE.register(oldPath, newPath); + } } diff --git a/astromine-core/src/main/resources/assets/astromine/lang/en_au.json b/astromine-core/src/main/resources/assets/astromine/lang/en_au.json index 292a2ecfe..517b4eaed 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/en_au.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/en_au.json @@ -318,24 +318,24 @@ "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", "item.astromine.glowstone_tiny_dust": "Glowstone Tiny Dust", "item.astromine.meteoric_steel_tiny_dust": "Meteoric Steel Tiny Dust", - "item.astromine.iron_plates": "Iron Plates", - "item.astromine.metite_plates": "Metite Plates", - "item.astromine.gold_plates": "Gold Plates", - "item.astromine.netherite_plates": "Netherite Plates", - "item.astromine.stellum_plates": "Stellum Plates", - "item.astromine.univite_plates": "Univite Plates", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.lunum_plates": "Lunum Plates", - "item.astromine.meteoric_steel_plates": "Meteoric Steel Plates", + "item.astromine.iron_plate": "Iron Plate", + "item.astromine.metite_plate": "Metite Plate", + "item.astromine.gold_plate": "Gold Plate", + "item.astromine.netherite_plate": "Netherite Plate", + "item.astromine.stellum_plate": "Stellum Plate", + "item.astromine.univite_plate": "Univite Plate", + "item.astromine.tin_plate": "Tin Plate", + "item.astromine.copper_plate": "Copper Plate", + "item.astromine.silver_plate": "Silver Plate", + "item.astromine.lead_plate": "Lead Plate", + "item.astromine.bronze_plate": "Bronze Plate", + "item.astromine.steel_plate": "Steel Plate", + "item.astromine.electrum_plate": "Electrum Plate", + "item.astromine.rose_gold_plate": "Rose Gold Plate", + "item.astromine.sterling_silver_plate": "Sterling Silver Plate", + "item.astromine.fools_gold_plate": "Fool's Gold Plate", + "item.astromine.lunum_plate": "Lunum Plate", + "item.astromine.meteoric_steel_plate": "Meteoric Steel Plate", "item.astromine.iron_gear": "Iron Gear", "item.astromine.metite_gear": "Metite Gear", "item.astromine.gold_gear": "Gold Gear", @@ -727,7 +727,7 @@ "text.astromine.components.plates.page_one.title": "Plates", "text.astromine.components.plates.page_one.text": "Thin sheets of metal, plates are useful for constructing $(thing)housing$() for $(thing)machinery$().", "text.astromine.components.plates.page_two.title": "Recipe", - "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for $(item)Iron Plates$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create plates of that type.", + "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for an $(item)Iron Plate$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create a plate of that type.", "text.astromine.creatures.space_slime.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.text": "A fierce adversary which inhabits large sections of traversable space.", @@ -1017,8 +1017,8 @@ "advancements.astromine.get_triturator.description": "Craft a Triturator", "advancements.astromine.get_gear.title": "Grinds Your Gears", "advancements.astromine.get_gear.description": "Craft a Gear", - "advancements.astromine.get_plates.title": "Flat Ingots", - "advancements.astromine.get_plates.description": "Craft some Plates", + "advancements.astromine.get_plate.title": "Flat Ingots", + "advancements.astromine.get_plate.description": "Craft a metal Plate", "advancements.astromine.get_rose_gold_ingot.title": "Pretty in Pink", "advancements.astromine.get_rose_gold_ingot.description": "Obtain a Rose Gold Ingot", "advancements.astromine.get_basic_circuit.title": "Circuit Maker", diff --git a/astromine-core/src/main/resources/assets/astromine/lang/en_ca.json b/astromine-core/src/main/resources/assets/astromine/lang/en_ca.json index 292a2ecfe..517b4eaed 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/en_ca.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/en_ca.json @@ -318,24 +318,24 @@ "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", "item.astromine.glowstone_tiny_dust": "Glowstone Tiny Dust", "item.astromine.meteoric_steel_tiny_dust": "Meteoric Steel Tiny Dust", - "item.astromine.iron_plates": "Iron Plates", - "item.astromine.metite_plates": "Metite Plates", - "item.astromine.gold_plates": "Gold Plates", - "item.astromine.netherite_plates": "Netherite Plates", - "item.astromine.stellum_plates": "Stellum Plates", - "item.astromine.univite_plates": "Univite Plates", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.lunum_plates": "Lunum Plates", - "item.astromine.meteoric_steel_plates": "Meteoric Steel Plates", + "item.astromine.iron_plate": "Iron Plate", + "item.astromine.metite_plate": "Metite Plate", + "item.astromine.gold_plate": "Gold Plate", + "item.astromine.netherite_plate": "Netherite Plate", + "item.astromine.stellum_plate": "Stellum Plate", + "item.astromine.univite_plate": "Univite Plate", + "item.astromine.tin_plate": "Tin Plate", + "item.astromine.copper_plate": "Copper Plate", + "item.astromine.silver_plate": "Silver Plate", + "item.astromine.lead_plate": "Lead Plate", + "item.astromine.bronze_plate": "Bronze Plate", + "item.astromine.steel_plate": "Steel Plate", + "item.astromine.electrum_plate": "Electrum Plate", + "item.astromine.rose_gold_plate": "Rose Gold Plate", + "item.astromine.sterling_silver_plate": "Sterling Silver Plate", + "item.astromine.fools_gold_plate": "Fool's Gold Plate", + "item.astromine.lunum_plate": "Lunum Plate", + "item.astromine.meteoric_steel_plate": "Meteoric Steel Plate", "item.astromine.iron_gear": "Iron Gear", "item.astromine.metite_gear": "Metite Gear", "item.astromine.gold_gear": "Gold Gear", @@ -727,7 +727,7 @@ "text.astromine.components.plates.page_one.title": "Plates", "text.astromine.components.plates.page_one.text": "Thin sheets of metal, plates are useful for constructing $(thing)housing$() for $(thing)machinery$().", "text.astromine.components.plates.page_two.title": "Recipe", - "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for $(item)Iron Plates$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create plates of that type.", + "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for an $(item)Iron Plate$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create a plate of that type.", "text.astromine.creatures.space_slime.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.text": "A fierce adversary which inhabits large sections of traversable space.", @@ -1017,8 +1017,8 @@ "advancements.astromine.get_triturator.description": "Craft a Triturator", "advancements.astromine.get_gear.title": "Grinds Your Gears", "advancements.astromine.get_gear.description": "Craft a Gear", - "advancements.astromine.get_plates.title": "Flat Ingots", - "advancements.astromine.get_plates.description": "Craft some Plates", + "advancements.astromine.get_plate.title": "Flat Ingots", + "advancements.astromine.get_plate.description": "Craft a metal Plate", "advancements.astromine.get_rose_gold_ingot.title": "Pretty in Pink", "advancements.astromine.get_rose_gold_ingot.description": "Obtain a Rose Gold Ingot", "advancements.astromine.get_basic_circuit.title": "Circuit Maker", diff --git a/astromine-core/src/main/resources/assets/astromine/lang/en_gb.json b/astromine-core/src/main/resources/assets/astromine/lang/en_gb.json index 292a2ecfe..517b4eaed 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/en_gb.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/en_gb.json @@ -318,24 +318,24 @@ "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", "item.astromine.glowstone_tiny_dust": "Glowstone Tiny Dust", "item.astromine.meteoric_steel_tiny_dust": "Meteoric Steel Tiny Dust", - "item.astromine.iron_plates": "Iron Plates", - "item.astromine.metite_plates": "Metite Plates", - "item.astromine.gold_plates": "Gold Plates", - "item.astromine.netherite_plates": "Netherite Plates", - "item.astromine.stellum_plates": "Stellum Plates", - "item.astromine.univite_plates": "Univite Plates", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.lunum_plates": "Lunum Plates", - "item.astromine.meteoric_steel_plates": "Meteoric Steel Plates", + "item.astromine.iron_plate": "Iron Plate", + "item.astromine.metite_plate": "Metite Plate", + "item.astromine.gold_plate": "Gold Plate", + "item.astromine.netherite_plate": "Netherite Plate", + "item.astromine.stellum_plate": "Stellum Plate", + "item.astromine.univite_plate": "Univite Plate", + "item.astromine.tin_plate": "Tin Plate", + "item.astromine.copper_plate": "Copper Plate", + "item.astromine.silver_plate": "Silver Plate", + "item.astromine.lead_plate": "Lead Plate", + "item.astromine.bronze_plate": "Bronze Plate", + "item.astromine.steel_plate": "Steel Plate", + "item.astromine.electrum_plate": "Electrum Plate", + "item.astromine.rose_gold_plate": "Rose Gold Plate", + "item.astromine.sterling_silver_plate": "Sterling Silver Plate", + "item.astromine.fools_gold_plate": "Fool's Gold Plate", + "item.astromine.lunum_plate": "Lunum Plate", + "item.astromine.meteoric_steel_plate": "Meteoric Steel Plate", "item.astromine.iron_gear": "Iron Gear", "item.astromine.metite_gear": "Metite Gear", "item.astromine.gold_gear": "Gold Gear", @@ -727,7 +727,7 @@ "text.astromine.components.plates.page_one.title": "Plates", "text.astromine.components.plates.page_one.text": "Thin sheets of metal, plates are useful for constructing $(thing)housing$() for $(thing)machinery$().", "text.astromine.components.plates.page_two.title": "Recipe", - "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for $(item)Iron Plates$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create plates of that type.", + "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for an $(item)Iron Plate$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create a plate of that type.", "text.astromine.creatures.space_slime.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.text": "A fierce adversary which inhabits large sections of traversable space.", @@ -1017,8 +1017,8 @@ "advancements.astromine.get_triturator.description": "Craft a Triturator", "advancements.astromine.get_gear.title": "Grinds Your Gears", "advancements.astromine.get_gear.description": "Craft a Gear", - "advancements.astromine.get_plates.title": "Flat Ingots", - "advancements.astromine.get_plates.description": "Craft some Plates", + "advancements.astromine.get_plate.title": "Flat Ingots", + "advancements.astromine.get_plate.description": "Craft a metal Plate", "advancements.astromine.get_rose_gold_ingot.title": "Pretty in Pink", "advancements.astromine.get_rose_gold_ingot.description": "Obtain a Rose Gold Ingot", "advancements.astromine.get_basic_circuit.title": "Circuit Maker", diff --git a/astromine-core/src/main/resources/assets/astromine/lang/en_nz.json b/astromine-core/src/main/resources/assets/astromine/lang/en_nz.json index 292a2ecfe..517b4eaed 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/en_nz.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/en_nz.json @@ -318,24 +318,24 @@ "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", "item.astromine.glowstone_tiny_dust": "Glowstone Tiny Dust", "item.astromine.meteoric_steel_tiny_dust": "Meteoric Steel Tiny Dust", - "item.astromine.iron_plates": "Iron Plates", - "item.astromine.metite_plates": "Metite Plates", - "item.astromine.gold_plates": "Gold Plates", - "item.astromine.netherite_plates": "Netherite Plates", - "item.astromine.stellum_plates": "Stellum Plates", - "item.astromine.univite_plates": "Univite Plates", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.lunum_plates": "Lunum Plates", - "item.astromine.meteoric_steel_plates": "Meteoric Steel Plates", + "item.astromine.iron_plate": "Iron Plate", + "item.astromine.metite_plate": "Metite Plate", + "item.astromine.gold_plate": "Gold Plate", + "item.astromine.netherite_plate": "Netherite Plate", + "item.astromine.stellum_plate": "Stellum Plate", + "item.astromine.univite_plate": "Univite Plate", + "item.astromine.tin_plate": "Tin Plate", + "item.astromine.copper_plate": "Copper Plate", + "item.astromine.silver_plate": "Silver Plate", + "item.astromine.lead_plate": "Lead Plate", + "item.astromine.bronze_plate": "Bronze Plate", + "item.astromine.steel_plate": "Steel Plate", + "item.astromine.electrum_plate": "Electrum Plate", + "item.astromine.rose_gold_plate": "Rose Gold Plate", + "item.astromine.sterling_silver_plate": "Sterling Silver Plate", + "item.astromine.fools_gold_plate": "Fool's Gold Plate", + "item.astromine.lunum_plate": "Lunum Plate", + "item.astromine.meteoric_steel_plate": "Meteoric Steel Plate", "item.astromine.iron_gear": "Iron Gear", "item.astromine.metite_gear": "Metite Gear", "item.astromine.gold_gear": "Gold Gear", @@ -727,7 +727,7 @@ "text.astromine.components.plates.page_one.title": "Plates", "text.astromine.components.plates.page_one.text": "Thin sheets of metal, plates are useful for constructing $(thing)housing$() for $(thing)machinery$().", "text.astromine.components.plates.page_two.title": "Recipe", - "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for $(item)Iron Plates$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create plates of that type.", + "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for an $(item)Iron Plate$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create a plate of that type.", "text.astromine.creatures.space_slime.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.text": "A fierce adversary which inhabits large sections of traversable space.", @@ -1017,8 +1017,8 @@ "advancements.astromine.get_triturator.description": "Craft a Triturator", "advancements.astromine.get_gear.title": "Grinds Your Gears", "advancements.astromine.get_gear.description": "Craft a Gear", - "advancements.astromine.get_plates.title": "Flat Ingots", - "advancements.astromine.get_plates.description": "Craft some Plates", + "advancements.astromine.get_plate.title": "Flat Ingots", + "advancements.astromine.get_plate.description": "Craft a metal Plate", "advancements.astromine.get_rose_gold_ingot.title": "Pretty in Pink", "advancements.astromine.get_rose_gold_ingot.description": "Obtain a Rose Gold Ingot", "advancements.astromine.get_basic_circuit.title": "Circuit Maker", diff --git a/astromine-core/src/main/resources/assets/astromine/lang/en_us.json b/astromine-core/src/main/resources/assets/astromine/lang/en_us.json index 1bc3548d5..79b815eb9 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/en_us.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/en_us.json @@ -319,24 +319,24 @@ "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", "item.astromine.glowstone_tiny_dust": "Glowstone Tiny Dust", "item.astromine.meteoric_steel_tiny_dust": "Meteoric Steel Tiny Dust", - "item.astromine.iron_plates": "Iron Plates", - "item.astromine.metite_plates": "Metite Plates", - "item.astromine.gold_plates": "Gold Plates", - "item.astromine.netherite_plates": "Netherite Plates", - "item.astromine.stellum_plates": "Stellum Plates", - "item.astromine.univite_plates": "Univite Plates", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.lunum_plates": "Lunum Plates", - "item.astromine.meteoric_steel_plates": "Meteoric Steel Plates", + "item.astromine.iron_plate": "Iron Plate", + "item.astromine.metite_plate": "Metite Plate", + "item.astromine.gold_plate": "Gold Plate", + "item.astromine.netherite_plate": "Netherite Plate", + "item.astromine.stellum_plate": "Stellum Plate", + "item.astromine.univite_plate": "Univite Plate", + "item.astromine.tin_plate": "Tin Plate", + "item.astromine.copper_plate": "Copper Plate", + "item.astromine.silver_plate": "Silver Plate", + "item.astromine.lead_plate": "Lead Plate", + "item.astromine.bronze_plate": "Bronze Plate", + "item.astromine.steel_plate": "Steel Plate", + "item.astromine.electrum_plate": "Electrum Plate", + "item.astromine.rose_gold_plate": "Rose Gold Plate", + "item.astromine.sterling_silver_plate": "Sterling Silver Plate", + "item.astromine.fools_gold_plate": "Fool's Gold Plate", + "item.astromine.lunum_plate": "Lunum Plate", + "item.astromine.meteoric_steel_plate": "Meteoric Steel Plate", "item.astromine.iron_gear": "Iron Gear", "item.astromine.metite_gear": "Metite Gear", "item.astromine.gold_gear": "Gold Gear", @@ -728,7 +728,7 @@ "text.astromine.components.plates.page_one.title": "Plates", "text.astromine.components.plates.page_one.text": "Thin sheets of metal, plates are useful for constructing $(thing)housing$() for $(thing)machinery$().", "text.astromine.components.plates.page_two.title": "Recipe", - "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for $(item)Iron Plates$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create plates of that type.", + "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for an $(item)Iron Plate$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create a plate of that type.", "text.astromine.creatures.space_slime.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.title": "Space Slime", "text.astromine.creatures.space_slime.page_one.text": "A fierce adversary which inhabits large sections of traversable space.", @@ -1018,8 +1018,8 @@ "advancements.astromine.get_triturator.description": "Craft a Triturator", "advancements.astromine.get_gear.title": "Grinds Your Gears", "advancements.astromine.get_gear.description": "Craft a Gear", - "advancements.astromine.get_plates.title": "Flat Ingots", - "advancements.astromine.get_plates.description": "Craft some Plates", + "advancements.astromine.get_plate.title": "Flat Ingots", + "advancements.astromine.get_plate.description": "Craft a metal Plate", "advancements.astromine.get_rose_gold_ingot.title": "Pretty in Pink", "advancements.astromine.get_rose_gold_ingot.description": "Obtain a Rose Gold Ingot", "advancements.astromine.get_basic_circuit.title": "Circuit Maker", diff --git a/astromine-core/src/main/resources/assets/astromine/lang/pt_br.json b/astromine-core/src/main/resources/assets/astromine/lang/pt_br.json index 35b6d4f87..2ca9c4cc5 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/pt_br.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/pt_br.json @@ -1,10 +1,6 @@ { "entity.astromine.super_space_slime": "Jelanium: Super slime espacial", "entity.astromine.space_slime": "Slime espacial", - "text.astromine.magazine.rounds": "Balas", - "text.astromine.weapon.battle_rifle": "Rifle de batalha", - "text.astromine.weapon.sniper_rifle": "Rifle de precisão", - "text.astromine.weapon.fantasy": "Fantasia", "text.astromine.message.holographic_connection_successful": "Sucesso ao conectar projector em %s com projetor em %s.", "text.astromine.message.holographic_connection_failed": "Falha ao conectar projetor em %s com projector em %s.", "text.astromine.message.holographic_connection_clear": "Projetores selecionados foram limpos!", @@ -18,13 +14,11 @@ "item.astromine.fire_extinguisher": "Extintor de incêndio", "item.astromine.holographic_connector": "Conector holográfico", "item.astromine.holographic_bridge_projector": "Projetor de ponte holográfica", - "itemGroup.astromine.astromine": "Astromine", "block.astromine.electrolyzer": "Eletrolisador", "block.astromine.creative_capacitor": "Capacitor criativo", "block.astromine.creative_tank": "Tanque criativo", "block.astromine.creative_buffer": "Armazém criativo", "block.astromine.fluid_cable": "Cabo de fluido", - "block.astromine.tank": "Tanque", "block.astromine.vent": "Ventoinha", "block.astromine.fluid_extractor": "Extrator de fluidos", "block.astromine.nuclear_warhead": "Bomba Atômica", @@ -89,12 +83,12 @@ "item.astromine.stellum_dust": "Pó de stellum", "item.astromine.galaxium_dust": "Pó de galaxium", "item.astromine.univite_dust": "Pó de univita", - "item.astromine.iron_plates": "Placas de ferro", - "item.astromine.metite_plates": "Placas de metita", - "item.astromine.gold_plates": "Placas de ouro", - "item.astromine.netherite_plates": "Placas de netherita", - "item.astromine.stellum_plates": "Placas de stellum", - "item.astromine.univite_plates": "Placas de univita", + "item.astromine.iron_plate": "Placas de ferro", + "item.astromine.metite_plate": "Placas de metita", + "item.astromine.gold_plate": "Placas de ouro", + "item.astromine.netherite_plate": "Placas de netherita", + "item.astromine.stellum_plate": "Placas de stellum", + "item.astromine.univite_plate": "Placas de univita", "item.astromine.iron_gear": "Engrenagem de ferro", "item.astromine.metite_gear": "Engrenagem de metita", "item.astromine.gold_gear": "Engrenagem de ouro", @@ -352,2337 +346,5 @@ "text.astromine.world.meteors.page_one.text": "Corpos extraterrestres que, enquanto vagavam pelas estrelas, colidiram com um corpo planetário; são ditos conterem $(thing)$(l:world/meteor_ores)minérios extraterrestres$().", "text.astromine.world.ore_clusters.title": "Aglomerados de Minério", "text.astromine.world.ore_clusters.page_one.title": "Aglomerados de Minério", - "text.astromine.world.ore_clusters.page_one.text": "Aglomerados de Minério são obtidos de $(thing)$(l:world/asteroid_ores)minérios de asteroide$() ou $(thing)$(l:world/meteor_ores)minérios de meteoro$(), que podem ser processados por recursos.", - "text.astromine.tooltip.energy_value": "%s E", - "text.astromine.tooltip.compound_energy_value": "%s/%s E", - "text.astromine.tooltip.speed": "%sx speed", - "text.astromine.tooltip.cable.speed": "%s E/t", - "text.astromine.item": "Item", - "text.astromine.up": "Up", - "text.astromine.down": "Down", - "text.astromine.left": "Left", - "text.astromine.right": "Right", - "text.astromine.front": "Front", - "text.astromine.back": "Back", - "text.astromine.siding.input": "§bInput", - "text.astromine.siding.output": "§6Output", - "text.astromine.siding.input_output": "§bInput §7/ §6Output", - "text.astromine.siding.none": "§7None", - "text.astromine.siding.disabled": "§7§mDisabled", - "text.astromine.siding.west": "Right", - "text.astromine.siding.east": "Left", - "text.astromine.siding.up": "Top", - "text.astromine.siding.down": "Bottom", - "text.astromine.siding.north": "Front", - "text.astromine.siding.south": "Back", - "item.astromine.primitive_machine_chassis": "Primitive Machine Chassis", - "item.astromine.basic_machine_chassis": "Basic Machine Chassis", - "item.astromine.advanced_machine_chassis": "Advanced Machine Chassis", - "item.astromine.elite_machine_chassis": "Elite Machine Chassis", - "item.astromine.graphite_sheet": "Graphite Sheet", - "item.astromine.gas_canister": "Gas Canister", - "item.astromine.pressurized_gas_canister": "Pressurized Gas Canister", - "item.astromine.basic_battery": "Basic Battery", - "item.astromine.advanced_battery": "Advanced Battery", - "item.astromine.elite_battery": "Elite Battery", - "item.astromine.creative_battery": "Creative Battery", - "block.astromine.fluid_mixer": "Fluid Mixer", - "block.astromine.basic_buffer": "Basic Buffer", - "block.astromine.advanced_buffer": "Advanced Buffer", - "block.astromine.elite_buffer": "Elite Buffer", - "block.astromine.primitive_solid_generator": "Primitive Solid Generator", - "block.astromine.basic_solid_generator": "Basic Solid Generator", - "block.astromine.advanced_solid_generator": "Advanced Solid Generator", - "block.astromine.elite_solid_generator": "Elite Solid Generator", - "block.astromine.primitive_liquid_generator": "Primitive Liquid Generator", - "block.astromine.basic_liquid_generator": "Basic Liquid Generator", - "block.astromine.advanced_liquid_generator": "Advanced Liquid Generator", - "block.astromine.elite_liquid_generator": "Elite Liquid Generator", - "block.astromine.primitive_presser": "Primitive Presser", - "block.astromine.basic_presser": "Basic Presser", - "block.astromine.advanced_presser": "Advanced Presser", - "block.astromine.elite_presser": "Elite Presser", - "block.astromine.primitive_triturator": "Primitive Triturator", - "block.astromine.basic_triturator": "Basic Triturator", - "block.astromine.advanced_triturator": "Advanced Triturator", - "block.astromine.elite_triturator": "Elite Triturator", - "block.astromine.primitive_electric_smelter": "Primitive Electric Smelter", - "block.astromine.basic_electric_smelter": "Basic Electric Smelter", - "block.astromine.advanced_electric_smelter": "Advanced Electric Smelter", - "block.astromine.elite_electric_smelter": "Elite Electric Smelter", - "block.astromine.primitive_alloy_smelter": "Primitive Alloy Smelter", - "block.astromine.basic_alloy_smelter": "Basic Alloy Smelter", - "block.astromine.advanced_alloy_smelter": "Advanced Alloy Smelter", - "block.astromine.elite_alloy_smelter": "Elite Alloy Smelter", - "block.astromine.primitive_electrolyzer": "Primitive Electrolyzer", - "block.astromine.basic_electrolyzer": "Basic Electrolyzer", - "block.astromine.advanced_electrolyzer": "Advanced Electrolyzer", - "block.astromine.elite_electrolyzer": "Elite Electrolyzer", - "block.astromine.primitive_fluid_mixer": "Primitive Fluid Mixer", - "block.astromine.basic_fluid_mixer": "Basic Fluid Mixer", - "block.astromine.advanced_fluid_mixer": "Advanced Fluid Mixer", - "block.astromine.elite_fluid_mixer": "Elite Fluid Mixer", - "block.astromine.primitive_energy_cable": "Primitive Energy Cable", - "block.astromine.basic_energy_cable": "Basic Energy Cable", - "block.astromine.advanced_energy_cable": "Advanced Energy Cable", - "block.astromine.elite_energy_cable": "Elite Energy Cable", - "block.astromine.primitive_capacitor": "Primitive Capacitor", - "block.astromine.basic_capacitor": "Basic Capacitor", - "block.astromine.advanced_capacitor": "Advanced Capacitor", - "block.astromine.elite_capacitor": "Elite Capacitor", - "item.astromine.tin_wire": "Tin Wire", - "item.astromine.copper_wire": "Copper Wire", - "item.astromine.silver_wire": "Silver Wire", - "item.astromine.lead_wire": "Lead Wire", - "item.astromine.gold_wire": "Gold Wire", - "item.astromine.steel_wire": "Steel Wire", - "item.astromine.electrum_wire": "Electrum Wire", - "block.astromine.fluid_inserter": "Fluid Inserter", - "block.astromine.block_breaker": "Block Breaker", - "block.astromine.block_placer": "Block Placer", - "block.astromine.moon_stone": "Moon Stone", - "block.astromine.tin_ore": "Tin Ore", - "block.astromine.copper_ore": "Copper Ore", - "block.astromine.silver_ore": "Silver Ore", - "block.astromine.lead_ore": "Lead Ore", - "block.astromine.tin_block": "Block of Tin", - "block.astromine.copper_block": "Block of Copper", - "block.astromine.silver_block": "Block of Silver", - "block.astromine.lead_block": "Block of Lead", - "block.astromine.bronze_block": "Block of Bronze", - "block.astromine.steel_block": "Block of Steel", - "block.astromine.electrum_block": "Block of Electrum", - "block.astromine.rose_gold_block": "Block of Rose Gold", - "block.astromine.sterling_silver_block": "Block of Sterling Silver", - "block.astromine.fools_gold_block": "Block of Fool's Gold", - "block.astromine.asteroid_tin_ore": "Asteroid Tin Ore", - "block.astromine.asteroid_copper_ore": "Asteroid Copper Ore", - "block.astromine.asteroid_silver_ore": "Asteroid Silver Ore", - "block.astromine.asteroid_lead_ore": "Asteroid Lead Ore", - "block.astromine.moon_stone_slab": "Moon Stone Slab", - "block.astromine.moon_stone_stairs": "Moon Stone Stairs", - "block.astromine.moon_stone_wall": "Moon Stone Wall", - "block.astromine.martian_stone_slab": "Martian Stone Slab", - "block.astromine.martian_stone_stairs": "Martian Stone Stairs", - "block.astromine.martian_stone_wall": "Martian Stone Wall", - "block.astromine.vulcan_stone_slab": "Vulcan Stone Slab", - "block.astromine.vulcan_stone_stairs": "Vulcan Stone Stairs", - "block.astromine.vulcan_stone_wall": "Vulcan Stone Wall", - "block.astromine.martian_soil": "Martian Soil", - "block.astromine.martian_stone": "Martian Stone", - "block.astromine.vulcan_stone": "Vulcan Stone", - "block.astromine.alternator": "Alternator", - "block.astromine.splitter": "Splitter", - "block.astromine.incinerator": "Incinerator", - "block.astromine.inserter": "Inserter", - "block.astromine.fast_inserter": "Fast Inserter", - "block.astromine.basic_conveyor": "Basic Conveyor", - "block.astromine.basic_vertical_conveyor": "Basic Vertical Conveyor", - "block.astromine.basic_downward_vertical_conveyor": "Basic Downward Vertical Conveyor", - "block.astromine.advanced_conveyor": "Advanced Conveyor", - "block.astromine.advanced_vertical_conveyor": "Advanced Vertical Conveyor", - "block.astromine.advanced_downward_vertical_conveyor": "Advanced Downward Vertical Conveyor", - "block.astromine.elite_conveyor": "Elite Conveyor", - "block.astromine.elite_vertical_conveyor": "Elite Vertical Conveyor", - "block.astromine.elite_downward_vertical_conveyor": "Elite Downward Vertical Conveyor", - "block.astromine.catwalk": "Catwalk", - "block.astromine.catwalk_stairs": "Catwalk Stairs", - "item.astromine.hydrogen_bucket": "Hydrogen Bucket", - "item.astromine.asteroid_tin_cluster": "Asteroid Tin Cluster", - "item.astromine.asteroid_copper_cluster": "Asteroid Copper Cluster", - "item.astromine.asteroid_silver_cluster": "Asteroid Silver Cluster", - "item.astromine.asteroid_lead_cluster": "Asteroid Lead Cluster", - "item.astromine.coal_dust": "Coal Dust", - "item.astromine.charcoal_dust": "Charcoal Dust", - "item.astromine.quartz_dust": "Quartz Dust", - "item.astromine.raw_netherite_dust": "Raw Netherite Dust", - "item.astromine.tin_dust": "Tin Dust", - "item.astromine.copper_dust": "Copper Dust", - "item.astromine.silver_dust": "Silver Dust", - "item.astromine.lead_dust": "Lead Dust", - "item.astromine.bronze_dust": "Bronze Dust", - "item.astromine.steel_dust": "Steel Dust", - "item.astromine.electrum_dust": "Electrum Dust", - "item.astromine.rose_gold_dust": "Rose Gold Dust", - "item.astromine.sterling_silver_dust": "Sterling Silver Dust", - "item.astromine.fools_gold_dust": "Fool's Gold Dust", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.tin_gear": "Tin Gear", - "item.astromine.copper_gear": "Copper Gear", - "item.astromine.silver_gear": "Silver Gear", - "item.astromine.lead_gear": "Lead Gear", - "item.astromine.bronze_gear": "Bronze Gear", - "item.astromine.steel_gear": "Steel Gear", - "item.astromine.electrum_gear": "Electrum Gear", - "item.astromine.rose_gold_gear": "Rose Gold Gear", - "item.astromine.sterling_silver_gear": "Sterling Silver Gear", - "item.astromine.fools_gold_gear": "Fool's Gold Gear", - "item.astromine.tin_ingot": "Tin Ingot", - "item.astromine.copper_ingot": "Copper Ingot", - "item.astromine.silver_ingot": "Silver Ingot", - "item.astromine.lead_ingot": "Lead Ingot", - "item.astromine.bronze_ingot": "Bronze Ingot", - "item.astromine.steel_ingot": "Steel Ingot", - "item.astromine.electrum_ingot": "Electrum Ingot", - "item.astromine.rose_gold_ingot": "Rose Gold Ingot", - "item.astromine.sterling_silver_ingot": "Sterling Silver Ingot", - "item.astromine.fools_gold_ingot": "Fool's Gold Ingot", - "item.astromine.quartz_fragment": "Quartz Fragment", - "item.astromine.tin_nugget": "Tin Nugget", - "item.astromine.copper_nugget": "Copper Nugget", - "item.astromine.silver_nugget": "Silver Nugget", - "item.astromine.lead_nugget": "Lead Nugget", - "item.astromine.bronze_nugget": "Bronze Nugget", - "item.astromine.steel_nugget": "Steel Nugget", - "item.astromine.electrum_nugget": "Electrum Nugget", - "item.astromine.rose_gold_nugget": "Rose Gold Nugget", - "item.astromine.sterling_silver_nugget": "Sterling Silver Nugget", - "item.astromine.fools_gold_nugget": "Fool's Gold Nugget", - "item.astromine.basic_drill": "Basic Drill", - "item.astromine.advanced_drill": "Advanced Drill", - "item.astromine.elite_drill": "Elite Drill", - "item.astromine.tin_pickaxe": "Tin Pickaxe", - "item.astromine.tin_axe": "Tin Axe", - "item.astromine.tin_shovel": "Tin Shovel", - "item.astromine.tin_hoe": "Tin Hoe", - "item.astromine.tin_sword": "Tin Sword", - "item.astromine.tin_mattock": "Tin Mattock", - "item.astromine.tin_mining_tool": "Tin Mining Tool", - "item.astromine.tin_hammer": "Tin Hammer", - "item.astromine.tin_excavator": "Tin Excavator", - "item.astromine.copper_pickaxe": "Copper Pickaxe", - "item.astromine.copper_axe": "Copper Axe", - "item.astromine.copper_shovel": "Copper Shovel", - "item.astromine.copper_hoe": "Copper Hoe", - "item.astromine.copper_sword": "Copper Sword", - "item.astromine.copper_mattock": "Copper Mattock", - "item.astromine.copper_mining_tool": "Copper Mining Tool", - "item.astromine.copper_hammer": "Copper Hammer", - "item.astromine.copper_excavator": "Copper Excavator", - "item.astromine.silver_pickaxe": "Silver Pickaxe", - "item.astromine.silver_axe": "Silver Axe", - "item.astromine.silver_shovel": "Silver Shovel", - "item.astromine.silver_hoe": "Silver Hoe", - "item.astromine.silver_sword": "Silver Sword", - "item.astromine.silver_mattock": "Silver Mattock", - "item.astromine.silver_mining_tool": "Silver Mining Tool", - "item.astromine.silver_hammer": "Silver Hammer", - "item.astromine.silver_excavator": "Silver Excavator", - "item.astromine.lead_pickaxe": "Lead Pickaxe", - "item.astromine.lead_axe": "Lead Axe", - "item.astromine.lead_shovel": "Lead Shovel", - "item.astromine.lead_hoe": "Lead Hoe", - "item.astromine.lead_sword": "Lead Sword", - "item.astromine.lead_mattock": "Lead Mattock", - "item.astromine.lead_mining_tool": "Lead Mining Tool", - "item.astromine.lead_hammer": "Lead Hammer", - "item.astromine.lead_excavator": "Lead Excavator", - "item.astromine.bronze_pickaxe": "Bronze Pickaxe", - "item.astromine.bronze_axe": "Bronze Axe", - "item.astromine.bronze_shovel": "Bronze Shovel", - "item.astromine.bronze_hoe": "Bronze Hoe", - "item.astromine.bronze_sword": "Bronze Sword", - "item.astromine.bronze_mattock": "Bronze Mattock", - "item.astromine.bronze_mining_tool": "Bronze Mining Tool", - "item.astromine.bronze_hammer": "Bronze Hammer", - "item.astromine.bronze_excavator": "Bronze Excavator", - "item.astromine.steel_pickaxe": "Steel Pickaxe", - "item.astromine.steel_axe": "Steel Axe", - "item.astromine.steel_shovel": "Steel Shovel", - "item.astromine.steel_hoe": "Steel Hoe", - "item.astromine.steel_sword": "Steel Sword", - "item.astromine.steel_mattock": "Steel Mattock", - "item.astromine.steel_mining_tool": "Steel Mining Tool", - "item.astromine.steel_hammer": "Steel Hammer", - "item.astromine.steel_excavator": "Steel Excavator", - "item.astromine.electrum_pickaxe": "Electrum Pickaxe", - "item.astromine.electrum_axe": "Electrum Axe", - "item.astromine.electrum_shovel": "Electrum Shovel", - "item.astromine.electrum_hoe": "Electrum Hoe", - "item.astromine.electrum_sword": "Electrum Sword", - "item.astromine.electrum_mattock": "Electrum Mattock", - "item.astromine.electrum_mining_tool": "Electrum Mining Tool", - "item.astromine.electrum_hammer": "Electrum Hammer", - "item.astromine.electrum_excavator": "Electrum Excavator", - "item.astromine.rose_gold_pickaxe": "Rose Gold Pickaxe", - "item.astromine.rose_gold_axe": "Rose Gold Axe", - "item.astromine.rose_gold_shovel": "Rose Gold Shovel", - "item.astromine.rose_gold_hoe": "Rose Gold Hoe", - "item.astromine.rose_gold_sword": "Rose Gold Sword", - "item.astromine.rose_gold_mattock": "Rose Gold Mattock", - "item.astromine.rose_gold_mining_tool": "Rose Gold Mining Tool", - "item.astromine.rose_gold_hammer": "Rose Gold Hammer", - "item.astromine.rose_gold_excavator": "Rose Gold Excavator", - "item.astromine.sterling_silver_pickaxe": "Sterling Silver Pickaxe", - "item.astromine.sterling_silver_axe": "Sterling Silver Silverver Axe", - "item.astromine.sterling_silver_shovel": "Sterling Silver Shovel", - "item.astromine.sterling_silver_hoe": "Sterling Silver Hoe", - "item.astromine.sterling_silver_sword": "Sterling Silver Sword", - "item.astromine.sterling_silver_mattock": "Sterling Silver Mattock", - "item.astromine.sterling_silver_mining_tool": "Sterling Silver Mining Tool", - "item.astromine.sterling_silver_hammer": "Sterling Silver Hammer", - "item.astromine.sterling_silver_excavator": "Sterling Silver Excavator", - "item.astromine.fools_gold_pickaxe": "Fool's Gold Pickaxe", - "item.astromine.fools_gold_axe": "Fool's Gold Axe", - "item.astromine.fools_gold_shovel": "Fool's Gold Shovel", - "item.astromine.fools_gold_hoe": "Fool's Gold Hoe", - "item.astromine.fools_gold_sword": "Fool's Gold Sword", - "item.astromine.fools_gold_mattock": "Fool's Gold Mattock", - "item.astromine.fools_gold_mining_tool": "Fool's Gold Mining Tool", - "item.astromine.fools_gold_hammer": "Fool's Gold Hammer", - "item.astromine.fools_gold_excavator": "Fool's Gold Excavator", - "item.astromine.metite_mattock": "Metite Mattock", - "item.astromine.metite_mining_tool": "Metite Mining Tool", - "item.astromine.metite_hammer": "Metite Hammer", - "item.astromine.metite_excavator": "Metite Excavator", - "item.astromine.asterite_mattock": "Asterite Mattock", - "item.astromine.asterite_mining_tool": "Asterite Mining Tool", - "item.astromine.asterite_hammer": "Asterite Hammer", - "item.astromine.asterite_excavator": "Asterite Excavator", - "item.astromine.stellum_mattock": "Stellum Mattock", - "item.astromine.stellum_mining_tool": "Stellum Mining Tool", - "item.astromine.stellum_hammer": "Stellum Hammer", - "item.astromine.stellum_excavator": "Stellum Excavator", - "item.astromine.galaxium_mattock": "Galaxium Mattock", - "item.astromine.galaxium_mining_tool": "Galaxium Mining Tool", - "item.astromine.galaxium_hammer": "Galaxium Hammer", - "item.astromine.galaxium_excavator": "Galaxium Excavator", - "item.astromine.univite_mattock": "Univite Mattock", - "item.astromine.univite_mining_tool": "Univite Mining Tool", - "item.astromine.univite_hammer": "Univite Hammer", - "item.astromine.univite_excavator": "Univite Excavator", - "item.astromine.wooden_mattock": "Wooden Mattock", - "item.astromine.wooden_mining_tool": "Wooden Mining Tool", - "item.astromine.stone_mattock": "Stone Mattock", - "item.astromine.stone_mining_tool": "Stone Mining Tool", - "item.astromine.iron_mattock": "Iron Mattock", - "item.astromine.iron_mining_tool": "Iron Mining Tool", - "item.astromine.golden_mattock": "Golden Mattock", - "item.astromine.golden_mining_tool": "Golden Mining Tool", - "item.astromine.diamond_mattock": "Diamond Mattock", - "item.astromine.diamond_mining_tool": "Diamond Mining Tool", - "item.astromine.netherite_mattock": "Netherite Mattock", - "item.astromine.netherite_mining_tool": "Netherite Mining Tool", - "item.astromine.tin_helmet": "Tin Helmet", - "item.astromine.tin_chestplate": "Tin Chestplate", - "item.astromine.tin_leggings": "Tin Leggings", - "item.astromine.tin_boots": "Tin Boots", - "item.astromine.copper_helmet": "Copper Helmet", - "item.astromine.copper_chestplate": "Copper Chestplate", - "item.astromine.copper_leggings": "Copper Leggings", - "item.astromine.copper_boots": "Copper Boots", - "item.astromine.silver_helmet": "Silver Helmet", - "item.astromine.silver_chestplate": "Silver Chestplate", - "item.astromine.silver_leggings": "Silver Leggings", - "item.astromine.silver_boots": "Silver Boots", - "item.astromine.lead_helmet": "Lead Helmet", - "item.astromine.lead_chestplate": "Lead Chestplate", - "item.astromine.lead_leggings": "Lead Leggings", - "item.astromine.lead_boots": "Lead Boots", - "item.astromine.bronze_helmet": "Bronze Helmet", - "item.astromine.bronze_chestplate": "Bronze Chestplate", - "item.astromine.bronze_leggings": "Bronze Leggings", - "item.astromine.bronze_boots": "Bronze Boots", - "item.astromine.steel_helmet": "Steel Helmet", - "item.astromine.steel_chestplate": "Steel Chestplate", - "item.astromine.steel_leggings": "Steel Leggings", - "item.astromine.steel_boots": "Steel Boots", - "item.astromine.electrum_helmet": "Electrum Helmet", - "item.astromine.electrum_chestplate": "Electrum Chestplate", - "item.astromine.electrum_leggings": "Electrum Leggings", - "item.astromine.electrum_boots": "Electrum Boots", - "item.astromine.rose_gold_helmet": "Rose Gold Helmet", - "item.astromine.rose_gold_chestplate": "Rose Gold Chestplate", - "item.astromine.rose_gold_leggings": "Rose Gold Leggings", - "item.astromine.rose_gold_boots": "Rose Gold Boots", - "item.astromine.sterling_silver_helmet": "Sterling Silver Helmet", - "item.astromine.sterling_silver_chestplate": "Sterling Silver Chestplate", - "item.astromine.sterling_silver_leggings": "Sterling Silver Leggings", - "item.astromine.sterling_silver_boots": "Sterling Silver Boots", - "item.astromine.fools_gold_helmet": "Fool's Gold Helmet", - "item.astromine.fools_gold_chestplate": "Fool's Gold Chestplate", - "item.astromine.fools_gold_leggings": "Fool's Gold Leggings", - "item.astromine.fools_gold_boots": "Fool's Gold Boots", - "item.astromine.bronze_wrench": "Bronze Wrench", - "item.astromine.gravity_gauntlet": "Gravity Gauntlet", - "category.astromine.solid_generating": "Solid Generating", - "category.astromine.alloy_smelting": "Alloy Smelting", - "category.astromine.pressing": "Pressing", - "category.astromine.fluid_mixing": "Fluid Mixing", - "text.astromine.manual.obtain.info": "The Astromine Manual can be obtained by right clicking a Metite Axe on a Bookshelf.", - "text.astromine.selected.dimension.pos": "Selected %s (%d, %d, %d)", - "text.astromine.astronautics.rocket.title": "Rocket", - "text.astromine.astronautics.rocket.page_one.title": "Rocket", - "text.astromine.astronautics.rocket.page_one.text": "Your ticket to the final frontier.", - "text.astromine.astronautics.rocket.page_two.title": "Crafting and Notes", - "text.astromine.astronautics.rocket.page_two.text": "Right click with a $(item)Flint and Steel$() to launch. Right click with a $(item)Stick$() to destroy. These are both temporary measures.", - "text.astromine.gadgets.gravity_gauntlet.title": "Gravity Gauntlets", - "text.astromine.gadgets.gravity_gauntlet.page_one.title": "Gravity Gauntlets", - "text.astromine.gadgets.gravity_gauntlet.page_one.text": "Gauntlets which can repel opponents. One must be worn on each hand, and they must be charged before they can activate$(p)Charging is done by holding right click with one in each hand, and takes energy.", - "text.astromine.gadgets.gravity_gauntlet.page_two.title": "Recipe", - "text.astromine.machinery.fluid_inserter.title": "Fluid Inserter", - "text.astromine.machinery.fluid_inserter.page_one.title": "Fluid Inserter", - "text.astromine.machinery.fluid_inserter.page_one.text": "A machine which consumes $(thing)energy$() to place $(thing)fluids$() in the world.", - "text.astromine.machinery.fluid_inserter.page_two.title": "Recipe", - "text.astromine.machinery.fluid_mixer.title": "Fuel Mixer", - "text.astromine.machinery.fluid_mixer.page_one.title": "Fuel Mixer", - "text.astromine.machinery.fluid_mixer.page_one.text": "A machine which consumes $(thing)energy$() to mix $(thing)fluids$() into useful materials.", - "text.astromine.machinery.fluid_mixer.page_two.title": "Recipe", - "text.astromine.machinery.block_breaker.title": "Block Breaker", - "text.astromine.machinery.block_breaker.page_one.title": "Block Breaker", - "text.astromine.machinery.block_breaker.page_one.text": "A machine which consumes $(thing)energy$() to break and pick up $(thing)blocks$() from the world.", - "text.astromine.machinery.block_breaker.page_two.title": "Recipe", - "text.astromine.machinery.block_placer.title": "Block Placer", - "text.astromine.machinery.block_placer.page_one.title": "Block Placer", - "text.astromine.machinery.block_placer.page_one.text": "A machine which consumes $(thing)energy$() to place $(thing)blocks$() in the world.", - "text.astromine.machinery.block_placer.page_two.title": "Recipe", - "text.astromine.machinery.inserter.title": "Inserter", - "text.astromine.machinery.inserter.page_one.title": "Inserter", - "text.astromine.machinery.inserter.page_one.text": "A machine which picks up items from its front and places them at its back, for item transportation.", - "text.astromine.machinery.inserter.page_two.title": "Recipe", - "text.astromine.machinery.inserter.page_three.title": "Recipe", - "text.astromine.machinery.conveyor.title": "Conveyor", - "text.astromine.machinery.conveyor.page_one.title": "Conveyor", - "text.astromine.machinery.conveyor.page_one.text": "A machine which transports items.", - "text.astromine.machinery.conveyor.page_two.title": "Recipe", - "text.astromine.machinery.conveyor.page_three.title": "Recipe", - "text.astromine.machinery.conveyor.page_four.title": "Recipe", - "text.astromine.machinery.presser.title": "Presser", - "text.astromine.machinery.presser.page_one.title": "Presser", - "text.astromine.machinery.presser.page_one.text": "A machine which consumes $(thing)energy$() to press $(thing)items$() into useful materials.", - "text.astromine.machinery.presser.page_two.title": "Recipe", - "text.astromine.resources.copper.title": "Copper", - "text.astromine.resources.copper.page_one.title": "Copper", - "text.astromine.resources.copper.page_one.text": "A very common metal with high thermal and electrical conductivity and a distinct orange hue.", - "text.astromine.resources.copper.page_two.title": "Obtaining Copper", - "text.astromine.resources.copper.page_two.text": "$(item)Copper Ore$() can be commonly found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Stone Pickaxe$() (Mining Level 1) or better, and can then be $(thing)smelted$() into a $(item)Copper Ingot$().", - "text.astromine.resources.copper.page_three.title": "Usages", - "text.astromine.resources.copper.page_three.text": "Copper is very useful for basic electronics and tools. When combined with $(item)$(l:resources/tin)Tin$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/bronze)Bronze$().", - "text.astromine.resources.copper.page_four.title": "Statistics", - "text.astromine.resources.copper.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 200$(br)Mining Speed: 4$(br)Attack Damage: 1.5$(br)Enchantability: 10$(p)$(l)Armor$()$(br)Durability Multiplier: 12$(br)Total Defense: 12$(br)Toughness: 0$(br)Enchantability: 15", - "text.astromine.resources.tin.title": "Tin", - "text.astromine.resources.tin.page_one.title": "Tin", - "text.astromine.resources.tin.page_one.text": "A common metal with a silvery sheen and a soft composition.", - "text.astromine.resources.tin.page_two.title": "Obtaining Tin", - "text.astromine.resources.tin.page_two.text": "$(item)Tin Ore$() can be commonly found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Stone Pickaxe$() (Mining Level 1) or better, and can then be $(thing)smelted$() into a $(item)Tin Ingot$().", - "text.astromine.resources.tin.page_three.title": "Usages", - "text.astromine.resources.tin.page_three.text": "Tin is useful for plating to prevent corrosion. When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/bronze)Bronze$().", - "text.astromine.resources.tin.page_four.title": "Statistics", - "text.astromine.resources.tin.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 200$(br)Mining Speed: 5$(br)Attack Damage: 1.0$(br)Enchantability: 10$(p)$(l)Armor$()$(br)Durability Multiplier: 12$(br)Total Defense: 12$(br)Toughness: 0$(br)Enchantability: 15", - "text.astromine.resources.bronze.title": "Bronze", - "text.astromine.resources.bronze.page_one.title": "Bronze", - "text.astromine.resources.bronze.page_one.text": "An alloy of $(item)$(l:resources/copper)Copper$() and $(item)$(l:resources/tin)Tin$(), Bronze manages to be stronger and more durable than either of them.", - "text.astromine.resources.bronze.page_two.title": "Obtaining Bronze", - "text.astromine.resources.bronze.page_two.text": "Bronze can be obtained by combining 3 Copper Ingots and 1 Tin Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 4 $(item)Bronze Ingots$().", - "text.astromine.resources.bronze.page_three.title": "Usages", - "text.astromine.resources.bronze.page_three.text": "Bronze is useful for creating tools, and is also used in construction of more advanced machines.", - "text.astromine.resources.bronze.page_four.title": "Statistics", - "text.astromine.resources.bronze.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 539$(br)Mining Speed: 7$(br)Attack Damage: 2.5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 20$(br)Total Defense: 15$(br)Toughness: 0.7$(br)Enchantability: 18", - "text.astromine.resources.steel.title": "Steel", - "text.astromine.resources.steel.page_one.title": "Steel", - "text.astromine.resources.steel.page_one.text": "An alloy of $(item)Iron$() and $(thing)Carbon$(), Steel is incredibly strong for a metal of terrestrial origin.", - "text.astromine.resources.steel.page_two.title": "Obtaining Steel", - "text.astromine.resources.steel.page_two.text": "Steel can be obtained by combining an Iron Ingot and 2 $(item)Coal Dust$() or $(item)Charcoal Dust$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces a single $(item)Steel Ingot$().", - "text.astromine.resources.steel.page_three.title": "Usages", - "text.astromine.resources.steel.page_three.text": "Steel is useful for creating tools, and is also used in construction of more advanced machines.", - "text.astromine.resources.steel.page_four.title": "Statistics", - "text.astromine.resources.steel.page_four.text": "$(l)Tools$()$(br)Mining Level: 3$(br)Base Durability: 1043$(br)Mining Speed: 7.5$(br)Attack Damage: 3$(br)Enchantability: 24$(p)$(l)Armor$()$(br)Durability Multiplier: 24$(br)Total Defense: 17$(br)Toughness: 0.5$(br)Enchantability: 18", - "text.astromine.resources.silver.title": "Silver", - "text.astromine.resources.silver.page_one.title": "Silver", - "text.astromine.resources.silver.page_one.text": "A metal with high electrical conductivity and a distinct white, lustrous texture.", - "text.astromine.resources.silver.page_two.title": "Obtaining Silver", - "text.astromine.resources.silver.page_two.text": "$(item)Silver Ore$() can be found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Iron Pickaxe$() (Mining Level 2) or better, and can then be $(thing)smelted$() into a $(item)Silver Ingot$().", - "text.astromine.resources.silver.page_three.title": "Usages", - "text.astromine.resources.silver.page_three.text": "Silver is very useful for basic electronics and tools. When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/electrum)Electrum$(). When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/sterling_silver)Sterling Silver$().", - "text.astromine.resources.silver.page_four.title": "Statistics", - "text.astromine.resources.silver.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 462$(br)Mining Speed: 6.5$(br)Attack Damage: 2.0$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 17$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 22", - "text.astromine.resources.electrum.title": "Electrum", - "text.astromine.resources.electrum.page_one.title": "Electrum", - "text.astromine.resources.electrum.page_one.text": "A metal with significant electrical conductivity and golden texture.", - "text.astromine.resources.electrum.page_two.title": "Obtaining Electrum", - "text.astromine.resources.electrum.page_two.text": "Electrum can be obtained by combining 1 Gold Ingot and 1 Silver Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Electrum Ingots$().", - "text.astromine.resources.electrum.page_three.title": "Usages", - "text.astromine.resources.electrum.page_three.text": "Electrum is often used for coins.", - "text.astromine.resources.electrum.page_four.title": "Statistics", - "text.astromine.resources.electrum.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 185$(br)Mining Speed: 11$(br)Attack Damage: 1.0$(br)Enchantability: 21$(p)$(l)Armor$()$(br)Durability Multiplier: 13$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 25", - "text.astromine.resources.fools_gold.title": "Fool's Gold", - "text.astromine.resources.fools_gold.page_one.title": "Fool's Gold", - "text.astromine.resources.fools_gold.page_one.text": "A metal with used to obtain sulfur dioxide, which, due to its golden color, often confuses the unprepared traveller.", - "text.astromine.resources.fools_gold.page_two.title": "Obtaining Fool's Gold", - "text.astromine.resources.fools_gold.page_two.text": "Fool's Gold can be obtained by combining 1 Iron Ingot and 1 Gunpowder in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Fool's Gold Ingots$().", - "text.astromine.resources.fools_gold.page_three.title": "Usages", - "text.astromine.resources.fools_gold.page_three.text": "Fool's Gold is often used for coins.", - "text.astromine.resources.fools_gold.page_four.title": "Statistics", - "text.astromine.resources.fools_gold.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 250$(br)Mining Speed: 6.5$(br)Attack Damage: 2.0$(br)Enchantability: 16$(p)$(l)Armor$()$(br)Durability Multiplier: 15$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 10", - "text.astromine.resources.rose_gold.title": "Rose Gold", - "text.astromine.resources.rose_gold.page_one.title": "Rose Gold", - "text.astromine.resources.rose_gold.page_one.text": "A metal with significant electrical conductivity and rose, pink texture.", - "text.astromine.resources.rose_gold.page_two.title": "Obtaining Rose Gold", - "text.astromine.resources.rose_gold.page_two.text": "Rose Gold can be obtained by combining 1 Gold Ingot and 1 Silver Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Rose Gold Ingots$().", - "text.astromine.resources.rose_gold.page_three.title": "Usages", - "text.astromine.resources.rose_gold.page_three.text": "Rose Gold is often used for coins.", - "text.astromine.resources.rose_gold.page_four.title": "Statistics", - "text.astromine.resources.rose_gold.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 64$(br)Mining Speed: 10$(br)Attack Damage: 0.5$(br)Enchantability: 24$(p)$(l)Armor$()$(br)Durability Multiplier: 9$(br)Total Defense: ?$(br)Toughness: 0.1$(br)Enchantability: 25", - "text.astromine.resources.sterling_silver.title": "Sterling Silver", - "text.astromine.resources.sterling_silver.page_one.title": "Sterling Silver", - "text.astromine.resources.sterling_silver.page_one.text": "A metal with significant electrical conductivity and silvery texture.", - "text.astromine.resources.sterling_silver.page_two.title": "Obtaining Sterling Silver", - "text.astromine.resources.sterling_silver.page_two.text": "Sterling Silver can be obtained by combining 3 Silver Ingots and 1 Copper Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 4 $(item)Sterling Silver Ingots$().", - "text.astromine.resources.sterling_silver.page_three.title": "Usages", - "text.astromine.resources.sterling_silver.page_three.text": "Sterling Silver is often used for tooling.", - "text.astromine.resources.sterling_silver.page_four.title": "Statistics", - "text.astromine.resources.sterling_silver.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 697$(br)Mining Speed: 7$(br)Attack Damage: 2.5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 18$(br)Total Defense: ?$(br)Toughness: 0.1$(br)Enchantability: 23", - "text.astromine.world.ore_clusters.page_two.title": "Processing", - "text.astromine.world.ore_clusters.page_two.text": "Triturating clusters will result in two of their respective $(thing)dusts$().", - "text.autoconfig.astromine/config.text": "Astromine Config", - "item.astromine.redstone_tiny_dust": "Redstone Tiny Dust", - "item.astromine.iron_tiny_dust": "Iron Tiny Dust", - "item.astromine.metite_tiny_dust": "Metite Tiny Dust", - "item.astromine.gold_tiny_dust": "Gold Tiny Dust", - "item.astromine.lapis_tiny_dust": "Lapis Tiny Dust", - "item.astromine.diamond_tiny_dust": "Diamond Tiny Dust", - "item.astromine.emerald_tiny_dust": "Emerald Tiny Dust", - "item.astromine.netherite_tiny_dust": "Netherite Tiny Dust", - "item.astromine.coal_tiny_dust": "Coal Tiny Dust", - "item.astromine.charcoal_tiny_dust": "Charcoal Tiny Dust", - "item.astromine.quartz_tiny_dust": "Quartz Tiny Dust", - "item.astromine.raw_netherite_tiny_dust": "Raw Netherite Tiny Dust", - "item.astromine.asterite_tiny_dust": "Asterite Tiny Dust", - "item.astromine.stellum_tiny_dust": "Stellum Tiny Dust", - "item.astromine.galaxium_tiny_dust": "Galaxium Tiny Dust", - "item.astromine.univite_tiny_dust": "Univite Tiny Dust", - "item.astromine.tin_tiny_dust": "Tin Tiny Dust", - "item.astromine.copper_tiny_dust": "Copper Tiny Dust", - "item.astromine.silver_tiny_dust": "Silver Tiny Dust", - "item.astromine.lead_tiny_dust": "Lead Tiny Dust", - "item.astromine.bronze_tiny_dust": "Bronze Tiny Dust", - "item.astromine.steel_tiny_dust": "Steel Tiny Dust", - "item.astromine.electrum_tiny_dust": "Electrum Tiny Dust", - "item.astromine.rose_gold_tiny_dust": "Rose Gold Tiny Dust", - "item.astromine.sterling_silver_tiny_dust": "Sterling Silver Tiny Dust", - "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", - "entity.astromine.super_space_slime": "Jelanium: Super Space Slime", - "entity.astromine.space_slime": "Space Slime", - "text.astromine.message.holographic_connection_successful": "Succeeded in connecting projector at %s with projector at %s.", - "text.astromine.message.holographic_connection_failed": "Failed to connect projector at %s with projector at %s.", - "text.astromine.message.holographic_connection_clear": "Cleared selected projectors!", - "text.astromine.message.holographic_connector_select": "Selected projector at %s!", - "text.astromine.tooltip.fractional_bar": "%s of %s (%s)", - "text.astromine.tooltip.fractional_value": "%s/%s", - "text.astromine.tooltip.fractional_value_simple": "%s", - "text.astromine.tooltip.energy_value": "%s E", - "text.astromine.tooltip.compound_energy_value": "%s/%s E", - "text.astromine.tooltip.speed": "%sx speed", - "text.astromine.tooltip.cable.speed": "%s E/t", - "text.astromine.fluid": "Fluid", - "text.astromine.energy": "Energy", - "text.astromine.item": "Item", - "text.astromine.base": "Base", - "text.astromine.up": "Up", - "text.astromine.down": "Down", - "text.astromine.left": "Left", - "text.astromine.right": "Right", - "text.astromine.front": "Front", - "text.astromine.back": "Back", - "text.astromine.siding.input": "§bInput", - "text.astromine.siding.output": "§6Output", - "text.astromine.siding.input_output": "§bInput §7/ §6Output", - "text.astromine.siding.none": "§7None", - "text.astromine.siding.disabled": "§7§mDisabled", - "text.astromine.siding.west": "Right", - "text.astromine.siding.east": "Left", - "text.astromine.siding.up": "Top", - "text.astromine.siding.down": "Bottom", - "text.astromine.siding.north": "Front", - "text.astromine.siding.south": "Back", - "item.astromine.primitive_machine_chassis": "Primitive Machine Chassis", - "item.astromine.basic_machine_chassis": "Basic Machine Chassis", - "item.astromine.advanced_machine_chassis": "Advanced Machine Chassis", - "item.astromine.elite_machine_chassis": "Elite Machine Chassis", - "item.astromine.graphite_sheet": "Graphite Sheet", - "item.astromine.gas_canister": "Gas Canister", - "item.astromine.pressurized_gas_canister": "Pressurized Gas Canister", - "item.astromine.basic_battery": "Basic Battery", - "item.astromine.advanced_battery": "Advanced Battery", - "item.astromine.elite_battery": "Elite Battery", - "item.astromine.creative_battery": "Creative Battery", - "item.astromine.fire_extinguisher": "Fire Extinguisher", - "item.astromine.holographic_connector": "Holographic Connector", - "item.astromine.holographic_bridge_projector": "Holographic Bridge Projector", - "itemGroup.astromine.core": "Astromine: Core", - "itemGroup.astromine.discoveries": "Astromine: Discoveries", - "itemGroup.astromine.foundations": "Astromine: Foundations", - "itemGroup.astromine.transportations": "Astromine: Transportations", - "itemGroup.astromine.technologies": "Astromine: Technologies", - "block.astromine.electrolyzer": "Electrolyzer", - "block.astromine.fluid_mixer": "Fluid Mixer", - "block.astromine.creative_capacitor": "Creative Capacitor", - "block.astromine.creative_tank": "Creative Tank", - "block.astromine.creative_buffer": "Creative Buffer", - "block.astromine.basic_buffer": "Basic Buffer", - "block.astromine.advanced_buffer": "Advanced Buffer", - "block.astromine.elite_buffer": "Elite Buffer", - "block.astromine.vent": "Vent", - "block.astromine.primitive_solid_generator": "Primitive Solid Generator", - "block.astromine.basic_solid_generator": "Basic Solid Generator", - "block.astromine.advanced_solid_generator": "Advanced Solid Generator", - "block.astromine.elite_solid_generator": "Elite Solid Generator", - "block.astromine.primitive_liquid_generator": "Primitive Liquid Generator", - "block.astromine.basic_liquid_generator": "Basic Liquid Generator", - "block.astromine.advanced_liquid_generator": "Advanced Liquid Generator", - "block.astromine.elite_liquid_generator": "Elite Liquid Generator", - "block.astromine.primitive_presser": "Primitive Presser", - "block.astromine.basic_presser": "Basic Presser", - "block.astromine.advanced_presser": "Advanced Presser", - "block.astromine.elite_presser": "Elite Presser", - "block.astromine.primitive_triturator": "Primitive Triturator", - "block.astromine.basic_triturator": "Basic Triturator", - "block.astromine.advanced_triturator": "Advanced Triturator", - "block.astromine.elite_triturator": "Elite Triturator", - "block.astromine.primitive_electric_smelter": "Primitive Electric Smelter", - "block.astromine.basic_electric_smelter": "Basic Electric Smelter", - "block.astromine.advanced_electric_smelter": "Advanced Electric Smelter", - "block.astromine.elite_electric_smelter": "Elite Electric Smelter", - "block.astromine.primitive_alloy_smelter": "Primitive Alloy Smelter", - "block.astromine.basic_alloy_smelter": "Basic Alloy Smelter", - "block.astromine.advanced_alloy_smelter": "Advanced Alloy Smelter", - "block.astromine.elite_alloy_smelter": "Elite Alloy Smelter", - "block.astromine.primitive_electrolyzer": "Primitive Electrolyzer", - "block.astromine.basic_electrolyzer": "Basic Electrolyzer", - "block.astromine.advanced_electrolyzer": "Advanced Electrolyzer", - "block.astromine.elite_electrolyzer": "Elite Electrolyzer", - "block.astromine.primitive_fluid_mixer": "Primitive Fluid Mixer", - "block.astromine.basic_fluid_mixer": "Basic Fluid Mixer", - "block.astromine.advanced_fluid_mixer": "Advanced Fluid Mixer", - "block.astromine.elite_fluid_mixer": "Elite Fluid Mixer", - "block.astromine.fluid_cable": "Fluid Cable", - "block.astromine.primitive_energy_cable": "Primitive Energy Cable", - "block.astromine.basic_energy_cable": "Basic Energy Cable", - "block.astromine.advanced_energy_cable": "Advanced Energy Cable", - "block.astromine.elite_energy_cable": "Elite Energy Cable", - "block.astromine.primitive_capacitor": "Primitive Capacitor", - "block.astromine.basic_capacitor": "Basic Capacitor", - "block.astromine.advanced_capacitor": "Advanced Capacitor", - "block.astromine.elite_capacitor": "Elite Capacitor", - "block.astromine.item_displayer": "Item Displayer", - "block.astromine.altar": "Altar", - "item.astromine.tin_wire": "Tin Wire", - "item.astromine.copper_wire": "Copper Wire", - "item.astromine.silver_wire": "Silver Wire", - "item.astromine.lead_wire": "Lead Wire", - "item.astromine.gold_wire": "Gold Wire", - "item.astromine.steel_wire": "Steel Wire", - "item.astromine.electrum_wire": "Electrum Wire", - "block.astromine.tank": "Tank", - "block.astromine.fluid_extractor": "Fluid Extractor", - "block.astromine.fluid_inserter": "Fluid Inserter", - "block.astromine.block_breaker": "Block Breaker", - "block.astromine.block_placer": "Block Placer", - "block.astromine.nuclear_warhead": "Nuclear Warhead", - "block.astromine.holographic_bridge_projector": "Holographic Bridge Projector", - "block.astromine.asteroid_stone": "Asteroid Stone", - "block.astromine.moon_stone": "Moon Stone", - "block.astromine.blazing_asteroid_stone": "Blazing Asteroid Stone", - "block.astromine.meteor_stone": "Meteor Stone", - "block.astromine.tin_ore": "Tin Ore", - "block.astromine.copper_ore": "Copper Ore", - "block.astromine.silver_ore": "Silver Ore", - "block.astromine.lead_ore": "Lead Ore", - "block.astromine.asteroid_metite_ore": "Asteroid Metite Ore", - "block.astromine.meteor_metite_ore": "Meteor Metite Ore", - "block.astromine.asterite_block": "Block of Asterite", - "block.astromine.galaxium_block": "Block of Galaxium", - "block.astromine.metite_block": "Block of Metite", - "block.astromine.stellum_block": "Block of Stellum", - "block.astromine.univite_block": "Block of Univite", - "block.astromine.tin_block": "Block of Tin", - "block.astromine.copper_block": "Block of Copper", - "block.astromine.silver_block": "Block of Silver", - "block.astromine.lead_block": "Block of Lead", - "block.astromine.bronze_block": "Block of Bronze", - "block.astromine.steel_block": "Block of Steel", - "block.astromine.electrum_block": "Block of Electrum", - "block.astromine.rose_gold_block": "Block of Rose Gold", - "block.astromine.sterling_silver_block": "Block of Sterling Silver", - "block.astromine.fools_gold_block": "Block of Fool's Gold", - "block.astromine.asteroid_coal_ore": "Asteroid Coal Ore", - "block.astromine.asteroid_iron_ore": "Asteroid Iron Ore", - "block.astromine.asteroid_gold_ore": "Asteroid Gold Ore", - "block.astromine.asteroid_redstone_ore": "Asteroid Redstone Ore", - "block.astromine.asteroid_lapis_ore": "Asteroid Lapis Ore", - "block.astromine.asteroid_diamond_ore": "Asteroid Diamond Ore", - "block.astromine.asteroid_asterite_ore": "Asteroid Asterite Ore", - "block.astromine.asteroid_stellum_ore": "Asteroid Stellum Ore", - "block.astromine.asteroid_galaxium_ore": "Asteroid Galaxium Ore", - "block.astromine.asteroid_emerald_ore": "Asteroid Emerald Ore", - "block.astromine.asteroid_tin_ore": "Asteroid Tin Ore", - "block.astromine.asteroid_copper_ore": "Asteroid Copper Ore", - "block.astromine.asteroid_silver_ore": "Asteroid Silver Ore", - "block.astromine.asteroid_lead_ore": "Asteroid Lead Ore", - "block.astromine.meteor_stone_slab": "Meteor Stone Slab", - "block.astromine.meteor_stone_stairs": "Meteor Stone Stairs", - "block.astromine.meteor_stone_wall": "Meteor Stone Wall", - "block.astromine.asteroid_stone_slab": "Asteroid Stone Slab", - "block.astromine.asteroid_stone_stairs": "Asteroid Stone Stairs", - "block.astromine.asteroid_stone_wall": "Asteroid Stone Wall", - "block.astromine.moon_stone_slab": "Moon Stone Slab", - "block.astromine.moon_stone_stairs": "Moon Stone Stairs", - "block.astromine.moon_stone_wall": "Moon Stone Wall", - "block.astromine.martian_stone_slab": "Martian Stone Slab", - "block.astromine.martian_stone_stairs": "Martian Stone Stairs", - "block.astromine.martian_stone_wall": "Martian Stone Wall", - "block.astromine.vulcan_stone_slab": "Vulcan Stone Slab", - "block.astromine.vulcan_stone_stairs": "Vulcan Stone Stairs", - "block.astromine.vulcan_stone_wall": "Vulcan Stone Wall", - "block.astromine.martian_soil": "Martian Soil", - "block.astromine.martian_stone": "Martian Stone", - "block.astromine.vulcan_stone": "Vulcan Stone", - "block.astromine.oxygen": "Oxygen", - "block.astromine.alternator": "Alternator", - "block.astromine.splitter": "Splitter", - "block.astromine.incinerator": "Incinerator", - "block.astromine.inserter": "Inserter", - "block.astromine.fast_inserter": "Fast Inserter", - "block.astromine.basic_conveyor": "Basic Conveyor", - "block.astromine.basic_vertical_conveyor": "Basic Vertical Conveyor", - "block.astromine.basic_downward_vertical_conveyor": "Basic Downward Vertical Conveyor", - "block.astromine.advanced_conveyor": "Advanced Conveyor", - "block.astromine.advanced_vertical_conveyor": "Advanced Vertical Conveyor", - "block.astromine.advanced_downward_vertical_conveyor": "Advanced Downward Vertical Conveyor", - "block.astromine.elite_conveyor": "Elite Conveyor", - "block.astromine.elite_vertical_conveyor": "Elite Vertical Conveyor", - "block.astromine.elite_downward_vertical_conveyor": "Elite Downward Vertical Conveyor", - "block.astromine.catwalk": "Catwalk", - "block.astromine.catwalk_stairs": "Catwalk Stairs", - "gas.astromine.oxygen": "Oxygen", - "gas.astromine.rocket_fuel": "Rocket Fuel", - "gas.minecraft.empty": "Vacuum", - "item.astromine.oxygen_bucket": "Liquid Oxygen Bucket", - "item.astromine.hydrogen_bucket": "Liquid Hydrogen Bucket", - "block.astromine.rocket_fuel": "Rocket Fuel", - "item.astromine.energy": "Energy", - "item.astromine.fluid": "Fluid", - "item.astromine.item": "Item", - "item.astromine.rocket_fuel_bucket": "Rocket Fuel Bucket", - "item.astromine.asterite_fragment": "Asterite Fragment", - "item.astromine.meteor_metite_cluster": "Meteor Metite Cluster", - "item.astromine.asteroid_metite_cluster": "Asteroid Metite Cluster", - "item.astromine.asteroid_coal_cluster": "Asteroid Coal Cluster", - "item.astromine.asteroid_iron_cluster": "Asteroid Iron Cluster", - "item.astromine.asteroid_gold_cluster": "Asteroid Gold Cluster", - "item.astromine.asteroid_redstone_cluster": "Asteroid Redstone Cluster", - "item.astromine.asteroid_lapis_cluster": "Asteroid Lapis Cluster", - "item.astromine.asteroid_diamond_cluster": "Asteroid Diamond Cluster", - "item.astromine.asteroid_emerald_cluster": "Asteroid Emerald Cluster", - "item.astromine.asteroid_asterite_cluster": "Asteroid Asterite Cluster", - "item.astromine.asteroid_stellum_cluster": "Asteroid Stellum Cluster", - "item.astromine.asteroid_galaxium_cluster": "Asteroid Galaxium Cluster", - "item.astromine.asteroid_tin_cluster": "Asteroid Tin Cluster", - "item.astromine.asteroid_copper_cluster": "Asteroid Copper Cluster", - "item.astromine.asteroid_silver_cluster": "Asteroid Silver Cluster", - "item.astromine.asteroid_lead_cluster": "Asteroid Lead Cluster", - "item.astromine.iron_dust": "Iron Dust", - "item.astromine.metite_dust": "Metite Dust", - "item.astromine.gold_dust": "Gold Dust", - "item.astromine.lapis_dust": "Lapis Dust", - "item.astromine.diamond_dust": "Diamond Dust", - "item.astromine.emerald_dust": "Emerald Dust", - "item.astromine.netherite_dust": "Netherite Dust", - "item.astromine.coal_dust": "Coal Dust", - "item.astromine.charcoal_dust": "Charcoal Dust", - "item.astromine.quartz_dust": "Quartz Dust", - "item.astromine.raw_netherite_dust": "Raw Netherite Dust", - "item.astromine.asterite_dust": "Asterite Dust", - "item.astromine.stellum_dust": "Stellum Dust", - "item.astromine.galaxium_dust": "Galaxium Dust", - "item.astromine.univite_dust": "Univite Dust", - "item.astromine.tin_dust": "Tin Dust", - "item.astromine.copper_dust": "Copper Dust", - "item.astromine.silver_dust": "Silver Dust", - "item.astromine.lead_dust": "Lead Dust", - "item.astromine.bronze_dust": "Bronze Dust", - "item.astromine.steel_dust": "Steel Dust", - "item.astromine.electrum_dust": "Electrum Dust", - "item.astromine.rose_gold_dust": "Rose Gold Dust", - "item.astromine.sterling_silver_dust": "Sterling Silver Dust", - "item.astromine.fools_gold_dust": "Fool's Gold Dust", - "item.astromine.redstone_tiny_dust": "Redstone Tiny Dust", - "item.astromine.iron_tiny_dust": "Iron Tiny Dust", - "item.astromine.metite_tiny_dust": "Metite Tiny Dust", - "item.astromine.gold_tiny_dust": "Gold Tiny Dust", - "item.astromine.lapis_tiny_dust": "Lapis Tiny Dust", - "item.astromine.diamond_tiny_dust": "Diamond Tiny Dust", - "item.astromine.emerald_tiny_dust": "Emerald Tiny Dust", - "item.astromine.netherite_tiny_dust": "Netherite Tiny Dust", - "item.astromine.coal_tiny_dust": "Coal Tiny Dust", - "item.astromine.charcoal_tiny_dust": "Charcoal Tiny Dust", - "item.astromine.quartz_tiny_dust": "Quartz Tiny Dust", - "item.astromine.raw_netherite_tiny_dust": "Raw Netherite Tiny Dust", - "item.astromine.asterite_tiny_dust": "Asterite Tiny Dust", - "item.astromine.stellum_tiny_dust": "Stellum Tiny Dust", - "item.astromine.galaxium_tiny_dust": "Galaxium Tiny Dust", - "item.astromine.univite_tiny_dust": "Univite Tiny Dust", - "item.astromine.tin_tiny_dust": "Tin Tiny Dust", - "item.astromine.copper_tiny_dust": "Copper Tiny Dust", - "item.astromine.silver_tiny_dust": "Silver Tiny Dust", - "item.astromine.lead_tiny_dust": "Lead Tiny Dust", - "item.astromine.bronze_tiny_dust": "Bronze Tiny Dust", - "item.astromine.steel_tiny_dust": "Steel Tiny Dust", - "item.astromine.electrum_tiny_dust": "Electrum Tiny Dust", - "item.astromine.rose_gold_tiny_dust": "Rose Gold Tiny Dust", - "item.astromine.sterling_silver_tiny_dust": "Sterling Silver Tiny Dust", - "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", - "item.astromine.iron_plates": "Iron Plates", - "item.astromine.metite_plates": "Metite Plates", - "item.astromine.gold_plates": "Gold Plates", - "item.astromine.netherite_plates": "Netherite Plates", - "item.astromine.stellum_plates": "Stellum Plates", - "item.astromine.univite_plates": "Univite Plates", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.iron_gear": "Iron Gear", - "item.astromine.metite_gear": "Metite Gear", - "item.astromine.gold_gear": "Gold Gear", - "item.astromine.netherite_gear": "Netherite Gear", - "item.astromine.stellum_gear": "Stellum Gear", - "item.astromine.univite_gear": "Univite Gear", - "item.astromine.tin_gear": "Tin Gear", - "item.astromine.copper_gear": "Copper Gear", - "item.astromine.silver_gear": "Silver Gear", - "item.astromine.lead_gear": "Lead Gear", - "item.astromine.bronze_gear": "Bronze Gear", - "item.astromine.steel_gear": "Steel Gear", - "item.astromine.electrum_gear": "Electrum Gear", - "item.astromine.rose_gold_gear": "Rose Gold Gear", - "item.astromine.sterling_silver_gear": "Sterling Silver Gear", - "item.astromine.fools_gold_gear": "Fool's Gold Gear", - "item.astromine.basic_circuit": "Basic Circuit", - "item.astromine.advanced_circuit": "Advanced Circuit", - "item.astromine.elite_circuit": "Elite Circuit", - "item.astromine.metite_ingot": "Metite Ingot", - "item.astromine.stellum_ingot": "Stellum Ingot", - "item.astromine.tin_ingot": "Tin Ingot", - "item.astromine.copper_ingot": "Copper Ingot", - "item.astromine.silver_ingot": "Silver Ingot", - "item.astromine.lead_ingot": "Lead Ingot", - "item.astromine.bronze_ingot": "Bronze Ingot", - "item.astromine.steel_ingot": "Steel Ingot", - "item.astromine.electrum_ingot": "Electrum Ingot", - "item.astromine.rose_gold_ingot": "Rose Gold Ingot", - "item.astromine.sterling_silver_ingot": "Sterling Silver Ingot", - "item.astromine.fools_gold_ingot": "Fool's Gold Ingot", - "item.astromine.galaxium_fragment": "Galaxium Fragment", - "item.astromine.diamond_fragment": "Diamond Fragment", - "item.astromine.emerald_fragment": "Emerald Fragment", - "item.astromine.quartz_fragment": "Quartz Fragment", - "item.astromine.raw_netherite_fragment": "Raw Netherite Fragment", - "item.astromine.asterite": "Asterite", - "item.astromine.galaxium": "Galaxium", - "item.astromine.metite_nugget": "Metite Nugget", - "item.astromine.stellum_nugget": "Stellum Nugget", - "item.astromine.univite_nugget": "Univite Nugget", - "item.astromine.netherite_nugget": "Netherite Nugget", - "item.astromine.tin_nugget": "Tin Nugget", - "item.astromine.copper_nugget": "Copper Nugget", - "item.astromine.silver_nugget": "Silver Nugget", - "item.astromine.lead_nugget": "Lead Nugget", - "item.astromine.bronze_nugget": "Bronze Nugget", - "item.astromine.steel_nugget": "Steel Nugget", - "item.astromine.electrum_nugget": "Electrum Nugget", - "item.astromine.rose_gold_nugget": "Rose Gold Nugget", - "item.astromine.sterling_silver_nugget": "Sterling Silver Nugget", - "item.astromine.fools_gold_nugget": "Fool's Gold Nugget", - "item.astromine.univite_ingot": "Univite Ingot", - "item.astromine.basic_drill": "Basic Drill", - "item.astromine.advanced_drill": "Advanced Drill", - "item.astromine.elite_drill": "Elite Drill", - "item.astromine.tin_pickaxe": "Tin Pickaxe", - "item.astromine.tin_axe": "Tin Axe", - "item.astromine.tin_shovel": "Tin Shovel", - "item.astromine.tin_hoe": "Tin Hoe", - "item.astromine.tin_sword": "Tin Sword", - "item.astromine.tin_mattock": "Tin Mattock", - "item.astromine.tin_mining_tool": "Tin Mining Tool", - "item.astromine.tin_hammer": "Tin Hammer", - "item.astromine.tin_excavator": "Tin Excavator", - "item.astromine.copper_pickaxe": "Copper Pickaxe", - "item.astromine.copper_axe": "Copper Axe", - "item.astromine.copper_shovel": "Copper Shovel", - "item.astromine.copper_hoe": "Copper Hoe", - "item.astromine.copper_sword": "Copper Sword", - "item.astromine.copper_mattock": "Copper Mattock", - "item.astromine.copper_mining_tool": "Copper Mining Tool", - "item.astromine.copper_hammer": "Copper Hammer", - "item.astromine.copper_excavator": "Copper Excavator", - "item.astromine.silver_pickaxe": "Silver Pickaxe", - "item.astromine.silver_axe": "Silver Axe", - "item.astromine.silver_shovel": "Silver Shovel", - "item.astromine.silver_hoe": "Silver Hoe", - "item.astromine.silver_sword": "Silver Sword", - "item.astromine.silver_mattock": "Silver Mattock", - "item.astromine.silver_mining_tool": "Silver Mining Tool", - "item.astromine.silver_hammer": "Silver Hammer", - "item.astromine.silver_excavator": "Silver Excavator", - "item.astromine.lead_pickaxe": "Lead Pickaxe", - "item.astromine.lead_axe": "Lead Axe", - "item.astromine.lead_shovel": "Lead Shovel", - "item.astromine.lead_hoe": "Lead Hoe", - "item.astromine.lead_sword": "Lead Sword", - "item.astromine.lead_mattock": "Lead Mattock", - "item.astromine.lead_mining_tool": "Lead Mining Tool", - "item.astromine.lead_hammer": "Lead Hammer", - "item.astromine.lead_excavator": "Lead Excavator", - "item.astromine.bronze_pickaxe": "Bronze Pickaxe", - "item.astromine.bronze_axe": "Bronze Axe", - "item.astromine.bronze_shovel": "Bronze Shovel", - "item.astromine.bronze_hoe": "Bronze Hoe", - "item.astromine.bronze_sword": "Bronze Sword", - "item.astromine.bronze_mattock": "Bronze Mattock", - "item.astromine.bronze_mining_tool": "Bronze Mining Tool", - "item.astromine.bronze_hammer": "Bronze Hammer", - "item.astromine.bronze_excavator": "Bronze Excavator", - "item.astromine.steel_pickaxe": "Steel Pickaxe", - "item.astromine.steel_axe": "Steel Axe", - "item.astromine.steel_shovel": "Steel Shovel", - "item.astromine.steel_hoe": "Steel Hoe", - "item.astromine.steel_sword": "Steel Sword", - "item.astromine.steel_mattock": "Steel Mattock", - "item.astromine.steel_mining_tool": "Steel Mining Tool", - "item.astromine.steel_hammer": "Steel Hammer", - "item.astromine.steel_excavator": "Steel Excavator", - "item.astromine.electrum_pickaxe": "Electrum Pickaxe", - "item.astromine.electrum_axe": "Electrum Axe", - "item.astromine.electrum_shovel": "Electrum Shovel", - "item.astromine.electrum_hoe": "Electrum Hoe", - "item.astromine.electrum_sword": "Electrum Sword", - "item.astromine.electrum_mattock": "Electrum Mattock", - "item.astromine.electrum_mining_tool": "Electrum Mining Tool", - "item.astromine.electrum_hammer": "Electrum Hammer", - "item.astromine.electrum_excavator": "Electrum Excavator", - "item.astromine.rose_gold_pickaxe": "Rose Gold Pickaxe", - "item.astromine.rose_gold_axe": "Rose Gold Axe", - "item.astromine.rose_gold_shovel": "Rose Gold Shovel", - "item.astromine.rose_gold_hoe": "Rose Gold Hoe", - "item.astromine.rose_gold_sword": "Rose Gold Sword", - "item.astromine.rose_gold_mattock": "Rose Gold Mattock", - "item.astromine.rose_gold_mining_tool": "Rose Gold Mining Tool", - "item.astromine.rose_gold_hammer": "Rose Gold Hammer", - "item.astromine.rose_gold_excavator": "Rose Gold Excavator", - "item.astromine.sterling_silver_pickaxe": "Sterling Silver Pickaxe", - "item.astromine.sterling_silver_axe": "Sterling Silver Silverver Axe", - "item.astromine.sterling_silver_shovel": "Sterling Silver Shovel", - "item.astromine.sterling_silver_hoe": "Sterling Silver Hoe", - "item.astromine.sterling_silver_sword": "Sterling Silver Sword", - "item.astromine.sterling_silver_mattock": "Sterling Silver Mattock", - "item.astromine.sterling_silver_mining_tool": "Sterling Silver Mining Tool", - "item.astromine.sterling_silver_hammer": "Sterling Silver Hammer", - "item.astromine.sterling_silver_excavator": "Sterling Silver Excavator", - "item.astromine.fools_gold_pickaxe": "Fool's Gold Pickaxe", - "item.astromine.fools_gold_axe": "Fool's Gold Axe", - "item.astromine.fools_gold_shovel": "Fool's Gold Shovel", - "item.astromine.fools_gold_hoe": "Fool's Gold Hoe", - "item.astromine.fools_gold_sword": "Fool's Gold Sword", - "item.astromine.fools_gold_mattock": "Fool's Gold Mattock", - "item.astromine.fools_gold_mining_tool": "Fool's Gold Mining Tool", - "item.astromine.fools_gold_hammer": "Fool's Gold Hammer", - "item.astromine.fools_gold_excavator": "Fool's Gold Excavator", - "item.astromine.metite_pickaxe": "Metite Pickaxe", - "item.astromine.metite_axe": "Metite Axe", - "item.astromine.metite_shovel": "Metite Shovel", - "item.astromine.metite_hoe": "Metite Hoe", - "item.astromine.metite_sword": "Metite Sword", - "item.astromine.metite_mattock": "Metite Mattock", - "item.astromine.metite_mining_tool": "Metite Mining Tool", - "item.astromine.metite_hammer": "Metite Hammer", - "item.astromine.metite_excavator": "Metite Excavator", - "item.astromine.asterite_pickaxe": "Asterite Pickaxe", - "item.astromine.asterite_axe": "Asterite Axe", - "item.astromine.asterite_shovel": "Asterite Shovel", - "item.astromine.asterite_hoe": "Asterite Hoe", - "item.astromine.asterite_sword": "Asterite Sword", - "item.astromine.asterite_mattock": "Asterite Mattock", - "item.astromine.asterite_mining_tool": "Asterite Mining Tool", - "item.astromine.asterite_hammer": "Asterite Hammer", - "item.astromine.asterite_excavator": "Asterite Excavator", - "item.astromine.stellum_pickaxe": "Stellum Pickaxe", - "item.astromine.stellum_axe": "Stellum Axe", - "item.astromine.stellum_shovel": "Stellum Shovel", - "item.astromine.stellum_hoe": "Stellum Hoe", - "item.astromine.stellum_sword": "Stellum Sword", - "item.astromine.stellum_mattock": "Stellum Mattock", - "item.astromine.stellum_mining_tool": "Stellum Mining Tool", - "item.astromine.stellum_hammer": "Stellum Hammer", - "item.astromine.stellum_excavator": "Stellum Excavator", - "item.astromine.galaxium_pickaxe": "Galaxium Pickaxe", - "item.astromine.galaxium_axe": "Galaxium Axe", - "item.astromine.galaxium_shovel": "Galaxium Shovel", - "item.astromine.galaxium_hoe": "Galaxium Hoe", - "item.astromine.galaxium_sword": "Galaxium Sword", - "item.astromine.galaxium_mattock": "Galaxium Mattock", - "item.astromine.galaxium_mining_tool": "Galaxium Mining Tool", - "item.astromine.galaxium_hammer": "Galaxium Hammer", - "item.astromine.galaxium_excavator": "Galaxium Excavator", - "item.astromine.univite_pickaxe": "Univite Pickaxe", - "item.astromine.univite_axe": "Univite Axe", - "item.astromine.univite_shovel": "Univite Shovel", - "item.astromine.univite_hoe": "Univite Hoe", - "item.astromine.univite_sword": "Univite Sword", - "item.astromine.univite_mattock": "Univite Mattock", - "item.astromine.univite_mining_tool": "Univite Mining Tool", - "item.astromine.univite_hammer": "Univite Hammer", - "item.astromine.univite_excavator": "Univite Excavator", - "item.astromine.wooden_mattock": "Wooden Mattock", - "item.astromine.wooden_mining_tool": "Wooden Mining Tool", - "item.astromine.stone_mattock": "Stone Mattock", - "item.astromine.stone_mining_tool": "Stone Mining Tool", - "item.astromine.iron_mattock": "Iron Mattock", - "item.astromine.iron_mining_tool": "Iron Mining Tool", - "item.astromine.golden_mattock": "Golden Mattock", - "item.astromine.golden_mining_tool": "Golden Mining Tool", - "item.astromine.diamond_mattock": "Diamond Mattock", - "item.astromine.diamond_mining_tool": "Diamond Mining Tool", - "item.astromine.netherite_mattock": "Netherite Mattock", - "item.astromine.netherite_mining_tool": "Netherite Mining Tool", - "item.astromine.tin_helmet": "Tin Helmet", - "item.astromine.tin_chestplate": "Tin Chestplate", - "item.astromine.tin_leggings": "Tin Leggings", - "item.astromine.tin_boots": "Tin Boots", - "item.astromine.copper_helmet": "Copper Helmet", - "item.astromine.copper_chestplate": "Copper Chestplate", - "item.astromine.copper_leggings": "Copper Leggings", - "item.astromine.copper_boots": "Copper Boots", - "item.astromine.silver_helmet": "Silver Helmet", - "item.astromine.silver_chestplate": "Silver Chestplate", - "item.astromine.silver_leggings": "Silver Leggings", - "item.astromine.silver_boots": "Silver Boots", - "item.astromine.lead_helmet": "Lead Helmet", - "item.astromine.lead_chestplate": "Lead Chestplate", - "item.astromine.lead_leggings": "Lead Leggings", - "item.astromine.lead_boots": "Lead Boots", - "item.astromine.bronze_helmet": "Bronze Helmet", - "item.astromine.bronze_chestplate": "Bronze Chestplate", - "item.astromine.bronze_leggings": "Bronze Leggings", - "item.astromine.bronze_boots": "Bronze Boots", - "item.astromine.steel_helmet": "Steel Helmet", - "item.astromine.steel_chestplate": "Steel Chestplate", - "item.astromine.steel_leggings": "Steel Leggings", - "item.astromine.steel_boots": "Steel Boots", - "item.astromine.electrum_helmet": "Electrum Helmet", - "item.astromine.electrum_chestplate": "Electrum Chestplate", - "item.astromine.electrum_leggings": "Electrum Leggings", - "item.astromine.electrum_boots": "Electrum Boots", - "item.astromine.rose_gold_helmet": "Rose Gold Helmet", - "item.astromine.rose_gold_chestplate": "Rose Gold Chestplate", - "item.astromine.rose_gold_leggings": "Rose Gold Leggings", - "item.astromine.rose_gold_boots": "Rose Gold Boots", - "item.astromine.sterling_silver_helmet": "Sterling Silver Helmet", - "item.astromine.sterling_silver_chestplate": "Sterling Silver Chestplate", - "item.astromine.sterling_silver_leggings": "Sterling Silver Leggings", - "item.astromine.sterling_silver_boots": "Sterling Silver Boots", - "item.astromine.fools_gold_helmet": "Fool's Gold Helmet", - "item.astromine.fools_gold_chestplate": "Fool's Gold Chestplate", - "item.astromine.fools_gold_leggings": "Fool's Gold Leggings", - "item.astromine.fools_gold_boots": "Fool's Gold Boots", - "item.astromine.metite_helmet": "Metite Helmet", - "item.astromine.metite_chestplate": "Metite Chestplate", - "item.astromine.metite_leggings": "Metite Leggings", - "item.astromine.metite_boots": "Metite Boots", - "item.astromine.asterite_helmet": "Asterite Helmet", - "item.astromine.asterite_chestplate": "Asterite Chestplate", - "item.astromine.asterite_leggings": "Asterite Leggings", - "item.astromine.asterite_boots": "Asterite Boots", - "item.astromine.stellum_helmet": "Stellum Helmet", - "item.astromine.stellum_chestplate": "Stellum Chestplate", - "item.astromine.stellum_leggings": "Stellum Leggings", - "item.astromine.stellum_boots": "Stellum Boots", - "item.astromine.galaxium_helmet": "Galaxium Helmet", - "item.astromine.galaxium_chestplate": "Galaxium Chestplate", - "item.astromine.galaxium_leggings": "Galaxium Leggings", - "item.astromine.galaxium_boots": "Galaxium Boots", - "item.astromine.univite_helmet": "Univite Helmet", - "item.astromine.univite_chestplate": "Univite Chestplate", - "item.astromine.univite_leggings": "Univite Leggings", - "item.astromine.univite_boots": "Univite Boots", - "item.astromine.space_suit_helmet": "Space Suit Helmet", - "item.astromine.space_suit_chestplate": "Space Suit Chest", - "item.astromine.space_suit_leggings": "Space Suit Pants", - "item.astromine.space_suit_boots": "Space Suit Boots", - "item.astromine.space_slime_spawn_egg": "Space Slime Spawn Egg", - "item.astromine.super_space_slime_shooter": "Super Space Slime Shooter", - "item.astromine.space_slime_ball": "Space Slimeball", - "item.astromine.manual": "Astromine Manual", - "item.astromine.yeast": "Yeast", - "item.astromine.rocket": "Rocket", - "item.astromine.bronze_wrench": "Bronze Wrench", - "item.astromine.gravity_gauntlet": "Gravity Gauntlet", - "item.minecraft.potion.effect.rocket_fuel": "Rocket Fuel Bottle", - "item.minecraft.splash_potion.effect.rocket_fuel": "Splash Rocket Fuel Bottle", - "item.minecraft.lingering_potion.effect.rocket_fuel": "Lingering Rocket Fuel Bottle", - "item.minecraft.tipped_arrow.effect.rocket_fuel": "Arrow of Rocket Fuel", - "item.minecraft.potion.effect.sugar_water": "Sugar Water Bottle", - "item.minecraft.splash_potion.effect.sugar_water": "Splash Sugar Water Bottle", - "item.minecraft.lingering_potion.effect.sugar_water": "Lingering Sugar Water Bottle", - "item.minecraft.tipped_arrow.effect.sugar_water": "Arrow of Sugar Water", - "potion.potency.10": "X", - "subtitles.astromine.humming": "Humming", - "subtitles.astromine.holographic_connector_click": "Holographic Connector clicks", - "subtitles.astromine.fire_extinguisher_open": "Fire Extinguisher opens", - "subtitles.astromine.gunshot": "Gunshot", - "subtitles.astromine.empty_magazine": "Magazine is empty", - "text.astromine.manual.landing": "Your guide to the stars!", - "category.astromine.liquid_generating": "Liquid Generating", - "category.astromine.solid_generating": "Solid Generating", - "category.astromine.electric_smelting": "Electric Smelting", - "category.astromine.alloy_smelting": "Alloy Smelting", - "category.astromine.pressing": "Pressing", - "category.astromine.triturating": "Triturating", - "category.astromine.fluid_mixing": "Fluid Mixing", - "category.astromine.electrolyzing": "Electrolyzing", - "category.astromine.infusing": "Infusing", - "category.astromine.cooking.time": "%s sec", - "category.astromine.cooking.energy": "%s energy", - "category.astromine.generating.energy": "%s generated/tick", - "category.astromine.consuming.energy": "%s consumed", - "category.astromine.fluid.generating.consumed": "%s (%s) consumed/tick", - "category.astromine.fluid.generating.generated": "%s (%s) generated/tick", - "text.astromine.manual.obtain.info": "The Astromine Manual can be obtained by right clicking a Metite Axe on a Bookshelf.", - "text.astromine.selected.dimension.pos": "Selected %s (%d, %d, %d)", - "text.astromine.patchouli.astronautics.title": "Astronautics", - "text.astromine.patchouli.astronautics.description": "From where one dreams, to where their dreams come true.", - "text.astromine.patchouli.components.title": "Components", - "text.astromine.patchouli.components.description": "Components for crafting items to aid one in their journey.", - "text.astromine.patchouli.creatures.title": "Creatures", - "text.astromine.patchouli.creatures.description": "Those beyond our wildest realm of imagination.", - "text.astromine.patchouli.gadgets.title": "Gadgets", - "text.astromine.patchouli.gadgets.description": "One's physical assistance in their journey.", - "text.astromine.patchouli.machinery.title": "Machinery", - "text.astromine.patchouli.machinery.description": "What moves one's world.", - "text.astromine.patchouli.resources.title": "Resources", - "text.astromine.patchouli.resources.description": "The exquisite materials that one channels for power.", - "text.astromine.patchouli.warfare.title": "Warfare", - "text.astromine.patchouli.warfare.description": "What one uses to wipe away their foe.", - "text.astromine.patchouli.world.title": "World", - "text.astromine.patchouli.world.description": "What surrounds one.", - "text.astromine.astronautics.space_suit.title": "Space Suit", - "text.astromine.astronautics.space_suit.page_one.title": "Space Suit", - "text.astromine.astronautics.space_suit.page_one.text": "Vital for survival in hostile environments, a Space Suit is the most important thing one may carry. $(p)With internal tanks which may be pressurized in certain machines, it may be filled with (un-)breathable gases fit for whoever is wearing it.", - "text.astromine.astronautics.rocket.title": "Rocket", - "text.astromine.astronautics.rocket.page_one.title": "Rocket", - "text.astromine.astronautics.rocket.page_one.text": "Your ticket to the final frontier.", - "text.astromine.astronautics.rocket.page_two.title": "Crafting and Notes", - "text.astromine.astronautics.rocket.page_two.text": "Right click with a $(item)Flint and Steel$() to launch. Right click with a $(item)Stick$() to destroy. These are both temporary measures.", - "text.astromine.components.circuits.title": "Circuits", - "text.astromine.components.circuits.page_one.title": "Basic Circuit", - "text.astromine.components.circuits.page_one.text": "A basic electric circuit board, built for general systems with no special requirements, whose architecture is based on graphene.", - "text.astromine.components.circuits.page_two.title": "Basic Circuit Recipe", - "text.astromine.components.circuits.page_three.title": "Advanced Circuit", - "text.astromine.components.circuits.page_three.text": "A more advanced electric circuit board, built for systems with low latency in mind, whose architecture is based on graphene.", - "text.astromine.components.circuits.page_four.title": "Advanced Circuit Recipe", - "text.astromine.components.circuits.page_five.title": "Elite Circuit", - "text.astromine.components.circuits.page_five.text": "An elite electric circuit board, built for systems with high throughput and low latency in mind, whose architecture makes use of coveted, laboratory-made materials.", - "text.astromine.components.circuits.page_six.title": "Elite Circuit Recipe", - "text.astromine.components.gears.title": "Gears", - "text.astromine.components.gears.page_one.title": "Gears", - "text.astromine.components.gears.page_one.text": "A small wheel with teeth, gears interlocked with one another can turn to achieve any number of things.$(p)As such, they will have great use in constructing useful $(thing)machines$().", - "text.astromine.components.gears.page_two.title": "Recipe", - "text.astromine.components.gears.page_two.text": "While the recipe shown is clearly for an $(item)Iron Gear$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create a gear of that type.", - "text.astromine.components.plates.title": "Plates", - "text.astromine.components.plates.page_one.title": "Plates", - "text.astromine.components.plates.page_one.text": "Thin sheets of metal, plates are useful for constructing $(thing)housing$() for $(thing)machinery$().", - "text.astromine.components.plates.page_two.title": "Recipe", - "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for $(item)Iron Plates$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create plates of that type.", - "text.astromine.creatures.space_slime.title": "Space Slime", - "text.astromine.creatures.space_slime.page_one.title": "Space Slime", - "text.astromine.creatures.space_slime.page_one.text": "A fierce adversary which inhabits large sections of traversable space.", - "text.astromine.creatures.space_slime.page_two.title": "Drops", - "text.astromine.creatures.space_slime.page_two.text": "Upon defeat, a $(thing)Space Slime$() will drop $(thing)Space Slime Balls$().", - "text.astromine.gadgets.fire_extinguisher.title": "Fire Extinguisher", - "text.astromine.gadgets.fire_extinguisher.page_one.title": "Fire Extinguisher", - "text.astromine.gadgets.fire_extinguisher.page_one.text": "An important tool in one's space journeys, it is responsible for providing maneuverable thrust.$(p)Surprisingly, it can also extinguish fire.", - "text.astromine.gadgets.fire_extinguisher.page_two.title": "Recipe", - "text.astromine.gadgets.gravity_gauntlet.title": "Gravity Gauntlets", - "text.astromine.gadgets.gravity_gauntlet.page_one.title": "Gravity Gauntlets", - "text.astromine.gadgets.gravity_gauntlet.page_one.text": "Gauntlets which can repel opponents. One must be worn on each hand, and they must be charged before they can activate$(p)Charging is done by holding right click with one in each hand, and takes energy.", - "text.astromine.gadgets.gravity_gauntlet.page_two.title": "Recipe", - "text.astromine.machinery.holographic_bridge_projector.title": "Holographic Bridge Projector", - "text.astromine.machinery.holographic_bridge_projector.page_one.title": "Holographic Bridge Projector", - "text.astromine.machinery.holographic_bridge_projector.page_one.text": "A machine which generates a holographic bridge between it and another one of its kind; linkable with a $(item)$(l:gadgets/holographic_connector)Holographic Connector$().", - "text.astromine.machinery.holographic_bridge_projector.page_two.title": "Recipe", - "text.astromine.gadgets.holographic_connector.title": "Holographic Connector", - "text.astromine.gadgets.holographic_connector.page_one.title": "Holographic Connector", - "text.astromine.gadgets.holographic_connector.page_one.text": "A remote controller which allows you to link together $(item)$(l:machinery/holographic_bridge_projector)Holographic Bridge Projectors$(). They must be facing each other in the same line, but can have different heights.", - "text.astromine.gadgets.holographic_connector.page_two.title": "Recipe", - "text.astromine.machinery.creative_buffer.title": "Creative Buffer", - "text.astromine.machinery.creative_buffer.page_one.title": "Creative Buffer", - "text.astromine.machinery.creative_buffer.page_one.text": "A machine which produces a specified $(thing)item$() infinitely.", - "text.astromine.machinery.creative_capacitor.title": "Creative Capacitor", - "text.astromine.machinery.creative_capacitor.page_one.title": "Creative Capacitor", - "text.astromine.machinery.creative_capacitor.page_one.text": "A machine which produces $(thing)energy$() infinitely.", - "text.astromine.machinery.creative_tank.title": "Creative Tank", - "text.astromine.machinery.creative_tank.page_one.title": "Creative Tank", - "text.astromine.machinery.creative_tank.page_one.text": "A machine which produces a specified $(thing)fluid$() infinitely.", - "text.astromine.machinery.electric_smelter.title": "Electric Smelter", - "text.astromine.machinery.electric_smelter.page_one.title": "Electric Smelter", - "text.astromine.machinery.electric_smelter.page_one.text": "A machine which consumes $(thing)energy$() to smelt $(thing)items$() into useful materials.", - "text.astromine.machinery.electric_smelter.page_two.title": "Recipe", - "text.astromine.machinery.electrolyzer.title": "Electrolyzer", - "text.astromine.machinery.electrolyzer.page_one.title": "Electrolyzer", - "text.astromine.machinery.electrolyzer.page_one.text": "A machine which consumes $(thing)energy$() to electrolyze $(thing)fluids$() into useful materials.", - "text.astromine.machinery.electrolyzer.page_two.title": "Recipe", - "text.astromine.machinery.energy_cable.title": "Energy Cable", - "text.astromine.machinery.energy_cable.page_one.title": "Energy Cable", - "text.astromine.machinery.energy_cable.page_one.text": "A cable which transports $(thing)energy$(); no buffering or path-finding involved.", - "text.astromine.machinery.energy_cable.page_two.title": "Recipe", - "text.astromine.machinery.fluid_cable.title": "Fluid Cable", - "text.astromine.machinery.fluid_cable.page_one.title": "Fluid Cable", - "text.astromine.machinery.fluid_cable.page_one.text": "A cable which transports $(thing)fluids$(); no buffering or path-finding involved.", - "text.astromine.machinery.fluid_cable.page_two.title": "Recipe", - "text.astromine.machinery.fluid_extractor.title": "Fluid Extractor", - "text.astromine.machinery.fluid_extractor.page_one.title": "Fluid Extractor", - "text.astromine.machinery.fluid_extractor.page_one.text": "A machine which consumes $(thing)energy$() to pick up $(thing)fluids$() from the world.", - "text.astromine.machinery.fluid_extractor.page_two.title": "Recipe", - "text.astromine.machinery.fluid_inserter.title": "Fluid Inserter", - "text.astromine.machinery.fluid_inserter.page_one.title": "Fluid Inserter", - "text.astromine.machinery.fluid_inserter.page_one.text": "A machine which consumes $(thing)energy$() to place $(thing)fluids$() in the world.", - "text.astromine.machinery.fluid_inserter.page_two.title": "Recipe", - "text.astromine.machinery.fluid_mixer.title": "Fuel Mixer", - "text.astromine.machinery.fluid_mixer.page_one.title": "Fuel Mixer", - "text.astromine.machinery.fluid_mixer.page_one.text": "A machine which consumes $(thing)energy$() to mix $(thing)fluids$() into useful materials.", - "text.astromine.machinery.fluid_mixer.page_two.title": "Recipe", - "text.astromine.machinery.block_breaker.title": "Block Breaker", - "text.astromine.machinery.block_breaker.page_one.title": "Block Breaker", - "text.astromine.machinery.block_breaker.page_one.text": "A machine which consumes $(thing)energy$() to break and pick up $(thing)blocks$() from the world.", - "text.astromine.machinery.block_breaker.page_two.title": "Recipe", - "text.astromine.machinery.block_placer.title": "Block Placer", - "text.astromine.machinery.block_placer.page_one.title": "Block Placer", - "text.astromine.machinery.block_placer.page_one.text": "A machine which consumes $(thing)energy$() to place $(thing)blocks$() in the world.", - "text.astromine.machinery.block_placer.page_two.title": "Recipe", - "text.astromine.machinery.inserter.title": "Inserter", - "text.astromine.machinery.inserter.page_one.title": "Inserter", - "text.astromine.machinery.inserter.page_one.text": "A machine which picks up items from its front and places them at its back, for item transportation.", - "text.astromine.machinery.inserter.page_two.title": "Recipe", - "text.astromine.machinery.inserter.page_three.title": "Recipe", - "text.astromine.machinery.conveyor.title": "Conveyor", - "text.astromine.machinery.conveyor.page_one.title": "Conveyor", - "text.astromine.machinery.conveyor.page_one.text": "A machine which transports items.", - "text.astromine.machinery.conveyor.page_two.title": "Recipe", - "text.astromine.machinery.conveyor.page_three.title": "Recipe", - "text.astromine.machinery.conveyor.page_four.title": "Recipe", - "text.astromine.machinery.triturator.title": "Triturator", - "text.astromine.machinery.triturator.page_one.title": "Triturator", - "text.astromine.machinery.triturator.page_one.text": "A machine which consumes $(thing)energy$() to pulverize $(thing)items$() into useful materials.", - "text.astromine.machinery.triturator.page_two.title": "Recipe", - "text.astromine.machinery.presser.title": "Presser", - "text.astromine.machinery.presser.page_one.title": "Presser", - "text.astromine.machinery.presser.page_one.text": "A machine which consumes $(thing)energy$() to press $(thing)items$() into useful materials.", - "text.astromine.machinery.presser.page_two.title": "Recipe", - "text.astromine.machinery.vent.title": "Vent", - "text.astromine.machinery.vent.page_one.title": "Vent", - "text.astromine.machinery.vent.page_one.text": "A machine which consumes energy to ventilate fluids into the atmosphere.", - "text.astromine.machinery.vent.page_two.title": "Recipe", - "text.astromine.resources.copper.title": "Copper", - "text.astromine.resources.copper.page_one.title": "Copper", - "text.astromine.resources.copper.page_one.text": "A very common metal with high thermal and electrical conductivity and a distinct orange hue.", - "text.astromine.resources.copper.page_two.title": "Obtaining Copper", - "text.astromine.resources.copper.page_two.text": "$(item)Copper Ore$() can be commonly found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Stone Pickaxe$() (Mining Level 1) or better, and can then be $(thing)smelted$() into a $(item)Copper Ingot$().", - "text.astromine.resources.copper.page_three.title": "Usages", - "text.astromine.resources.copper.page_three.text": "Copper is very useful for basic electronics and tools. When combined with $(item)$(l:resources/tin)Tin$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/bronze)Bronze$().", - "text.astromine.resources.copper.page_four.title": "Statistics", - "text.astromine.resources.copper.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 200$(br)Mining Speed: 4$(br)Attack Damage: 1.5$(br)Enchantability: 10$(p)$(l)Armor$()$(br)Durability Multiplier: 12$(br)Total Defense: 12$(br)Toughness: 0$(br)Enchantability: 15", - "text.astromine.resources.tin.title": "Tin", - "text.astromine.resources.tin.page_one.title": "Tin", - "text.astromine.resources.tin.page_one.text": "A common metal with a silvery sheen and a soft composition.", - "text.astromine.resources.tin.page_two.title": "Obtaining Tin", - "text.astromine.resources.tin.page_two.text": "$(item)Tin Ore$() can be commonly found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Stone Pickaxe$() (Mining Level 1) or better, and can then be $(thing)smelted$() into a $(item)Tin Ingot$().", - "text.astromine.resources.tin.page_three.title": "Usages", - "text.astromine.resources.tin.page_three.text": "Tin is useful for plating to prevent corrosion. When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/bronze)Bronze$().", - "text.astromine.resources.tin.page_four.title": "Statistics", - "text.astromine.resources.tin.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 200$(br)Mining Speed: 5$(br)Attack Damage: 1.0$(br)Enchantability: 10$(p)$(l)Armor$()$(br)Durability Multiplier: 12$(br)Total Defense: 12$(br)Toughness: 0$(br)Enchantability: 15", - "text.astromine.resources.bronze.title": "Bronze", - "text.astromine.resources.bronze.page_one.title": "Bronze", - "text.astromine.resources.bronze.page_one.text": "An alloy of $(item)$(l:resources/copper)Copper$() and $(item)$(l:resources/tin)Tin$(), Bronze manages to be stronger and more durable than either of them.", - "text.astromine.resources.bronze.page_two.title": "Obtaining Bronze", - "text.astromine.resources.bronze.page_two.text": "Bronze can be obtained by combining 3 Copper Ingots and 1 Tin Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 4 $(item)Bronze Ingots$().", - "text.astromine.resources.bronze.page_three.title": "Usages", - "text.astromine.resources.bronze.page_three.text": "Bronze is useful for creating tools, and is also used in construction of more advanced machines.", - "text.astromine.resources.bronze.page_four.title": "Statistics", - "text.astromine.resources.bronze.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 539$(br)Mining Speed: 7$(br)Attack Damage: 2.5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 20$(br)Total Defense: 15$(br)Toughness: 0.7$(br)Enchantability: 18", - "text.astromine.resources.steel.title": "Steel", - "text.astromine.resources.steel.page_one.title": "Steel", - "text.astromine.resources.steel.page_one.text": "An alloy of $(item)Iron$() and $(thing)Carbon$(), Steel is incredibly strong for a metal of terrestrial origin.", - "text.astromine.resources.steel.page_two.title": "Obtaining Steel", - "text.astromine.resources.steel.page_two.text": "Steel can be obtained by combining an Iron Ingot and 2 $(item)Coal Dust$() or $(item)Charcoal Dust$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces a single $(item)Steel Ingot$().", - "text.astromine.resources.steel.page_three.title": "Usages", - "text.astromine.resources.steel.page_three.text": "Steel is useful for creating tools, and is also used in construction of more advanced machines.", - "text.astromine.resources.steel.page_four.title": "Statistics", - "text.astromine.resources.steel.page_four.text": "$(l)Tools$()$(br)Mining Level: 3$(br)Base Durability: 1043$(br)Mining Speed: 7.5$(br)Attack Damage: 3$(br)Enchantability: 24$(p)$(l)Armor$()$(br)Durability Multiplier: 24$(br)Total Defense: 17$(br)Toughness: 0.5$(br)Enchantability: 18", - "text.astromine.resources.silver.title": "Silver", - "text.astromine.resources.silver.page_one.title": "Silver", - "text.astromine.resources.silver.page_one.text": "A metal with high electrical conductivity and a distinct white, lustrous texture.", - "text.astromine.resources.silver.page_two.title": "Obtaining Silver", - "text.astromine.resources.silver.page_two.text": "$(item)Silver Ore$() can be found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Iron Pickaxe$() (Mining Level 2) or better, and can then be $(thing)smelted$() into a $(item)Silver Ingot$().", - "text.astromine.resources.silver.page_three.title": "Usages", - "text.astromine.resources.silver.page_three.text": "Silver is very useful for basic electronics and tools. When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/electrum)Electrum$(). When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/sterling_silver)Sterling Silver$().", - "text.astromine.resources.silver.page_four.title": "Statistics", - "text.astromine.resources.silver.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 462$(br)Mining Speed: 6.5$(br)Attack Damage: 2.0$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 17$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 22", - "text.astromine.resources.electrum.title": "Electrum", - "text.astromine.resources.electrum.page_one.title": "Electrum", - "text.astromine.resources.electrum.page_one.text": "A metal with significant electrical conductivity and golden texture.", - "text.astromine.resources.electrum.page_two.title": "Obtaining Electrum", - "text.astromine.resources.electrum.page_two.text": "Electrum can be obtained by combining 1 Gold Ingot and 1 Silver Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Electrum Ingots$().", - "text.astromine.resources.electrum.page_three.title": "Usages", - "text.astromine.resources.electrum.page_three.text": "Electrum is often used for coins.", - "text.astromine.resources.electrum.page_four.title": "Statistics", - "text.astromine.resources.electrum.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 185$(br)Mining Speed: 11$(br)Attack Damage: 1.0$(br)Enchantability: 21$(p)$(l)Armor$()$(br)Durability Multiplier: 13$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 25", - "text.astromine.resources.fools_gold.title": "Fool's Gold", - "text.astromine.resources.fools_gold.page_one.title": "Fool's Gold", - "text.astromine.resources.fools_gold.page_one.text": "A metal with used to obtain sulfur dioxide, which, due to its golden color, often confuses the unprepared traveller.", - "text.astromine.resources.fools_gold.page_two.title": "Obtaining Fool's Gold", - "text.astromine.resources.fools_gold.page_two.text": "Fool's Gold can be obtained by combining 1 Iron Ingot and 1 Gunpowder in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Fool's Gold Ingots$().", - "text.astromine.resources.fools_gold.page_three.title": "Usages", - "text.astromine.resources.fools_gold.page_three.text": "Fool's Gold is often used for coins.", - "text.astromine.resources.fools_gold.page_four.title": "Statistics", - "text.astromine.resources.fools_gold.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 250$(br)Mining Speed: 6.5$(br)Attack Damage: 2.0$(br)Enchantability: 16$(p)$(l)Armor$()$(br)Durability Multiplier: 15$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 10", - "text.astromine.resources.rose_gold.title": "Rose Gold", - "text.astromine.resources.rose_gold.page_one.title": "Rose Gold", - "text.astromine.resources.rose_gold.page_one.text": "A metal with significant electrical conductivity and rose, pink texture.", - "text.astromine.resources.rose_gold.page_two.title": "Obtaining Rose Gold", - "text.astromine.resources.rose_gold.page_two.text": "Rose Gold can be obtained by combining 1 Gold Ingot and 1 Silver Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Rose Gold Ingots$().", - "text.astromine.resources.rose_gold.page_three.title": "Usages", - "text.astromine.resources.rose_gold.page_three.text": "Rose Gold is often used for coins.", - "text.astromine.resources.rose_gold.page_four.title": "Statistics", - "text.astromine.resources.rose_gold.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 64$(br)Mining Speed: 10$(br)Attack Damage: 0.5$(br)Enchantability: 24$(p)$(l)Armor$()$(br)Durability Multiplier: 9$(br)Total Defense: ?$(br)Toughness: 0.1$(br)Enchantability: 25", - "text.astromine.resources.sterling_silver.title": "Sterling Silver", - "text.astromine.resources.sterling_silver.page_one.title": "Sterling Silver", - "text.astromine.resources.sterling_silver.page_one.text": "A metal with significant electrical conductivity and silvery texture.", - "text.astromine.resources.sterling_silver.page_two.title": "Obtaining Sterling Silver", - "text.astromine.resources.sterling_silver.page_two.text": "Sterling Silver can be obtained by combining 3 Silver Ingots and 1 Copper Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 4 $(item)Sterling Silver Ingots$().", - "text.astromine.resources.sterling_silver.page_three.title": "Usages", - "text.astromine.resources.sterling_silver.page_three.text": "Sterling Silver is often used for tooling.", - "text.astromine.resources.sterling_silver.page_four.title": "Statistics", - "text.astromine.resources.sterling_silver.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 697$(br)Mining Speed: 7$(br)Attack Damage: 2.5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 18$(br)Total Defense: ?$(br)Toughness: 0.1$(br)Enchantability: 23", - "text.astromine.resources.asterite.title": "Asterite", - "text.astromine.resources.asterite.page_one.title": "Asterite", - "text.astromine.resources.asterite.page_one.text": "A fragment of a long dead star, this red gem may look frail to an untrained observer - one who does not know its significant strengths. $(p)Its properties allow for qualified craftsmen to create powerful tooling.", - "text.astromine.resources.asterite.page_two.title": "Obtaining Asterite", - "text.astromine.resources.asterite.page_two.text": "$(item)Asterite Ore$() can be found inside $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Mining requires a $(item)Netherite Pickaxe$() (Mining Level 4) or better, usually resulting in a single $(item)Asterite Cluster$() which can forged into an $(item)Asterite$() gem.", - "text.astromine.resources.asterite.page_three.title": "Usages", - "text.astromine.resources.asterite.page_three.text": "Asterite can be used to create powerful tooling.", - "text.astromine.resources.asterite.page_four.title": "Statistics", - "text.astromine.resources.asterite.page_four.text": "$(l)Tools$()$(br)Mining Level: 5$(br)Base Durability: 2015$(br)Mining Speed: 10$(br)Attack Damage: 5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 22$(br)Total Defense: 23$(br)Toughness: 4$(br)Enchantability: 20", - "text.astromine.resources.galaxium.title": "Galaxium", - "text.astromine.resources.galaxium.page_one.title": "Galaxium", - "text.astromine.resources.galaxium.page_one.text": "A rare gem with a deep, overwhelming dark shine. Extraordinarily dense, this material is theorized to be obtained from large clusters at the center of galaxies.$(p)There are no records of such phenomena, but one's journey holds the keys to many secrets never thought of before.", - "text.astromine.resources.galaxium.page_two.title": "Obtaining Galaxium", - "text.astromine.resources.galaxium.page_two.text": "$(item)Galaxium Ore$() can be rarely found inside $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Galaxium Ore mining will require an $(item)Asterite Pickaxe$() (Mining Level 5) or better, usually resulting in a single $(item)$(l:world/ore_clusters)Galaxium Cluster$() which can be forged into a $(item)Galaxium$() gem.", - "text.astromine.resources.galaxium.page_three.title": "Usages", - "text.astromine.resources.galaxium.page_three.text": "Galaxium can be used to create extremely resistant tooling and exquisite technology.", - "text.astromine.resources.galaxium.page_four.title": "Statistics", - "text.astromine.resources.galaxium.page_four.text": "$(l)Tools$()$(br)Mining Level: 6$(br)Base Durability: 3072$(br)Mining Speed: 11$(br)Attack Damage: 5$(br)Enchantability: 18$(p)$(l)Armor$()$(br)Durability Multiplier: 44$(br)Total Defense: 25$(br)Toughness: 4.5$(br)Enchantability: 18", - "text.astromine.resources.metite.title": "Metite", - "text.astromine.resources.metite.page_one.title": "Metite", - "text.astromine.resources.metite.page_one.text": "A foreign metal, Metite withstands immense pressures; being essential in all areas of space travel.$(p)Acquiring it is considered a major stepping stone in one's interstellar journey.", - "text.astromine.resources.metite.page_two.title": "Obtaining Metite", - "text.astromine.resources.metite.page_two.text": "$(item)Metite Ore$() can be found inside $(thing)$(l:world/meteors)Meteors$() which have impacted on $(thing)Earth$(), or in $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Mining requires a $(item)Netherite Pickaxe$() (Mining Level 4) or better, usually resulting in between 1 and 3 $(item)$(l:world/ore_clusters)Metite Clusters$() which can forged into a $(item)Metite Ingot$().", - "text.astromine.resources.metite.page_three.title": "Usages", - "text.astromine.resources.metite.page_three.text": "Metite can be used to create standard tooling; however, it is of much more use in creating astronautical technology.", - "text.astromine.resources.metite.page_four.title": "Statistics", - "text.astromine.resources.metite.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 853$(br)Mining Speed: 13$(br)Attack Damage: 4$(br)Enchantability: 5$(p)$(l)Armor$()$(br)Durability Multiplier: 15$(br)Total Defense: 14$(br)Toughness: 0$(br)Enchantability: 7", - "text.astromine.resources.stellum.title": "Stellum", - "text.astromine.resources.stellum.page_one.title": "Stellum", - "text.astromine.resources.stellum.page_one.text": "A fragment of a living star, the raw energy contained within this material is surpassed only by few, every molecule of it vibrating with $(thing)Stellar Energy$().", - "text.astromine.resources.stellum.page_two.title": "Obtaining Stellum", - "text.astromine.resources.stellum.page_two.text": "$(item)Stellum Ore$() can be found inside $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Mining requires an $(item)Asterite Pickaxe$() (Mining Level 5) or better, usually resulting in a single $(item)$(l:world/ore_clusters)Stellum Cluster$() which can be forged into a $(item)Stellum Ingot$().", - "text.astromine.resources.stellum.page_three.title": "Usages", - "text.astromine.resources.stellum.page_three.text": "Stellum can be used to create powerful tooling roughly equivalent to $(thing)$(l:resources/asterite)Asterite$(). Born from the heart of a living star, it is fire proof to an extent never seen before; and posses a power that, when harnessed, can power an entire civilization.", - "text.astromine.resources.stellum.page_four.title": "Statistics", - "text.astromine.resources.stellum.page_four.text": "$(l)Tools$()$(br)Mining Level: 5$(br)Base Durability: 2643$(br)Mining Speed: 8$(br)Attack Damage: 6$(br)Enchantability: 15$(br)Fireproof$(p)$(l)Armor$()$(br)Durability Multiplier: 41$(br)Total Defense: 16$(br)Toughness: 6$(br)Enchantability: 15$(br)Fireproof", - "text.astromine.resources.univite.title": "Univite", - "text.astromine.resources.univite.page_one.title": "Univite", - "text.astromine.resources.univite.page_one.text": "A material so highly coveted it has sparked numerous interstellar wars; only a limited amount of it exists within this realm, thought to have originated at the heart of the universe, before any of us even dared the thought of existence. It is unknown whether any material conveys higher power than Univite.", - "text.astromine.resources.univite.page_two.title": "Obtaining Univite", - "text.astromine.resources.univite.page_two.text": "A theorized origin and limited existence means immense difficulty in being obtained; with no way but theft available to small civilizations.$(p)Or, y'know, the temporary recipe we added. But that's not canon.", - "text.astromine.resources.univite.page_three.title": "Usages", - "text.astromine.resources.univite.page_three.text": "Univite can be used to create the strongest tooling and weaponry known by all discovered civilizations.", - "text.astromine.resources.univite.page_four.title": "Statistics", - "text.astromine.resources.univite.page_four.text": "$(l)Tools$()$(br)Mining Level: 7$(br)Base Durability: 3918$(br)Mining Speed: 12$(br)Attack Damage: 6$(br)Enchantability: 22$(br)Fireproof$(p)$(l)Armor$()$(br)Durability Multiplier: 50$(br)Total Defense: 27$(br)Toughness: 5$(br)Enchantability: 22$(br)Fireproof", - "text.astromine.warfare.nuclear_warhead.title": "Nuclear Warhead", - "text.astromine.warfare.nuclear_warhead.page_one.title": "Nuclear Warhead", - "text.astromine.warfare.nuclear_warhead.page_one.text": "A bomb capable of devastating destruction, terminating all life-forms in the process.", - "text.astromine.warfare.nuclear_warhead.page_two.title": "Recipe", - "text.astromine.world.asteroid_ores.title": "Asteroid Ores", - "text.astromine.world.asteroid_ores.page_one.title": "Asteroid Ores", - "text.astromine.world.asteroid_ores.page_one.text": "Veins of ores found in $(thing)$(l:world/asteroids)asteroids$(), which may be harvested for resources.$(p)When mined, will drop their respective $(thing)$(l:world/ore_clusters)ore clusters$().", - "text.astromine.world.asteroids.title": "Asteroids", - "text.astromine.world.asteroids.page_one.title": "Asteroids", - "text.astromine.world.asteroids.page_one.text": "Foreign bodies found cruising through interstellar space, in rings, clusters and many other formations; said to contain large quantities of $(thing)$(l:world/asteroid_ores)ores$().", - "text.astromine.world.meteor_ores.title": "Meteor Ores", - "text.astromine.world.meteor_ores.page_one.title": "Meteor Ores", - "text.astromine.world.meteor_ores.page_one.text": "Veins of ores found in $(thing)$(l:world/meteors)meteors$(), which may be harvested for resources.$(p)When mined, will drop their respective $(thing)$(l:world/ore_clusters)ore clusters$().", - "text.astromine.world.meteors.title": "Meteors", - "text.astromine.world.meteors.page_one.title": "Meteors", - "text.astromine.world.meteors.page_one.text": "Foreign bodies that, cruising through the stairs, collided with a planetary body; said to contain $(thing)$(l:world/meteor_ores)extraterrestrial ores$().", - "text.astromine.world.ore_clusters.title": "Ore Clusters", - "text.astromine.world.ore_clusters.page_one.title": "Ore Clusters", - "text.astromine.world.ore_clusters.page_one.text": "Clusters of ores obtained from $(thing)$(l:world/asteroid_ores)asteroid ores$() or $(thing)$(l:world/meteor_ores)meteor ores$(), which may be processed for resources.", - "text.astromine.world.ore_clusters.page_two.title": "Processing", - "text.astromine.world.ore_clusters.page_two.text": "Triturating clusters will result in two of their respective $(thing)dusts$().", - "text.autoconfig.astromine/config.text": "Astromine Config", - "advancements.astromine.root.title": "Astromine", - "advancements.astromine.root.description": "Adventures to infinity and beyond", - "advancements.astromine.underestimate_metite.title": "Underestimating Alien Ores", - "advancements.astromine.underestimate_metite.description": "Attempt to mine Metite Ore with an insufficient pickaxe (You need Netherite!)", - "advancements.astromine.enter_space.title": "The Final Frontier", - "advancements.astromine.enter_space.description": "Enter Space", - "advancements.astromine.fall_to_earth.title": "Fall From The Heavens", - "advancements.astromine.fall_to_earth.description": "Fall back down to Earth", - "advancements.astromine.get_fire_extinguisher.title": "Fireman Steve", - "advancements.astromine.get_fire_extinguisher.description": "Craft a Fire Extinguisher", - "advancements.astromine.use_fire_extinguisher.title": "Realistic Physics", - "advancements.astromine.use_fire_extinguisher.description": "Propel yourself with a Fire Extinguisher", - "advancements.astromine.properly_use_fire_extinguisher.title": "The Hero Next Door", - "advancements.astromine.properly_use_fire_extinguisher.description": "Extinguish a mob that's on fire", - "advancements.astromine.get_meteor_stone.title": "(Space) Stone Age", - "advancements.astromine.get_meteor_stone.description": "Mine Meteor Stone with a strong pickaxe", - "advancements.astromine.get_metite_ingot.title": "Metal From The Stars", - "advancements.astromine.get_metite_ingot.description": "Obtain a Metite Ingot", - "advancements.astromine.get_stellum_ingot.title": "It's Full of Stars", - "advancements.astromine.get_stellum_ingot.description": "Obtain a Stellum Ingot", - "advancements.astromine.get_galaxium.title": "Hidden Gem", - "advancements.astromine.get_galaxium.description": "Obtain Galaxium", - "advancements.astromine.get_univite_ingot.title": "Univite Says Gay Rights", - "advancements.astromine.get_univite_ingot.description": "Obtain a Univite Ingot", - "advancements.astromine.get_univite_armor.title": "Cover Me in Rainbows", - "advancements.astromine.get_univite_armor.description": "Get a full suit of Univite Armor", - "advancements.astromine.get_space_suit.title": "Ready For The Unknown", - "advancements.astromine.get_space_suit.description": "Get a full Space Suit", - "advancements.astromine.launch_rocket.title": "We Have Liftoff", - "advancements.astromine.launch_rocket.description": "Launch a Rocket", - "advancements.astromine.tricked_piglin.title": "Shame On You", - "advancements.astromine.tricked_piglin.description": "Scam a Piglin with Fool's Gold", - "entity.astromine.super_space_slime": "Jelanium: Super Space Slime", - "entity.astromine.space_slime": "Space Slime", - "text.astromine.message.holographic_connection_successful": "Succeeded in connecting projector at %s with projector at %s.", - "text.astromine.message.holographic_connection_failed": "Failed to connect projector at %s with projector at %s.", - "text.astromine.message.holographic_connection_clear": "Cleared selected projectors!", - "text.astromine.message.holographic_connector_select": "Selected projector at %s!", - "text.astromine.tooltip.fractional_bar": "%s of %s (%s)", - "text.astromine.tooltip.fractional_value": "%s/%s", - "text.astromine.tooltip.fractional_value_simple": "%s", - "text.astromine.tooltip.energy_value": "%s E", - "text.astromine.tooltip.compound_energy_value": "%s/%s E", - "text.astromine.tooltip.speed": "%sx speed", - "text.astromine.tooltip.cable.speed": "%s E/t", - "text.astromine.fluid": "Fluid", - "text.astromine.energy": "Energy", - "text.astromine.item": "Item", - "text.astromine.base": "Base", - "text.astromine.up": "Up", - "text.astromine.down": "Down", - "text.astromine.left": "Left", - "text.astromine.right": "Right", - "text.astromine.front": "Front", - "text.astromine.back": "Back", - "text.astromine.siding.input": "§bInput", - "text.astromine.siding.output": "§6Output", - "text.astromine.siding.input_output": "§bInput §7/ §6Output", - "text.astromine.siding.none": "§7None", - "text.astromine.siding.disabled": "§7§mDisabled", - "text.astromine.siding.west": "Right", - "text.astromine.siding.east": "Left", - "text.astromine.siding.up": "Top", - "text.astromine.siding.down": "Bottom", - "text.astromine.siding.north": "Front", - "text.astromine.siding.south": "Back", - "item.astromine.primitive_machine_chassis": "Primitive Machine Chassis", - "item.astromine.basic_machine_chassis": "Basic Machine Chassis", - "item.astromine.advanced_machine_chassis": "Advanced Machine Chassis", - "item.astromine.elite_machine_chassis": "Elite Machine Chassis", - "item.astromine.graphite_sheet": "Graphite Sheet", - "item.astromine.gas_canister": "Gas Canister", - "item.astromine.pressurized_gas_canister": "Pressurized Gas Canister", - "item.astromine.basic_battery": "Basic Battery", - "item.astromine.advanced_battery": "Advanced Battery", - "item.astromine.elite_battery": "Elite Battery", - "item.astromine.creative_battery": "Creative Battery", - "item.astromine.fire_extinguisher": "Fire Extinguisher", - "item.astromine.holographic_connector": "Holographic Connector", - "item.astromine.holographic_bridge_projector": "Holographic Bridge Projector", - "itemGroup.astromine.core": "Astromine: Core", - "itemGroup.astromine.discoveries": "Astromine: Discoveries", - "itemGroup.astromine.foundations": "Astromine: Foundations", - "itemGroup.astromine.transportations": "Astromine: Transportations", - "itemGroup.astromine.technologies": "Astromine: Technologies", - "block.astromine.electrolyzer": "Electrolyzer", - "block.astromine.fluid_mixer": "Fluid Mixer", - "block.astromine.creative_capacitor": "Creative Capacitor", - "block.astromine.creative_tank": "Creative Tank", - "block.astromine.creative_buffer": "Creative Buffer", - "block.astromine.basic_buffer": "Basic Buffer", - "block.astromine.advanced_buffer": "Advanced Buffer", - "block.astromine.elite_buffer": "Elite Buffer", - "block.astromine.vent": "Vent", - "block.astromine.primitive_solid_generator": "Primitive Solid Generator", - "block.astromine.basic_solid_generator": "Basic Solid Generator", - "block.astromine.advanced_solid_generator": "Advanced Solid Generator", - "block.astromine.elite_solid_generator": "Elite Solid Generator", - "block.astromine.primitive_liquid_generator": "Primitive Liquid Generator", - "block.astromine.basic_liquid_generator": "Basic Liquid Generator", - "block.astromine.advanced_liquid_generator": "Advanced Liquid Generator", - "block.astromine.elite_liquid_generator": "Elite Liquid Generator", - "block.astromine.primitive_presser": "Primitive Presser", - "block.astromine.basic_presser": "Basic Presser", - "block.astromine.advanced_presser": "Advanced Presser", - "block.astromine.elite_presser": "Elite Presser", - "block.astromine.primitive_triturator": "Primitive Triturator", - "block.astromine.basic_triturator": "Basic Triturator", - "block.astromine.advanced_triturator": "Advanced Triturator", - "block.astromine.elite_triturator": "Elite Triturator", - "block.astromine.primitive_electric_smelter": "Primitive Electric Smelter", - "block.astromine.basic_electric_smelter": "Basic Electric Smelter", - "block.astromine.advanced_electric_smelter": "Advanced Electric Smelter", - "block.astromine.elite_electric_smelter": "Elite Electric Smelter", - "block.astromine.primitive_alloy_smelter": "Primitive Alloy Smelter", - "block.astromine.basic_alloy_smelter": "Basic Alloy Smelter", - "block.astromine.advanced_alloy_smelter": "Advanced Alloy Smelter", - "block.astromine.elite_alloy_smelter": "Elite Alloy Smelter", - "block.astromine.primitive_electrolyzer": "Primitive Electrolyzer", - "block.astromine.basic_electrolyzer": "Basic Electrolyzer", - "block.astromine.advanced_electrolyzer": "Advanced Electrolyzer", - "block.astromine.elite_electrolyzer": "Elite Electrolyzer", - "block.astromine.primitive_fluid_mixer": "Primitive Fluid Mixer", - "block.astromine.basic_fluid_mixer": "Basic Fluid Mixer", - "block.astromine.advanced_fluid_mixer": "Advanced Fluid Mixer", - "block.astromine.elite_fluid_mixer": "Elite Fluid Mixer", - "block.astromine.fluid_cable": "Fluid Cable", - "block.astromine.primitive_energy_cable": "Primitive Energy Cable", - "block.astromine.basic_energy_cable": "Basic Energy Cable", - "block.astromine.advanced_energy_cable": "Advanced Energy Cable", - "block.astromine.elite_energy_cable": "Elite Energy Cable", - "block.astromine.primitive_capacitor": "Primitive Capacitor", - "block.astromine.basic_capacitor": "Basic Capacitor", - "block.astromine.advanced_capacitor": "Advanced Capacitor", - "block.astromine.elite_capacitor": "Elite Capacitor", - "block.astromine.item_displayer": "Item Displayer", - "block.astromine.altar": "Altar", - "item.astromine.tin_wire": "Tin Wire", - "item.astromine.copper_wire": "Copper Wire", - "item.astromine.silver_wire": "Silver Wire", - "item.astromine.lead_wire": "Lead Wire", - "item.astromine.gold_wire": "Gold Wire", - "item.astromine.steel_wire": "Steel Wire", - "item.astromine.electrum_wire": "Electrum Wire", - "block.astromine.tank": "Tank", - "block.astromine.fluid_extractor": "Fluid Extractor", - "block.astromine.fluid_inserter": "Fluid Inserter", - "block.astromine.block_breaker": "Block Breaker", - "block.astromine.block_placer": "Block Placer", - "block.astromine.nuclear_warhead": "Nuclear Warhead", - "block.astromine.holographic_bridge_projector": "Holographic Bridge Projector", - "block.astromine.asteroid_stone": "Asteroid Stone", - "block.astromine.moon_stone": "Moon Stone", - "block.astromine.blazing_asteroid_stone": "Blazing Asteroid Stone", - "block.astromine.meteor_stone": "Meteor Stone", - "block.astromine.tin_ore": "Tin Ore", - "block.astromine.copper_ore": "Copper Ore", - "block.astromine.silver_ore": "Silver Ore", - "block.astromine.lead_ore": "Lead Ore", - "block.astromine.asteroid_metite_ore": "Asteroid Metite Ore", - "block.astromine.meteor_metite_ore": "Meteor Metite Ore", - "block.astromine.asterite_block": "Block of Asterite", - "block.astromine.galaxium_block": "Block of Galaxium", - "block.astromine.metite_block": "Block of Metite", - "block.astromine.stellum_block": "Block of Stellum", - "block.astromine.univite_block": "Block of Univite", - "block.astromine.tin_block": "Block of Tin", - "block.astromine.copper_block": "Block of Copper", - "block.astromine.silver_block": "Block of Silver", - "block.astromine.lead_block": "Block of Lead", - "block.astromine.bronze_block": "Block of Bronze", - "block.astromine.steel_block": "Block of Steel", - "block.astromine.electrum_block": "Block of Electrum", - "block.astromine.rose_gold_block": "Block of Rose Gold", - "block.astromine.sterling_silver_block": "Block of Sterling Silver", - "block.astromine.fools_gold_block": "Block of Fool's Gold", - "block.astromine.asteroid_coal_ore": "Asteroid Coal Ore", - "block.astromine.asteroid_iron_ore": "Asteroid Iron Ore", - "block.astromine.asteroid_gold_ore": "Asteroid Gold Ore", - "block.astromine.asteroid_redstone_ore": "Asteroid Redstone Ore", - "block.astromine.asteroid_lapis_ore": "Asteroid Lapis Ore", - "block.astromine.asteroid_diamond_ore": "Asteroid Diamond Ore", - "block.astromine.asteroid_asterite_ore": "Asteroid Asterite Ore", - "block.astromine.asteroid_stellum_ore": "Asteroid Stellum Ore", - "block.astromine.asteroid_galaxium_ore": "Asteroid Galaxium Ore", - "block.astromine.asteroid_emerald_ore": "Asteroid Emerald Ore", - "block.astromine.asteroid_tin_ore": "Asteroid Tin Ore", - "block.astromine.asteroid_copper_ore": "Asteroid Copper Ore", - "block.astromine.asteroid_silver_ore": "Asteroid Silver Ore", - "block.astromine.asteroid_lead_ore": "Asteroid Lead Ore", - "block.astromine.meteor_stone_slab": "Meteor Stone Slab", - "block.astromine.meteor_stone_stairs": "Meteor Stone Stairs", - "block.astromine.meteor_stone_wall": "Meteor Stone Wall", - "block.astromine.asteroid_stone_slab": "Asteroid Stone Slab", - "block.astromine.asteroid_stone_stairs": "Asteroid Stone Stairs", - "block.astromine.asteroid_stone_wall": "Asteroid Stone Wall", - "block.astromine.moon_stone_slab": "Moon Stone Slab", - "block.astromine.moon_stone_stairs": "Moon Stone Stairs", - "block.astromine.moon_stone_wall": "Moon Stone Wall", - "block.astromine.martian_stone_slab": "Martian Stone Slab", - "block.astromine.martian_stone_stairs": "Martian Stone Stairs", - "block.astromine.martian_stone_wall": "Martian Stone Wall", - "block.astromine.vulcan_stone_slab": "Vulcan Stone Slab", - "block.astromine.vulcan_stone_stairs": "Vulcan Stone Stairs", - "block.astromine.vulcan_stone_wall": "Vulcan Stone Wall", - "block.astromine.martian_soil": "Martian Soil", - "block.astromine.martian_stone": "Martian Stone", - "block.astromine.vulcan_stone": "Vulcan Stone", - "block.astromine.oxygen": "Oxygen", - "block.astromine.hydrogen": "Hydrogen", - "block.astromine.alternator": "Alternator", - "block.astromine.splitter": "Splitter", - "block.astromine.incinerator": "Incinerator", - "block.astromine.inserter": "Inserter", - "block.astromine.fast_inserter": "Fast Inserter", - "block.astromine.basic_conveyor": "Basic Conveyor", - "block.astromine.basic_vertical_conveyor": "Basic Vertical Conveyor", - "block.astromine.basic_downward_vertical_conveyor": "Basic Downward Vertical Conveyor", - "block.astromine.advanced_conveyor": "Advanced Conveyor", - "block.astromine.advanced_vertical_conveyor": "Advanced Vertical Conveyor", - "block.astromine.advanced_downward_vertical_conveyor": "Advanced Downward Vertical Conveyor", - "block.astromine.elite_conveyor": "Elite Conveyor", - "block.astromine.elite_vertical_conveyor": "Elite Vertical Conveyor", - "block.astromine.elite_downward_vertical_conveyor": "Elite Downward Vertical Conveyor", - "block.astromine.catwalk": "Catwalk", - "block.astromine.catwalk_stairs": "Catwalk Stairs", - "gas.astromine.oxygen": "Oxygen", - "gas.astromine.rocket_fuel": "Rocket Fuel", - "gas.minecraft.empty": "Vacuum", - "item.astromine.oxygen_bucket": "Liquid Oxygen Bucket", - "item.astromine.hydrogen_bucket": "Liquid Hydrogen Bucket", - "block.astromine.rocket_fuel": "Rocket Fuel", - "item.astromine.energy": "Energy", - "item.astromine.fluid": "Fluid", - "item.astromine.item": "Item", - "item.astromine.rocket_fuel_bucket": "Rocket Fuel Bucket", - "item.astromine.asterite_fragment": "Asterite Fragment", - "item.astromine.meteor_metite_cluster": "Meteor Metite Cluster", - "item.astromine.asteroid_metite_cluster": "Asteroid Metite Cluster", - "item.astromine.asteroid_coal_cluster": "Asteroid Coal Cluster", - "item.astromine.asteroid_iron_cluster": "Asteroid Iron Cluster", - "item.astromine.asteroid_gold_cluster": "Asteroid Gold Cluster", - "item.astromine.asteroid_redstone_cluster": "Asteroid Redstone Cluster", - "item.astromine.asteroid_lapis_cluster": "Asteroid Lapis Cluster", - "item.astromine.asteroid_diamond_cluster": "Asteroid Diamond Cluster", - "item.astromine.asteroid_emerald_cluster": "Asteroid Emerald Cluster", - "item.astromine.asteroid_asterite_cluster": "Asteroid Asterite Cluster", - "item.astromine.asteroid_stellum_cluster": "Asteroid Stellum Cluster", - "item.astromine.asteroid_galaxium_cluster": "Asteroid Galaxium Cluster", - "item.astromine.asteroid_tin_cluster": "Asteroid Tin Cluster", - "item.astromine.asteroid_copper_cluster": "Asteroid Copper Cluster", - "item.astromine.asteroid_silver_cluster": "Asteroid Silver Cluster", - "item.astromine.asteroid_lead_cluster": "Asteroid Lead Cluster", - "item.astromine.iron_dust": "Iron Dust", - "item.astromine.metite_dust": "Metite Dust", - "item.astromine.gold_dust": "Gold Dust", - "item.astromine.lapis_dust": "Lapis Dust", - "item.astromine.diamond_dust": "Diamond Dust", - "item.astromine.emerald_dust": "Emerald Dust", - "item.astromine.netherite_dust": "Netherite Dust", - "item.astromine.coal_dust": "Coal Dust", - "item.astromine.charcoal_dust": "Charcoal Dust", - "item.astromine.quartz_dust": "Quartz Dust", - "item.astromine.raw_netherite_dust": "Raw Netherite Dust", - "item.astromine.asterite_dust": "Asterite Dust", - "item.astromine.stellum_dust": "Stellum Dust", - "item.astromine.galaxium_dust": "Galaxium Dust", - "item.astromine.univite_dust": "Univite Dust", - "item.astromine.tin_dust": "Tin Dust", - "item.astromine.copper_dust": "Copper Dust", - "item.astromine.silver_dust": "Silver Dust", - "item.astromine.lead_dust": "Lead Dust", - "item.astromine.bronze_dust": "Bronze Dust", - "item.astromine.steel_dust": "Steel Dust", - "item.astromine.electrum_dust": "Electrum Dust", - "item.astromine.rose_gold_dust": "Rose Gold Dust", - "item.astromine.sterling_silver_dust": "Sterling Silver Dust", - "item.astromine.fools_gold_dust": "Fool's Gold Dust", - "item.astromine.redstone_tiny_dust": "Redstone Tiny Dust", - "item.astromine.iron_tiny_dust": "Iron Tiny Dust", - "item.astromine.metite_tiny_dust": "Metite Tiny Dust", - "item.astromine.gold_tiny_dust": "Gold Tiny Dust", - "item.astromine.lapis_tiny_dust": "Lapis Tiny Dust", - "item.astromine.diamond_tiny_dust": "Diamond Tiny Dust", - "item.astromine.emerald_tiny_dust": "Emerald Tiny Dust", - "item.astromine.netherite_tiny_dust": "Netherite Tiny Dust", - "item.astromine.coal_tiny_dust": "Coal Tiny Dust", - "item.astromine.charcoal_tiny_dust": "Charcoal Tiny Dust", - "item.astromine.quartz_tiny_dust": "Quartz Tiny Dust", - "item.astromine.raw_netherite_tiny_dust": "Raw Netherite Tiny Dust", - "item.astromine.asterite_tiny_dust": "Asterite Tiny Dust", - "item.astromine.stellum_tiny_dust": "Stellum Tiny Dust", - "item.astromine.galaxium_tiny_dust": "Galaxium Tiny Dust", - "item.astromine.univite_tiny_dust": "Univite Tiny Dust", - "item.astromine.tin_tiny_dust": "Tin Tiny Dust", - "item.astromine.copper_tiny_dust": "Copper Tiny Dust", - "item.astromine.silver_tiny_dust": "Silver Tiny Dust", - "item.astromine.lead_tiny_dust": "Lead Tiny Dust", - "item.astromine.bronze_tiny_dust": "Bronze Tiny Dust", - "item.astromine.steel_tiny_dust": "Steel Tiny Dust", - "item.astromine.electrum_tiny_dust": "Electrum Tiny Dust", - "item.astromine.rose_gold_tiny_dust": "Rose Gold Tiny Dust", - "item.astromine.sterling_silver_tiny_dust": "Sterling Silver Tiny Dust", - "item.astromine.fools_gold_tiny_dust": "Fool's Gold Tiny Dust", - "item.astromine.iron_plates": "Iron Plates", - "item.astromine.metite_plates": "Metite Plates", - "item.astromine.gold_plates": "Gold Plates", - "item.astromine.netherite_plates": "Netherite Plates", - "item.astromine.stellum_plates": "Stellum Plates", - "item.astromine.univite_plates": "Univite Plates", - "item.astromine.tin_plates": "Tin Plates", - "item.astromine.copper_plates": "Copper Plates", - "item.astromine.silver_plates": "Silver Plates", - "item.astromine.lead_plates": "Lead Plates", - "item.astromine.bronze_plates": "Bronze Plates", - "item.astromine.steel_plates": "Steel Plates", - "item.astromine.electrum_plates": "Electrum Plates", - "item.astromine.rose_gold_plates": "Rose Gold Plates", - "item.astromine.sterling_silver_plates": "Sterling Silver Plates", - "item.astromine.fools_gold_plates": "Fool's Gold Plates", - "item.astromine.iron_gear": "Iron Gear", - "item.astromine.metite_gear": "Metite Gear", - "item.astromine.gold_gear": "Gold Gear", - "item.astromine.netherite_gear": "Netherite Gear", - "item.astromine.stellum_gear": "Stellum Gear", - "item.astromine.univite_gear": "Univite Gear", - "item.astromine.tin_gear": "Tin Gear", - "item.astromine.copper_gear": "Copper Gear", - "item.astromine.silver_gear": "Silver Gear", - "item.astromine.lead_gear": "Lead Gear", - "item.astromine.bronze_gear": "Bronze Gear", - "item.astromine.steel_gear": "Steel Gear", - "item.astromine.electrum_gear": "Electrum Gear", - "item.astromine.rose_gold_gear": "Rose Gold Gear", - "item.astromine.sterling_silver_gear": "Sterling Silver Gear", - "item.astromine.fools_gold_gear": "Fool's Gold Gear", - "item.astromine.basic_circuit": "Basic Circuit", - "item.astromine.advanced_circuit": "Advanced Circuit", - "item.astromine.elite_circuit": "Elite Circuit", - "item.astromine.metite_ingot": "Metite Ingot", - "item.astromine.stellum_ingot": "Stellum Ingot", - "item.astromine.tin_ingot": "Tin Ingot", - "item.astromine.copper_ingot": "Copper Ingot", - "item.astromine.silver_ingot": "Silver Ingot", - "item.astromine.lead_ingot": "Lead Ingot", - "item.astromine.bronze_ingot": "Bronze Ingot", - "item.astromine.steel_ingot": "Steel Ingot", - "item.astromine.electrum_ingot": "Electrum Ingot", - "item.astromine.rose_gold_ingot": "Rose Gold Ingot", - "item.astromine.sterling_silver_ingot": "Sterling Silver Ingot", - "item.astromine.fools_gold_ingot": "Fool's Gold Ingot", - "item.astromine.galaxium_fragment": "Galaxium Fragment", - "item.astromine.diamond_fragment": "Diamond Fragment", - "item.astromine.emerald_fragment": "Emerald Fragment", - "item.astromine.quartz_fragment": "Quartz Fragment", - "item.astromine.raw_netherite_fragment": "Raw Netherite Fragment", - "item.astromine.asterite": "Asterite", - "item.astromine.galaxium": "Galaxium", - "item.astromine.metite_nugget": "Metite Nugget", - "item.astromine.stellum_nugget": "Stellum Nugget", - "item.astromine.univite_nugget": "Univite Nugget", - "item.astromine.netherite_nugget": "Netherite Nugget", - "item.astromine.tin_nugget": "Tin Nugget", - "item.astromine.copper_nugget": "Copper Nugget", - "item.astromine.silver_nugget": "Silver Nugget", - "item.astromine.lead_nugget": "Lead Nugget", - "item.astromine.bronze_nugget": "Bronze Nugget", - "item.astromine.steel_nugget": "Steel Nugget", - "item.astromine.electrum_nugget": "Electrum Nugget", - "item.astromine.rose_gold_nugget": "Rose Gold Nugget", - "item.astromine.sterling_silver_nugget": "Sterling Silver Nugget", - "item.astromine.fools_gold_nugget": "Fool's Gold Nugget", - "item.astromine.univite_ingot": "Univite Ingot", - "item.astromine.basic_drill": "Basic Drill", - "item.astromine.advanced_drill": "Advanced Drill", - "item.astromine.elite_drill": "Elite Drill", - "item.astromine.tin_pickaxe": "Tin Pickaxe", - "item.astromine.tin_axe": "Tin Axe", - "item.astromine.tin_shovel": "Tin Shovel", - "item.astromine.tin_hoe": "Tin Hoe", - "item.astromine.tin_sword": "Tin Sword", - "item.astromine.tin_mattock": "Tin Mattock", - "item.astromine.tin_mining_tool": "Tin Mining Tool", - "item.astromine.tin_hammer": "Tin Hammer", - "item.astromine.tin_excavator": "Tin Excavator", - "item.astromine.copper_pickaxe": "Copper Pickaxe", - "item.astromine.copper_axe": "Copper Axe", - "item.astromine.copper_shovel": "Copper Shovel", - "item.astromine.copper_hoe": "Copper Hoe", - "item.astromine.copper_sword": "Copper Sword", - "item.astromine.copper_mattock": "Copper Mattock", - "item.astromine.copper_mining_tool": "Copper Mining Tool", - "item.astromine.copper_hammer": "Copper Hammer", - "item.astromine.copper_excavator": "Copper Excavator", - "item.astromine.silver_pickaxe": "Silver Pickaxe", - "item.astromine.silver_axe": "Silver Axe", - "item.astromine.silver_shovel": "Silver Shovel", - "item.astromine.silver_hoe": "Silver Hoe", - "item.astromine.silver_sword": "Silver Sword", - "item.astromine.silver_mattock": "Silver Mattock", - "item.astromine.silver_mining_tool": "Silver Mining Tool", - "item.astromine.silver_hammer": "Silver Hammer", - "item.astromine.silver_excavator": "Silver Excavator", - "item.astromine.lead_pickaxe": "Lead Pickaxe", - "item.astromine.lead_axe": "Lead Axe", - "item.astromine.lead_shovel": "Lead Shovel", - "item.astromine.lead_hoe": "Lead Hoe", - "item.astromine.lead_sword": "Lead Sword", - "item.astromine.lead_mattock": "Lead Mattock", - "item.astromine.lead_mining_tool": "Lead Mining Tool", - "item.astromine.lead_hammer": "Lead Hammer", - "item.astromine.lead_excavator": "Lead Excavator", - "item.astromine.bronze_pickaxe": "Bronze Pickaxe", - "item.astromine.bronze_axe": "Bronze Axe", - "item.astromine.bronze_shovel": "Bronze Shovel", - "item.astromine.bronze_hoe": "Bronze Hoe", - "item.astromine.bronze_sword": "Bronze Sword", - "item.astromine.bronze_mattock": "Bronze Mattock", - "item.astromine.bronze_mining_tool": "Bronze Mining Tool", - "item.astromine.bronze_hammer": "Bronze Hammer", - "item.astromine.bronze_excavator": "Bronze Excavator", - "item.astromine.steel_pickaxe": "Steel Pickaxe", - "item.astromine.steel_axe": "Steel Axe", - "item.astromine.steel_shovel": "Steel Shovel", - "item.astromine.steel_hoe": "Steel Hoe", - "item.astromine.steel_sword": "Steel Sword", - "item.astromine.steel_mattock": "Steel Mattock", - "item.astromine.steel_mining_tool": "Steel Mining Tool", - "item.astromine.steel_hammer": "Steel Hammer", - "item.astromine.steel_excavator": "Steel Excavator", - "item.astromine.electrum_pickaxe": "Electrum Pickaxe", - "item.astromine.electrum_axe": "Electrum Axe", - "item.astromine.electrum_shovel": "Electrum Shovel", - "item.astromine.electrum_hoe": "Electrum Hoe", - "item.astromine.electrum_sword": "Electrum Sword", - "item.astromine.electrum_mattock": "Electrum Mattock", - "item.astromine.electrum_mining_tool": "Electrum Mining Tool", - "item.astromine.electrum_hammer": "Electrum Hammer", - "item.astromine.electrum_excavator": "Electrum Excavator", - "item.astromine.rose_gold_pickaxe": "Rose Gold Pickaxe", - "item.astromine.rose_gold_axe": "Rose Gold Axe", - "item.astromine.rose_gold_shovel": "Rose Gold Shovel", - "item.astromine.rose_gold_hoe": "Rose Gold Hoe", - "item.astromine.rose_gold_sword": "Rose Gold Sword", - "item.astromine.rose_gold_mattock": "Rose Gold Mattock", - "item.astromine.rose_gold_mining_tool": "Rose Gold Mining Tool", - "item.astromine.rose_gold_hammer": "Rose Gold Hammer", - "item.astromine.rose_gold_excavator": "Rose Gold Excavator", - "item.astromine.sterling_silver_pickaxe": "Sterling Silver Pickaxe", - "item.astromine.sterling_silver_axe": "Sterling Silver Silverver Axe", - "item.astromine.sterling_silver_shovel": "Sterling Silver Shovel", - "item.astromine.sterling_silver_hoe": "Sterling Silver Hoe", - "item.astromine.sterling_silver_sword": "Sterling Silver Sword", - "item.astromine.sterling_silver_mattock": "Sterling Silver Mattock", - "item.astromine.sterling_silver_mining_tool": "Sterling Silver Mining Tool", - "item.astromine.sterling_silver_hammer": "Sterling Silver Hammer", - "item.astromine.sterling_silver_excavator": "Sterling Silver Excavator", - "item.astromine.fools_gold_pickaxe": "Fool's Gold Pickaxe", - "item.astromine.fools_gold_axe": "Fool's Gold Axe", - "item.astromine.fools_gold_shovel": "Fool's Gold Shovel", - "item.astromine.fools_gold_hoe": "Fool's Gold Hoe", - "item.astromine.fools_gold_sword": "Fool's Gold Sword", - "item.astromine.fools_gold_mattock": "Fool's Gold Mattock", - "item.astromine.fools_gold_mining_tool": "Fool's Gold Mining Tool", - "item.astromine.fools_gold_hammer": "Fool's Gold Hammer", - "item.astromine.fools_gold_excavator": "Fool's Gold Excavator", - "item.astromine.metite_pickaxe": "Metite Pickaxe", - "item.astromine.metite_axe": "Metite Axe", - "item.astromine.metite_shovel": "Metite Shovel", - "item.astromine.metite_hoe": "Metite Hoe", - "item.astromine.metite_sword": "Metite Sword", - "item.astromine.metite_mattock": "Metite Mattock", - "item.astromine.metite_mining_tool": "Metite Mining Tool", - "item.astromine.metite_hammer": "Metite Hammer", - "item.astromine.metite_excavator": "Metite Excavator", - "item.astromine.asterite_pickaxe": "Asterite Pickaxe", - "item.astromine.asterite_axe": "Asterite Axe", - "item.astromine.asterite_shovel": "Asterite Shovel", - "item.astromine.asterite_hoe": "Asterite Hoe", - "item.astromine.asterite_sword": "Asterite Sword", - "item.astromine.asterite_mattock": "Asterite Mattock", - "item.astromine.asterite_mining_tool": "Asterite Mining Tool", - "item.astromine.asterite_hammer": "Asterite Hammer", - "item.astromine.asterite_excavator": "Asterite Excavator", - "item.astromine.stellum_pickaxe": "Stellum Pickaxe", - "item.astromine.stellum_axe": "Stellum Axe", - "item.astromine.stellum_shovel": "Stellum Shovel", - "item.astromine.stellum_hoe": "Stellum Hoe", - "item.astromine.stellum_sword": "Stellum Sword", - "item.astromine.stellum_mattock": "Stellum Mattock", - "item.astromine.stellum_mining_tool": "Stellum Mining Tool", - "item.astromine.stellum_hammer": "Stellum Hammer", - "item.astromine.stellum_excavator": "Stellum Excavator", - "item.astromine.galaxium_pickaxe": "Galaxium Pickaxe", - "item.astromine.galaxium_axe": "Galaxium Axe", - "item.astromine.galaxium_shovel": "Galaxium Shovel", - "item.astromine.galaxium_hoe": "Galaxium Hoe", - "item.astromine.galaxium_sword": "Galaxium Sword", - "item.astromine.galaxium_mattock": "Galaxium Mattock", - "item.astromine.galaxium_mining_tool": "Galaxium Mining Tool", - "item.astromine.galaxium_hammer": "Galaxium Hammer", - "item.astromine.galaxium_excavator": "Galaxium Excavator", - "item.astromine.univite_pickaxe": "Univite Pickaxe", - "item.astromine.univite_axe": "Univite Axe", - "item.astromine.univite_shovel": "Univite Shovel", - "item.astromine.univite_hoe": "Univite Hoe", - "item.astromine.univite_sword": "Univite Sword", - "item.astromine.univite_mattock": "Univite Mattock", - "item.astromine.univite_mining_tool": "Univite Mining Tool", - "item.astromine.univite_hammer": "Univite Hammer", - "item.astromine.univite_excavator": "Univite Excavator", - "item.astromine.wooden_mattock": "Wooden Mattock", - "item.astromine.wooden_mining_tool": "Wooden Mining Tool", - "item.astromine.stone_mattock": "Stone Mattock", - "item.astromine.stone_mining_tool": "Stone Mining Tool", - "item.astromine.iron_mattock": "Iron Mattock", - "item.astromine.iron_mining_tool": "Iron Mining Tool", - "item.astromine.golden_mattock": "Golden Mattock", - "item.astromine.golden_mining_tool": "Golden Mining Tool", - "item.astromine.diamond_mattock": "Diamond Mattock", - "item.astromine.diamond_mining_tool": "Diamond Mining Tool", - "item.astromine.netherite_mattock": "Netherite Mattock", - "item.astromine.netherite_mining_tool": "Netherite Mining Tool", - "item.astromine.tin_helmet": "Tin Helmet", - "item.astromine.tin_chestplate": "Tin Chestplate", - "item.astromine.tin_leggings": "Tin Leggings", - "item.astromine.tin_boots": "Tin Boots", - "item.astromine.copper_helmet": "Copper Helmet", - "item.astromine.copper_chestplate": "Copper Chestplate", - "item.astromine.copper_leggings": "Copper Leggings", - "item.astromine.copper_boots": "Copper Boots", - "item.astromine.silver_helmet": "Silver Helmet", - "item.astromine.silver_chestplate": "Silver Chestplate", - "item.astromine.silver_leggings": "Silver Leggings", - "item.astromine.silver_boots": "Silver Boots", - "item.astromine.lead_helmet": "Lead Helmet", - "item.astromine.lead_chestplate": "Lead Chestplate", - "item.astromine.lead_leggings": "Lead Leggings", - "item.astromine.lead_boots": "Lead Boots", - "item.astromine.bronze_helmet": "Bronze Helmet", - "item.astromine.bronze_chestplate": "Bronze Chestplate", - "item.astromine.bronze_leggings": "Bronze Leggings", - "item.astromine.bronze_boots": "Bronze Boots", - "item.astromine.steel_helmet": "Steel Helmet", - "item.astromine.steel_chestplate": "Steel Chestplate", - "item.astromine.steel_leggings": "Steel Leggings", - "item.astromine.steel_boots": "Steel Boots", - "item.astromine.electrum_helmet": "Electrum Helmet", - "item.astromine.electrum_chestplate": "Electrum Chestplate", - "item.astromine.electrum_leggings": "Electrum Leggings", - "item.astromine.electrum_boots": "Electrum Boots", - "item.astromine.rose_gold_helmet": "Rose Gold Helmet", - "item.astromine.rose_gold_chestplate": "Rose Gold Chestplate", - "item.astromine.rose_gold_leggings": "Rose Gold Leggings", - "item.astromine.rose_gold_boots": "Rose Gold Boots", - "item.astromine.sterling_silver_helmet": "Sterling Silver Helmet", - "item.astromine.sterling_silver_chestplate": "Sterling Silver Chestplate", - "item.astromine.sterling_silver_leggings": "Sterling Silver Leggings", - "item.astromine.sterling_silver_boots": "Sterling Silver Boots", - "item.astromine.fools_gold_helmet": "Fool's Gold Helmet", - "item.astromine.fools_gold_chestplate": "Fool's Gold Chestplate", - "item.astromine.fools_gold_leggings": "Fool's Gold Leggings", - "item.astromine.fools_gold_boots": "Fool's Gold Boots", - "item.astromine.metite_helmet": "Metite Helmet", - "item.astromine.metite_chestplate": "Metite Chestplate", - "item.astromine.metite_leggings": "Metite Leggings", - "item.astromine.metite_boots": "Metite Boots", - "item.astromine.asterite_helmet": "Asterite Helmet", - "item.astromine.asterite_chestplate": "Asterite Chestplate", - "item.astromine.asterite_leggings": "Asterite Leggings", - "item.astromine.asterite_boots": "Asterite Boots", - "item.astromine.stellum_helmet": "Stellum Helmet", - "item.astromine.stellum_chestplate": "Stellum Chestplate", - "item.astromine.stellum_leggings": "Stellum Leggings", - "item.astromine.stellum_boots": "Stellum Boots", - "item.astromine.galaxium_helmet": "Galaxium Helmet", - "item.astromine.galaxium_chestplate": "Galaxium Chestplate", - "item.astromine.galaxium_leggings": "Galaxium Leggings", - "item.astromine.galaxium_boots": "Galaxium Boots", - "item.astromine.univite_helmet": "Univite Helmet", - "item.astromine.univite_chestplate": "Univite Chestplate", - "item.astromine.univite_leggings": "Univite Leggings", - "item.astromine.univite_boots": "Univite Boots", - "item.astromine.space_suit_helmet": "Space Suit Helmet", - "item.astromine.space_suit_chestplate": "Space Suit Chest", - "item.astromine.space_suit_leggings": "Space Suit Pants", - "item.astromine.space_suit_boots": "Space Suit Boots", - "item.astromine.space_slime_spawn_egg": "Space Slime Spawn Egg", - "item.astromine.super_space_slime_shooter": "Super Space Slime Shooter", - "item.astromine.space_slime_ball": "Space Slimeball", - "item.astromine.manual": "Astromine Manual", - "item.astromine.yeast": "Yeast", - "item.astromine.rocket": "Rocket", - "item.astromine.bronze_wrench": "Bronze Wrench", - "item.astromine.gravity_gauntlet": "Gravity Gauntlet", - "item.minecraft.potion.effect.rocket_fuel": "Rocket Fuel Bottle", - "item.minecraft.splash_potion.effect.rocket_fuel": "Splash Rocket Fuel Bottle", - "item.minecraft.lingering_potion.effect.rocket_fuel": "Lingering Rocket Fuel Bottle", - "item.minecraft.tipped_arrow.effect.rocket_fuel": "Arrow of Rocket Fuel", - "item.minecraft.potion.effect.sugar_water": "Sugar Water Bottle", - "item.minecraft.splash_potion.effect.sugar_water": "Splash Sugar Water Bottle", - "item.minecraft.lingering_potion.effect.sugar_water": "Lingering Sugar Water Bottle", - "item.minecraft.tipped_arrow.effect.sugar_water": "Arrow of Sugar Water", - "potion.potency.10": "X", - "subtitles.astromine.humming": "Humming", - "subtitles.astromine.holographic_connector_click": "Holographic Connector clicks", - "subtitles.astromine.fire_extinguisher_open": "Fire Extinguisher opens", - "subtitles.astromine.gunshot": "Gunshot", - "subtitles.astromine.empty_magazine": "Magazine is empty", - "text.astromine.manual.landing": "Your guide to the stars!", - "category.astromine.liquid_generating": "Liquid Generating", - "category.astromine.solid_generating": "Solid Generating", - "category.astromine.electric_smelting": "Electric Smelting", - "category.astromine.alloy_smelting": "Alloy Smelting", - "category.astromine.pressing": "Pressing", - "category.astromine.triturating": "Triturating", - "category.astromine.fluid_mixing": "Fluid Mixing", - "category.astromine.electrolyzing": "Electrolyzing", - "category.astromine.infusing": "Infusing", - "category.astromine.cooking.time": "%s sec", - "category.astromine.cooking.energy": "%s energy", - "category.astromine.generating.energy": "%s generated/tick", - "category.astromine.consuming.energy": "%s consumed", - "category.astromine.fluid.generating.consumed": "%s (%s) consumed/tick", - "category.astromine.fluid.generating.generated": "%s (%s) generated/tick", - "text.astromine.manual.obtain.info": "The Astromine Manual can be obtained by right clicking a Metite Axe on a Bookshelf.", - "text.astromine.selected.dimension.pos": "Selected %s (%d, %d, %d)", - "text.astromine.patchouli.astronautics.title": "Astronautics", - "text.astromine.patchouli.astronautics.description": "From where one dreams, to where their dreams come true.", - "text.astromine.patchouli.components.title": "Components", - "text.astromine.patchouli.components.description": "Components for crafting items to aid one in their journey.", - "text.astromine.patchouli.creatures.title": "Creatures", - "text.astromine.patchouli.creatures.description": "Those beyond our wildest realm of imagination.", - "text.astromine.patchouli.gadgets.title": "Gadgets", - "text.astromine.patchouli.gadgets.description": "One's physical assistance in their journey.", - "text.astromine.patchouli.machinery.title": "Machinery", - "text.astromine.patchouli.machinery.description": "What moves one's world.", - "text.astromine.patchouli.resources.title": "Resources", - "text.astromine.patchouli.resources.description": "The exquisite materials that one channels for power.", - "text.astromine.patchouli.warfare.title": "Warfare", - "text.astromine.patchouli.warfare.description": "What one uses to wipe away their foe.", - "text.astromine.patchouli.world.title": "World", - "text.astromine.patchouli.world.description": "What surrounds one.", - "text.astromine.astronautics.space_suit.title": "Space Suit", - "text.astromine.astronautics.space_suit.page_one.title": "Space Suit", - "text.astromine.astronautics.space_suit.page_one.text": "Vital for survival in hostile environments, a Space Suit is the most important thing one may carry. $(p)With internal tanks which may be pressurized in certain machines, it may be filled with (un-)breathable gases fit for whoever is wearing it.", - "text.astromine.astronautics.rocket.title": "Rocket", - "text.astromine.astronautics.rocket.page_one.title": "Rocket", - "text.astromine.astronautics.rocket.page_one.text": "Your ticket to the final frontier.", - "text.astromine.astronautics.rocket.page_two.title": "Crafting and Notes", - "text.astromine.astronautics.rocket.page_two.text": "Right click with a $(item)Flint and Steel$() to launch. Right click with a $(item)Stick$() to destroy. These are both temporary measures.", - "text.astromine.components.circuits.title": "Circuits", - "text.astromine.components.circuits.page_one.title": "Basic Circuit", - "text.astromine.components.circuits.page_one.text": "A basic electric circuit board, built for general systems with no special requirements, whose architecture is based on graphene.", - "text.astromine.components.circuits.page_two.title": "Basic Circuit Recipe", - "text.astromine.components.circuits.page_three.title": "Advanced Circuit", - "text.astromine.components.circuits.page_three.text": "A more advanced electric circuit board, built for systems with low latency in mind, whose architecture is based on graphene.", - "text.astromine.components.circuits.page_four.title": "Advanced Circuit Recipe", - "text.astromine.components.circuits.page_five.title": "Elite Circuit", - "text.astromine.components.circuits.page_five.text": "An elite electric circuit board, built for systems with high throughput and low latency in mind, whose architecture makes use of coveted, laboratory-made materials.", - "text.astromine.components.circuits.page_six.title": "Elite Circuit Recipe", - "text.astromine.components.gears.title": "Gears", - "text.astromine.components.gears.page_one.title": "Gears", - "text.astromine.components.gears.page_one.text": "A small wheel with teeth, gears interlocked with one another can turn to achieve any number of things.$(p)As such, they will have great use in constructing useful $(thing)machines$().", - "text.astromine.components.gears.page_two.title": "Recipe", - "text.astromine.components.gears.page_two.text": "While the recipe shown is clearly for an $(item)Iron Gear$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create a gear of that type.", - "text.astromine.components.plates.title": "Plates", - "text.astromine.components.plates.page_one.title": "Plates", - "text.astromine.components.plates.page_one.text": "Thin sheets of metal, plates are useful for constructing $(thing)housing$() for $(thing)machinery$().", - "text.astromine.components.plates.page_two.title": "Recipe", - "text.astromine.components.plates.page_two.text": "While the recipe shown is clearly for $(item)Iron Plates$(), simply substituting the $(item)Iron Ingots$() with any other $(thing)Ingots$() will create plates of that type.", - "text.astromine.creatures.space_slime.title": "Space Slime", - "text.astromine.creatures.space_slime.page_one.title": "Space Slime", - "text.astromine.creatures.space_slime.page_one.text": "A fierce adversary which inhabits large sections of traversable space.", - "text.astromine.creatures.space_slime.page_two.title": "Drops", - "text.astromine.creatures.space_slime.page_two.text": "Upon defeat, a $(thing)Space Slime$() will drop $(thing)Space Slime Balls$().", - "text.astromine.gadgets.fire_extinguisher.title": "Fire Extinguisher", - "text.astromine.gadgets.fire_extinguisher.page_one.title": "Fire Extinguisher", - "text.astromine.gadgets.fire_extinguisher.page_one.text": "An important tool in one's space journeys, it is responsible for providing maneuverable thrust.$(p)Surprisingly, it can also extinguish fire.", - "text.astromine.gadgets.fire_extinguisher.page_two.title": "Recipe", - "text.astromine.gadgets.gravity_gauntlet.title": "Gravity Gauntlets", - "text.astromine.gadgets.gravity_gauntlet.page_one.title": "Gravity Gauntlets", - "text.astromine.gadgets.gravity_gauntlet.page_one.text": "Gauntlets which can repel opponents. One must be worn on each hand, and they must be charged before they can activate$(p)Charging is done by holding right click with one in each hand, and takes energy.", - "text.astromine.gadgets.gravity_gauntlet.page_two.title": "Recipe", - "text.astromine.machinery.holographic_bridge_projector.title": "Holographic Bridge Projector", - "text.astromine.machinery.holographic_bridge_projector.page_one.title": "Holographic Bridge Projector", - "text.astromine.machinery.holographic_bridge_projector.page_one.text": "A machine which generates a holographic bridge between it and another one of its kind; linkable with a $(item)$(l:gadgets/holographic_connector)Holographic Connector$().", - "text.astromine.machinery.holographic_bridge_projector.page_two.title": "Recipe", - "text.astromine.gadgets.holographic_connector.title": "Holographic Connector", - "text.astromine.gadgets.holographic_connector.page_one.title": "Holographic Connector", - "text.astromine.gadgets.holographic_connector.page_one.text": "A remote controller which allows you to link together $(item)$(l:machinery/holographic_bridge_projector)Holographic Bridge Projectors$(). They must be facing each other in the same line, but can have different heights.", - "text.astromine.gadgets.holographic_connector.page_two.title": "Recipe", - "text.astromine.machinery.creative_buffer.title": "Creative Buffer", - "text.astromine.machinery.creative_buffer.page_one.title": "Creative Buffer", - "text.astromine.machinery.creative_buffer.page_one.text": "A machine which produces a specified $(thing)item$() infinitely.", - "text.astromine.machinery.creative_capacitor.title": "Creative Capacitor", - "text.astromine.machinery.creative_capacitor.page_one.title": "Creative Capacitor", - "text.astromine.machinery.creative_capacitor.page_one.text": "A machine which produces $(thing)energy$() infinitely.", - "text.astromine.machinery.creative_tank.title": "Creative Tank", - "text.astromine.machinery.creative_tank.page_one.title": "Creative Tank", - "text.astromine.machinery.creative_tank.page_one.text": "A machine which produces a specified $(thing)fluid$() infinitely.", - "text.astromine.machinery.electric_smelter.title": "Electric Smelter", - "text.astromine.machinery.electric_smelter.page_one.title": "Electric Smelter", - "text.astromine.machinery.electric_smelter.page_one.text": "A machine which consumes $(thing)energy$() to smelt $(thing)items$() into useful materials.", - "text.astromine.machinery.electric_smelter.page_two.title": "Recipe", - "text.astromine.machinery.electrolyzer.title": "Electrolyzer", - "text.astromine.machinery.electrolyzer.page_one.title": "Electrolyzer", - "text.astromine.machinery.electrolyzer.page_one.text": "A machine which consumes $(thing)energy$() to electrolyze $(thing)fluids$() into useful materials.", - "text.astromine.machinery.electrolyzer.page_two.title": "Recipe", - "text.astromine.machinery.energy_cable.title": "Energy Cable", - "text.astromine.machinery.energy_cable.page_one.title": "Energy Cable", - "text.astromine.machinery.energy_cable.page_one.text": "A cable which transports $(thing)energy$(); no buffering or path-finding involved.", - "text.astromine.machinery.energy_cable.page_two.title": "Recipe", - "text.astromine.machinery.fluid_cable.title": "Fluid Cable", - "text.astromine.machinery.fluid_cable.page_one.title": "Fluid Cable", - "text.astromine.machinery.fluid_cable.page_one.text": "A cable which transports $(thing)fluids$(); no buffering or path-finding involved.", - "text.astromine.machinery.fluid_cable.page_two.title": "Recipe", - "text.astromine.machinery.fluid_extractor.title": "Fluid Extractor", - "text.astromine.machinery.fluid_extractor.page_one.title": "Fluid Extractor", - "text.astromine.machinery.fluid_extractor.page_one.text": "A machine which consumes $(thing)energy$() to pick up $(thing)fluids$() from the world.", - "text.astromine.machinery.fluid_extractor.page_two.title": "Recipe", - "text.astromine.machinery.fluid_inserter.title": "Fluid Inserter", - "text.astromine.machinery.fluid_inserter.page_one.title": "Fluid Inserter", - "text.astromine.machinery.fluid_inserter.page_one.text": "A machine which consumes $(thing)energy$() to place $(thing)fluids$() in the world.", - "text.astromine.machinery.fluid_inserter.page_two.title": "Recipe", - "text.astromine.machinery.fluid_mixer.title": "Fuel Mixer", - "text.astromine.machinery.fluid_mixer.page_one.title": "Fuel Mixer", - "text.astromine.machinery.fluid_mixer.page_one.text": "A machine which consumes $(thing)energy$() to mix $(thing)fluids$() into useful materials.", - "text.astromine.machinery.fluid_mixer.page_two.title": "Recipe", - "text.astromine.machinery.block_breaker.title": "Block Breaker", - "text.astromine.machinery.block_breaker.page_one.title": "Block Breaker", - "text.astromine.machinery.block_breaker.page_one.text": "A machine which consumes $(thing)energy$() to break and pick up $(thing)blocks$() from the world.", - "text.astromine.machinery.block_breaker.page_two.title": "Recipe", - "text.astromine.machinery.block_placer.title": "Block Placer", - "text.astromine.machinery.block_placer.page_one.title": "Block Placer", - "text.astromine.machinery.block_placer.page_one.text": "A machine which consumes $(thing)energy$() to place $(thing)blocks$() in the world.", - "text.astromine.machinery.block_placer.page_two.title": "Recipe", - "text.astromine.machinery.inserter.title": "Inserter", - "text.astromine.machinery.inserter.page_one.title": "Inserter", - "text.astromine.machinery.inserter.page_one.text": "A machine which picks up items from its front and places them at its back, for item transportation.", - "text.astromine.machinery.inserter.page_two.title": "Recipe", - "text.astromine.machinery.inserter.page_three.title": "Recipe", - "text.astromine.machinery.conveyor.title": "Conveyor", - "text.astromine.machinery.conveyor.page_one.title": "Conveyor", - "text.astromine.machinery.conveyor.page_one.text": "A machine which transports items.", - "text.astromine.machinery.conveyor.page_two.title": "Recipe", - "text.astromine.machinery.conveyor.page_three.title": "Recipe", - "text.astromine.machinery.conveyor.page_four.title": "Recipe", - "text.astromine.machinery.triturator.title": "Triturator", - "text.astromine.machinery.triturator.page_one.title": "Triturator", - "text.astromine.machinery.triturator.page_one.text": "A machine which consumes $(thing)energy$() to pulverize $(thing)items$() into useful materials.", - "text.astromine.machinery.triturator.page_two.title": "Recipe", - "text.astromine.machinery.presser.title": "Presser", - "text.astromine.machinery.presser.page_one.title": "Presser", - "text.astromine.machinery.presser.page_one.text": "A machine which consumes $(thing)energy$() to press $(thing)items$() into useful materials.", - "text.astromine.machinery.presser.page_two.title": "Recipe", - "text.astromine.machinery.vent.title": "Vent", - "text.astromine.machinery.vent.page_one.title": "Vent", - "text.astromine.machinery.vent.page_one.text": "A machine which consumes energy to ventilate fluids into the atmosphere.", - "text.astromine.machinery.vent.page_two.title": "Recipe", - "text.astromine.resources.copper.title": "Copper", - "text.astromine.resources.copper.page_one.title": "Copper", - "text.astromine.resources.copper.page_one.text": "A very common metal with high thermal and electrical conductivity and a distinct orange hue.", - "text.astromine.resources.copper.page_two.title": "Obtaining Copper", - "text.astromine.resources.copper.page_two.text": "$(item)Copper Ore$() can be commonly found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Stone Pickaxe$() (Mining Level 1) or better, and can then be $(thing)smelted$() into a $(item)Copper Ingot$().", - "text.astromine.resources.copper.page_three.title": "Usages", - "text.astromine.resources.copper.page_three.text": "Copper is very useful for basic electronics and tools. When combined with $(item)$(l:resources/tin)Tin$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/bronze)Bronze$().", - "text.astromine.resources.copper.page_four.title": "Statistics", - "text.astromine.resources.copper.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 200$(br)Mining Speed: 4$(br)Attack Damage: 1.5$(br)Enchantability: 10$(p)$(l)Armor$()$(br)Durability Multiplier: 12$(br)Total Defense: 12$(br)Toughness: 0$(br)Enchantability: 15", - "text.astromine.resources.tin.title": "Tin", - "text.astromine.resources.tin.page_one.title": "Tin", - "text.astromine.resources.tin.page_one.text": "A common metal with a silvery sheen and a soft composition.", - "text.astromine.resources.tin.page_two.title": "Obtaining Tin", - "text.astromine.resources.tin.page_two.text": "$(item)Tin Ore$() can be commonly found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Stone Pickaxe$() (Mining Level 1) or better, and can then be $(thing)smelted$() into a $(item)Tin Ingot$().", - "text.astromine.resources.tin.page_three.title": "Usages", - "text.astromine.resources.tin.page_three.text": "Tin is useful for plating to prevent corrosion. When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/bronze)Bronze$().", - "text.astromine.resources.tin.page_four.title": "Statistics", - "text.astromine.resources.tin.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 200$(br)Mining Speed: 5$(br)Attack Damage: 1.0$(br)Enchantability: 10$(p)$(l)Armor$()$(br)Durability Multiplier: 12$(br)Total Defense: 12$(br)Toughness: 0$(br)Enchantability: 15", - "text.astromine.resources.bronze.title": "Bronze", - "text.astromine.resources.bronze.page_one.title": "Bronze", - "text.astromine.resources.bronze.page_one.text": "An alloy of $(item)$(l:resources/copper)Copper$() and $(item)$(l:resources/tin)Tin$(), Bronze manages to be stronger and more durable than either of them.", - "text.astromine.resources.bronze.page_two.title": "Obtaining Bronze", - "text.astromine.resources.bronze.page_two.text": "Bronze can be obtained by combining 3 Copper Ingots and 1 Tin Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 4 $(item)Bronze Ingots$().", - "text.astromine.resources.bronze.page_three.title": "Usages", - "text.astromine.resources.bronze.page_three.text": "Bronze is useful for creating tools, and is also used in construction of more advanced machines.", - "text.astromine.resources.bronze.page_four.title": "Statistics", - "text.astromine.resources.bronze.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 539$(br)Mining Speed: 7$(br)Attack Damage: 2.5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 20$(br)Total Defense: 15$(br)Toughness: 0.7$(br)Enchantability: 18", - "text.astromine.resources.steel.title": "Steel", - "text.astromine.resources.steel.page_one.title": "Steel", - "text.astromine.resources.steel.page_one.text": "An alloy of $(item)Iron$() and $(thing)Carbon$(), Steel is incredibly strong for a metal of terrestrial origin.", - "text.astromine.resources.steel.page_two.title": "Obtaining Steel", - "text.astromine.resources.steel.page_two.text": "Steel can be obtained by combining an Iron Ingot and 2 $(item)Coal Dust$() or $(item)Charcoal Dust$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces a single $(item)Steel Ingot$().", - "text.astromine.resources.steel.page_three.title": "Usages", - "text.astromine.resources.steel.page_three.text": "Steel is useful for creating tools, and is also used in construction of more advanced machines.", - "text.astromine.resources.steel.page_four.title": "Statistics", - "text.astromine.resources.steel.page_four.text": "$(l)Tools$()$(br)Mining Level: 3$(br)Base Durability: 1043$(br)Mining Speed: 7.5$(br)Attack Damage: 3$(br)Enchantability: 24$(p)$(l)Armor$()$(br)Durability Multiplier: 24$(br)Total Defense: 17$(br)Toughness: 0.5$(br)Enchantability: 18", - "text.astromine.resources.silver.title": "Silver", - "text.astromine.resources.silver.page_one.title": "Silver", - "text.astromine.resources.silver.page_one.text": "A metal with high electrical conductivity and a distinct white, lustrous texture.", - "text.astromine.resources.silver.page_two.title": "Obtaining Silver", - "text.astromine.resources.silver.page_two.text": "$(item)Silver Ore$() can be found $(thing)underground$() in $(thing)The Overworld$().$(p)Mining requires only a $(item)Iron Pickaxe$() (Mining Level 2) or better, and can then be $(thing)smelted$() into a $(item)Silver Ingot$().", - "text.astromine.resources.silver.page_three.title": "Usages", - "text.astromine.resources.silver.page_three.text": "Silver is very useful for basic electronics and tools. When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/electrum)Electrum$(). When combined with $(item)$(l:resources/copper)Copper$() in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(), it can make $(item)$(l:resources/sterling_silver)Sterling Silver$().", - "text.astromine.resources.silver.page_four.title": "Statistics", - "text.astromine.resources.silver.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 462$(br)Mining Speed: 6.5$(br)Attack Damage: 2.0$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 17$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 22", - "text.astromine.resources.electrum.title": "Electrum", - "text.astromine.resources.electrum.page_one.title": "Electrum", - "text.astromine.resources.electrum.page_one.text": "A metal with significant electrical conductivity and golden texture.", - "text.astromine.resources.electrum.page_two.title": "Obtaining Electrum", - "text.astromine.resources.electrum.page_two.text": "Electrum can be obtained by combining 1 Gold Ingot and 1 Silver Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Electrum Ingots$().", - "text.astromine.resources.electrum.page_three.title": "Usages", - "text.astromine.resources.electrum.page_three.text": "Electrum is often used for coins.", - "text.astromine.resources.electrum.page_four.title": "Statistics", - "text.astromine.resources.electrum.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 185$(br)Mining Speed: 11$(br)Attack Damage: 1.0$(br)Enchantability: 21$(p)$(l)Armor$()$(br)Durability Multiplier: 13$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 25", - "text.astromine.resources.fools_gold.title": "Fool's Gold", - "text.astromine.resources.fools_gold.page_one.title": "Fool's Gold", - "text.astromine.resources.fools_gold.page_one.text": "A metal with used to obtain sulfur dioxide, which, due to its golden color, often confuses the unprepared traveller.", - "text.astromine.resources.fools_gold.page_two.title": "Obtaining Fool's Gold", - "text.astromine.resources.fools_gold.page_two.text": "Fool's Gold can be obtained by combining 1 Iron Ingot and 1 Gunpowder in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Fool's Gold Ingots$().", - "text.astromine.resources.fools_gold.page_three.title": "Usages", - "text.astromine.resources.fools_gold.page_three.text": "Fool's Gold is often used for coins.", - "text.astromine.resources.fools_gold.page_four.title": "Statistics", - "text.astromine.resources.fools_gold.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 250$(br)Mining Speed: 6.5$(br)Attack Damage: 2.0$(br)Enchantability: 16$(p)$(l)Armor$()$(br)Durability Multiplier: 15$(br)Total Defense: ?$(br)Toughness: 0$(br)Enchantability: 10", - "text.astromine.resources.rose_gold.title": "Rose Gold", - "text.astromine.resources.rose_gold.page_one.title": "Rose Gold", - "text.astromine.resources.rose_gold.page_one.text": "A metal with significant electrical conductivity and rose, pink texture.", - "text.astromine.resources.rose_gold.page_two.title": "Obtaining Rose Gold", - "text.astromine.resources.rose_gold.page_two.text": "Rose Gold can be obtained by combining 1 Gold Ingot and 1 Silver Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 2 $(item)Rose Gold Ingots$().", - "text.astromine.resources.rose_gold.page_three.title": "Usages", - "text.astromine.resources.rose_gold.page_three.text": "Rose Gold is often used for coins.", - "text.astromine.resources.rose_gold.page_four.title": "Statistics", - "text.astromine.resources.rose_gold.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 64$(br)Mining Speed: 10$(br)Attack Damage: 0.5$(br)Enchantability: 24$(p)$(l)Armor$()$(br)Durability Multiplier: 9$(br)Total Defense: ?$(br)Toughness: 0.1$(br)Enchantability: 25", - "text.astromine.resources.sterling_silver.title": "Sterling Silver", - "text.astromine.resources.sterling_silver.page_one.title": "Sterling Silver", - "text.astromine.resources.sterling_silver.page_one.text": "A metal with significant electrical conductivity and silvery texture.", - "text.astromine.resources.sterling_silver.page_two.title": "Obtaining Sterling Silver", - "text.astromine.resources.sterling_silver.page_two.text": "Sterling Silver can be obtained by combining 3 Silver Ingots and 1 Copper Ingot in an $(item)$(l:machinery/alloy_smelter)Alloy Smelter$(). This produces 4 $(item)Sterling Silver Ingots$().", - "text.astromine.resources.sterling_silver.page_three.title": "Usages", - "text.astromine.resources.sterling_silver.page_three.text": "Sterling Silver is often used for tooling.", - "text.astromine.resources.sterling_silver.page_four.title": "Statistics", - "text.astromine.resources.sterling_silver.page_four.text": "$(l)Tools$()$(br)Mining Level: 2$(br)Base Durability: 697$(br)Mining Speed: 7$(br)Attack Damage: 2.5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 18$(br)Total Defense: ?$(br)Toughness: 0.1$(br)Enchantability: 23", - "text.astromine.resources.asterite.title": "Asterite", - "text.astromine.resources.asterite.page_one.title": "Asterite", - "text.astromine.resources.asterite.page_one.text": "A fragment of a long dead star, this red gem may look frail to an untrained observer - one who does not know its significant strengths. $(p)Its properties allow for qualified craftsmen to create powerful tooling.", - "text.astromine.resources.asterite.page_two.title": "Obtaining Asterite", - "text.astromine.resources.asterite.page_two.text": "$(item)Asterite Ore$() can be found inside $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Mining requires a $(item)Netherite Pickaxe$() (Mining Level 4) or better, usually resulting in a single $(item)Asterite Cluster$() which can forged into an $(item)Asterite$() gem.", - "text.astromine.resources.asterite.page_three.title": "Usages", - "text.astromine.resources.asterite.page_three.text": "Asterite can be used to create powerful tooling.", - "text.astromine.resources.asterite.page_four.title": "Statistics", - "text.astromine.resources.asterite.page_four.text": "$(l)Tools$()$(br)Mining Level: 5$(br)Base Durability: 2015$(br)Mining Speed: 10$(br)Attack Damage: 5$(br)Enchantability: 20$(p)$(l)Armor$()$(br)Durability Multiplier: 22$(br)Total Defense: 23$(br)Toughness: 4$(br)Enchantability: 20", - "text.astromine.resources.galaxium.title": "Galaxium", - "text.astromine.resources.galaxium.page_one.title": "Galaxium", - "text.astromine.resources.galaxium.page_one.text": "A rare gem with a deep, overwhelming dark shine. Extraordinarily dense, this material is theorized to be obtained from large clusters at the center of galaxies.$(p)There are no records of such phenomena, but one's journey holds the keys to many secrets never thought of before.", - "text.astromine.resources.galaxium.page_two.title": "Obtaining Galaxium", - "text.astromine.resources.galaxium.page_two.text": "$(item)Galaxium Ore$() can be rarely found inside $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Galaxium Ore mining will require an $(item)Asterite Pickaxe$() (Mining Level 5) or better, usually resulting in a single $(item)$(l:world/ore_clusters)Galaxium Cluster$() which can be forged into a $(item)Galaxium$() gem.", - "text.astromine.resources.galaxium.page_three.title": "Usages", - "text.astromine.resources.galaxium.page_three.text": "Galaxium can be used to create extremely resistant tooling and exquisite technology.", - "text.astromine.resources.galaxium.page_four.title": "Statistics", - "text.astromine.resources.galaxium.page_four.text": "$(l)Tools$()$(br)Mining Level: 6$(br)Base Durability: 3072$(br)Mining Speed: 11$(br)Attack Damage: 5$(br)Enchantability: 18$(p)$(l)Armor$()$(br)Durability Multiplier: 44$(br)Total Defense: 25$(br)Toughness: 4.5$(br)Enchantability: 18", - "text.astromine.resources.metite.title": "Metite", - "text.astromine.resources.metite.page_one.title": "Metite", - "text.astromine.resources.metite.page_one.text": "A foreign metal, Metite withstands immense pressures; being essential in all areas of space travel.$(p)Acquiring it is considered a major stepping stone in one's interstellar journey.", - "text.astromine.resources.metite.page_two.title": "Obtaining Metite", - "text.astromine.resources.metite.page_two.text": "$(item)Metite Ore$() can be found inside $(thing)$(l:world/meteors)Meteors$() which have impacted on $(thing)Earth$(), or in $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Mining requires a $(item)Netherite Pickaxe$() (Mining Level 4) or better, usually resulting in between 1 and 3 $(item)$(l:world/ore_clusters)Metite Clusters$() which can forged into a $(item)Metite Ingot$().", - "text.astromine.resources.metite.page_three.title": "Usages", - "text.astromine.resources.metite.page_three.text": "Metite can be used to create standard tooling; however, it is of much more use in creating astronautical technology.", - "text.astromine.resources.metite.page_four.title": "Statistics", - "text.astromine.resources.metite.page_four.text": "$(l)Tools$()$(br)Mining Level: 1$(br)Base Durability: 853$(br)Mining Speed: 13$(br)Attack Damage: 4$(br)Enchantability: 5$(p)$(l)Armor$()$(br)Durability Multiplier: 15$(br)Total Defense: 14$(br)Toughness: 0$(br)Enchantability: 7", - "text.astromine.resources.stellum.title": "Stellum", - "text.astromine.resources.stellum.page_one.title": "Stellum", - "text.astromine.resources.stellum.page_one.text": "A fragment of a living star, the raw energy contained within this material is surpassed only by few, every molecule of it vibrating with $(thing)Stellar Energy$().", - "text.astromine.resources.stellum.page_two.title": "Obtaining Stellum", - "text.astromine.resources.stellum.page_two.text": "$(item)Stellum Ore$() can be found inside $(thing)$(l:world/asteroids)Asteroids$() in $(thing)Space$().$(p)Mining requires an $(item)Asterite Pickaxe$() (Mining Level 5) or better, usually resulting in a single $(item)$(l:world/ore_clusters)Stellum Cluster$() which can be forged into a $(item)Stellum Ingot$().", - "text.astromine.resources.stellum.page_three.title": "Usages", - "text.astromine.resources.stellum.page_three.text": "Stellum can be used to create powerful tooling roughly equivalent to $(thing)$(l:resources/asterite)Asterite$(). Born from the heart of a living star, it is fire proof to an extent never seen before; and posses a power that, when harnessed, can power an entire civilization.", - "text.astromine.resources.stellum.page_four.title": "Statistics", - "text.astromine.resources.stellum.page_four.text": "$(l)Tools$()$(br)Mining Level: 5$(br)Base Durability: 2643$(br)Mining Speed: 8$(br)Attack Damage: 6$(br)Enchantability: 15$(br)Fireproof$(p)$(l)Armor$()$(br)Durability Multiplier: 41$(br)Total Defense: 16$(br)Toughness: 6$(br)Enchantability: 15$(br)Fireproof", - "text.astromine.resources.univite.title": "Univite", - "text.astromine.resources.univite.page_one.title": "Univite", - "text.astromine.resources.univite.page_one.text": "A material so highly coveted it has sparked numerous interstellar wars; only a limited amount of it exists within this realm, thought to have originated at the heart of the universe, before any of us even dared the thought of existence. It is unknown whether any material conveys higher power than Univite.", - "text.astromine.resources.univite.page_two.title": "Obtaining Univite", - "text.astromine.resources.univite.page_two.text": "A theorized origin and limited existence means immense difficulty in being obtained; with no way but theft available to small civilizations.$(p)Or, y'know, the temporary recipe we added. But that's not canon.", - "text.astromine.resources.univite.page_three.title": "Usages", - "text.astromine.resources.univite.page_three.text": "Univite can be used to create the strongest tooling and weaponry known by all discovered civilizations.", - "text.astromine.resources.univite.page_four.title": "Statistics", - "text.astromine.resources.univite.page_four.text": "$(l)Tools$()$(br)Mining Level: 7$(br)Base Durability: 3918$(br)Mining Speed: 12$(br)Attack Damage: 6$(br)Enchantability: 22$(br)Fireproof$(p)$(l)Armor$()$(br)Durability Multiplier: 50$(br)Total Defense: 27$(br)Toughness: 5$(br)Enchantability: 22$(br)Fireproof", - "text.astromine.warfare.nuclear_warhead.title": "Nuclear Warhead", - "text.astromine.warfare.nuclear_warhead.page_one.title": "Nuclear Warhead", - "text.astromine.warfare.nuclear_warhead.page_one.text": "A bomb capable of devastating destruction, terminating all life-forms in the process.", - "text.astromine.warfare.nuclear_warhead.page_two.title": "Recipe", - "text.astromine.world.asteroid_ores.title": "Asteroid Ores", - "text.astromine.world.asteroid_ores.page_one.title": "Asteroid Ores", - "text.astromine.world.asteroid_ores.page_one.text": "Veins of ores found in $(thing)$(l:world/asteroids)asteroids$(), which may be harvested for resources.$(p)When mined, will drop their respective $(thing)$(l:world/ore_clusters)ore clusters$().", - "text.astromine.world.asteroids.title": "Asteroids", - "text.astromine.world.asteroids.page_one.title": "Asteroids", - "text.astromine.world.asteroids.page_one.text": "Foreign bodies found cruising through interstellar space, in rings, clusters and many other formations; said to contain large quantities of $(thing)$(l:world/asteroid_ores)ores$().", - "text.astromine.world.meteor_ores.title": "Meteor Ores", - "text.astromine.world.meteor_ores.page_one.title": "Meteor Ores", - "text.astromine.world.meteor_ores.page_one.text": "Veins of ores found in $(thing)$(l:world/meteors)meteors$(), which may be harvested for resources.$(p)When mined, will drop their respective $(thing)$(l:world/ore_clusters)ore clusters$().", - "text.astromine.world.meteors.title": "Meteors", - "text.astromine.world.meteors.page_one.title": "Meteors", - "text.astromine.world.meteors.page_one.text": "Foreign bodies that, cruising through the stairs, collided with a planetary body; said to contain $(thing)$(l:world/meteor_ores)extraterrestrial ores$().", - "text.astromine.world.ore_clusters.title": "Ore Clusters", - "text.astromine.world.ore_clusters.page_one.title": "Ore Clusters", - "text.astromine.world.ore_clusters.page_one.text": "Clusters of ores obtained from $(thing)$(l:world/asteroid_ores)asteroid ores$() or $(thing)$(l:world/meteor_ores)meteor ores$(), which may be processed for resources.", - "text.astromine.world.ore_clusters.page_two.title": "Processing", - "text.astromine.world.ore_clusters.page_two.text": "Triturating clusters will result in two of their respective $(thing)dusts$().", - "text.autoconfig.astromine/config.text": "Astromine Config", - "advancements.astromine.root.title": "Astromine", - "advancements.astromine.root.description": "Adventures to infinity and beyond", - "advancements.astromine.underestimate_metite.title": "Underestimating Alien Ores", - "advancements.astromine.underestimate_metite.description": "Attempt to mine Metite Ore with an insufficient pickaxe (You need Netherite!)", - "advancements.astromine.enter_space.title": "The Final Frontier", - "advancements.astromine.enter_space.description": "Enter Space", - "advancements.astromine.fall_to_earth.title": "Fall From The Heavens", - "advancements.astromine.fall_to_earth.description": "Fall back down to Earth", - "advancements.astromine.get_fire_extinguisher.title": "Fireman Steve", - "advancements.astromine.get_fire_extinguisher.description": "Craft a Fire Extinguisher", - "advancements.astromine.use_fire_extinguisher.title": "Realistic Physics", - "advancements.astromine.use_fire_extinguisher.description": "Propel yourself with a Fire Extinguisher", - "advancements.astromine.properly_use_fire_extinguisher.title": "The Hero Next Door", - "advancements.astromine.properly_use_fire_extinguisher.description": "Extinguish a mob that's on fire", - "advancements.astromine.get_meteor_stone.title": "(Space) Stone Age", - "advancements.astromine.get_meteor_stone.description": "Mine Meteor Stone with a strong pickaxe", - "advancements.astromine.get_metite_ingot.title": "Metal From The Stars", - "advancements.astromine.get_metite_ingot.description": "Obtain a Metite Ingot", - "advancements.astromine.get_stellum_ingot.title": "It's Full of Stars", - "advancements.astromine.get_stellum_ingot.description": "Obtain a Stellum Ingot", - "advancements.astromine.get_galaxium.title": "Hidden Gem", - "advancements.astromine.get_galaxium.description": "Obtain Galaxium", - "advancements.astromine.get_univite_ingot.title": "Univite Says Gay Rights", - "advancements.astromine.get_univite_ingot.description": "Obtain a Univite Ingot", - "advancements.astromine.get_univite_armor.title": "Cover Me in Rainbows", - "advancements.astromine.get_univite_armor.description": "Get a full suit of Univite Armor", - "advancements.astromine.get_space_suit.title": "Ready For The Unknown", - "advancements.astromine.get_space_suit.description": "Get a full Space Suit", - "advancements.astromine.launch_rocket.title": "We Have Liftoff", - "advancements.astromine.launch_rocket.description": "Launch a Rocket", - "advancements.astromine.tricked_piglin.title": "Shame On You", - "advancements.astromine.tricked_piglin.description": "Scam a Piglin with Fool's Gold" + "text.astromine.world.ore_clusters.page_one.text": "Aglomerados de Minério são obtidos de $(thing)$(l:world/asteroid_ores)minérios de asteroide$() ou $(thing)$(l:world/meteor_ores)minérios de meteoro$(), que podem ser processados por recursos." } diff --git a/astromine-core/src/main/resources/assets/astromine/lang/ru_ru.json b/astromine-core/src/main/resources/assets/astromine/lang/ru_ru.json index 4f096f437..d367867fe 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/ru_ru.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/ru_ru.json @@ -1,10 +1,6 @@ { "entity.astromine.super_space_slime": "Jelanium: Супер Космичекий Слизень", "entity.astromine.space_slime": "Космический Слизень", - "text.astromine.magazine.rounds": "патроны", - "text.astromine.weapon.battle_rifle": "Боевая Винтовка", - "text.astromine.weapon.sniper_rifle": "Снайперская Винтовка", - "text.astromine.weapon.fantasy": "Фантастичекая", "text.astromine.message.holographic_connection_successful": "Удалось подключение проектора в %s с проектором в %s.", "text.astromine.message.holographic_connection_failed": "Не удалось подключить проектор в %s с проектором в %s.", "text.astromine.message.holographic_connection_clear": "Очищены выбранные проекторы!", @@ -51,7 +47,6 @@ "item.astromine.fire_extinguisher": "Огнетушитель", "item.astromine.holographic_connector": "Голографический Разъем", "item.astromine.holographic_bridge_projector": "Голографический Проектор Моста", - "itemGroup.astromine.astromine": "Astromine", "block.astromine.electrolyzer": "Электролизер", "block.astromine.fluid_mixer": "Жидкосный Смешиватель", "block.astromine.creative_capacitor": "Творческий конденсатор", @@ -104,7 +99,6 @@ "item.astromine.steel_wire": "Стальная Проволока", "item.astromine.silver_wire": "Серебряная Проволока", "item.astromine.electrum_wire": "Электрумовая Проволока", - "block.astromine.tank": "Танк", "block.astromine.fluid_extractor": "Жидкостный Экстрактор", "block.astromine.fluid_inserter": "Fluid Inserter ", "block.astromine.block_breaker": "Разрушитель Блоков", @@ -226,21 +220,21 @@ "item.astromine.rose_gold_dust": "Пыль Розового Золота", "item.astromine.sterling_silver_dust": "Пыль Стерлингового Серебра", "item.astromine.fools_gold_dust": "Fool's Золотая Пыль", - "item.astromine.iron_plates": "Железные Пластины", - "item.astromine.metite_plates": "Метитовые Пластины", - "item.astromine.gold_plates": "Золотые Пластины", - "item.astromine.netherite_plates": "Незеритовая Пластины", - "item.astromine.stellum_plates": "Стеллум Пластины", - "item.astromine.univite_plates": "Univite Пластины", - "item.astromine.tin_plates": "Оловянные Пластины", - "item.astromine.copper_plates": "медная Пластины", - "item.astromine.bronze_plates": "Бронзовая Пластины", - "item.astromine.steel_plates": "стальная Пластины", - "item.astromine.silver_plates": "серебряная Пластины", - "item.astromine.electrum_plates": "Электрум Пластины", - "item.astromine.rose_gold_plates": "Пластины Розового Золота", - "item.astromine.sterling_silver_plates": "Пластины Стерлингового Серебра", - "item.astromine.fools_gold_plates": "Пластины Fool's Золото", + "item.astromine.iron_plate": "Железные Пластины", + "item.astromine.metite_plate": "Метитовые Пластины", + "item.astromine.gold_plate": "Золотые Пластины", + "item.astromine.netherite_plate": "Незеритовая Пластины", + "item.astromine.stellum_plate": "Стеллум Пластины", + "item.astromine.univite_plate": "Univite Пластины", + "item.astromine.tin_plate": "Оловянные Пластины", + "item.astromine.copper_plate": "медная Пластины", + "item.astromine.bronze_plate": "Бронзовая Пластины", + "item.astromine.steel_plate": "стальная Пластины", + "item.astromine.silver_plate": "серебряная Пластины", + "item.astromine.electrum_plate": "Электрум Пластины", + "item.astromine.rose_gold_plate": "Пластины Розового Золота", + "item.astromine.sterling_silver_plate": "Пластины Стерлингового Серебра", + "item.astromine.fools_gold_plate": "Пластины Fool's Золото", "item.astromine.iron_gear": "Железная Шестерёнка", "item.astromine.metite_gear": "метитовая Шестерёнка", "item.astromine.gold_gear": "Золотая Шестерёнка", @@ -822,7 +816,6 @@ "block.astromine.vulcan_stone_wall": "Vulcan Stone Wall", "item.astromine.asteroid_lead_cluster": "Asteroid Lead Cluster", "item.astromine.lead_dust": "Lead Dust", - "item.astromine.lead_plates": "Lead Plates", "item.astromine.lead_gear": "Lead Gear", "item.astromine.lead_ingot": "Lead Ingot", "item.astromine.lead_nugget": "Lead Nugget", diff --git a/astromine-core/src/main/resources/assets/astromine/lang/zh_cn.json b/astromine-core/src/main/resources/assets/astromine/lang/zh_cn.json index 8473bd26a..0425221b8 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/zh_cn.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/zh_cn.json @@ -319,24 +319,24 @@ "item.astromine.fools_gold_tiny_dust": "小堆黄铁粉", "item.astromine.glowstone_tiny_dust": "小堆荧石粉", "item.astromine.meteoric_steel_tiny_dust": "小堆陨钢粉", - "item.astromine.iron_plates": "铁板", - "item.astromine.metite_plates": "陨铁板", - "item.astromine.gold_plates": "金板", - "item.astromine.netherite_plates": "下界合金板", - "item.astromine.stellum_plates": "辰耀板", - "item.astromine.univite_plates": "寰宇板", - "item.astromine.tin_plates": "锡板", - "item.astromine.copper_plates": "铜板", - "item.astromine.silver_plates": "银板", - "item.astromine.lead_plates": "铅板", - "item.astromine.bronze_plates": "青铜板", - "item.astromine.steel_plates": "钢板", - "item.astromine.electrum_plates": "琥珀金板", - "item.astromine.rose_gold_plates": "玫瑰金板", - "item.astromine.sterling_silver_plates": "纹银板", - "item.astromine.fools_gold_plates": "黄铁板", - "item.astromine.lunum_plates": "太银板", - "item.astromine.meteoric_steel_plates": "陨钢板", + "item.astromine.iron_plate": "铁板", + "item.astromine.metite_plate": "陨铁板", + "item.astromine.gold_plate": "金板", + "item.astromine.netherite_plate": "下界合金板", + "item.astromine.stellum_plate": "辰耀板", + "item.astromine.univite_plate": "寰宇板", + "item.astromine.tin_plate": "锡板", + "item.astromine.copper_plate": "铜板", + "item.astromine.silver_plate": "银板", + "item.astromine.lead_plate": "铅板", + "item.astromine.bronze_plate": "青铜板", + "item.astromine.steel_plate": "钢板", + "item.astromine.electrum_plate": "琥珀金板", + "item.astromine.rose_gold_plate": "玫瑰金板", + "item.astromine.sterling_silver_plate": "纹银板", + "item.astromine.fools_gold_plate": "黄铁板", + "item.astromine.lunum_plate": "太银板", + "item.astromine.meteoric_steel_plate": "陨钢板", "item.astromine.iron_gear": "铁齿轮", "item.astromine.metite_gear": "陨铁齿轮", "item.astromine.gold_gear": "金齿轮", @@ -1018,8 +1018,8 @@ "advancements.astromine.get_triturator.description": "制作一台磨粉机", "advancements.astromine.get_gear.title": "磨人的小东西……", "advancements.astromine.get_gear.description": "制作一块齿轮", - "advancements.astromine.get_plates.title": "这块锭是平的", - "advancements.astromine.get_plates.description": "制作金属板", + "advancements.astromine.get_plate.title": "这块锭是平的", + "advancements.astromine.get_plate.description": "制作金属板", "advancements.astromine.get_rose_gold_ingot.title": "红粉佳人", "advancements.astromine.get_rose_gold_ingot.description": "获取玫瑰金锭", "advancements.astromine.get_basic_circuit.title": "电路创作家", diff --git a/astromine-core/src/main/resources/assets/astromine/lang/zh_tw.json b/astromine-core/src/main/resources/assets/astromine/lang/zh_tw.json index 0ec8c6f7f..6d15282b2 100644 --- a/astromine-core/src/main/resources/assets/astromine/lang/zh_tw.json +++ b/astromine-core/src/main/resources/assets/astromine/lang/zh_tw.json @@ -294,24 +294,24 @@ "item.astromine.fools_gold_tiny_dust": "小堆黃鐵粉", "item.astromine.glowstone_tiny_dust": "小堆螢石粉", "item.astromine.meteoric_steel_tiny_dust": "小堆隕鋼粉", - "item.astromine.iron_plates": "鐵板", - "item.astromine.metite_plates": "隕鐵板", - "item.astromine.gold_plates": "金板", - "item.astromine.netherite_plates": "獄髓板", - "item.astromine.stellum_plates": "辰耀板", - "item.astromine.univite_plates": "寰宇板", - "item.astromine.tin_plates": "錫板", - "item.astromine.copper_plates": "銅板", - "item.astromine.silver_plates": "銀板", - "item.astromine.lead_plates": "鉛板", - "item.astromine.bronze_plates": "青銅板", - "item.astromine.steel_plates": "鋼板", - "item.astromine.electrum_plates": "琥珀金板", - "item.astromine.rose_gold_plates": "玫瑰金板", - "item.astromine.sterling_silver_plates": "紋銀板", - "item.astromine.fools_gold_plates": "黃鐵板", - "item.astromine.lunum_plates": "鈅銀板", - "item.astromine.meteoric_steel_plates": "隕鋼板", + "item.astromine.iron_plate": "鐵板", + "item.astromine.metite_plate": "隕鐵板", + "item.astromine.gold_plate": "金板", + "item.astromine.netherite_plate": "獄髓板", + "item.astromine.stellum_plate": "辰耀板", + "item.astromine.univite_plate": "寰宇板", + "item.astromine.tin_plate": "錫板", + "item.astromine.copper_plate": "銅板", + "item.astromine.silver_plate": "銀板", + "item.astromine.lead_plate": "鉛板", + "item.astromine.bronze_plate": "青銅板", + "item.astromine.steel_plate": "鋼板", + "item.astromine.electrum_plate": "琥珀金板", + "item.astromine.rose_gold_plate": "玫瑰金板", + "item.astromine.sterling_silver_plate": "紋銀板", + "item.astromine.fools_gold_plate": "黃鐵板", + "item.astromine.lunum_plate": "鈅銀板", + "item.astromine.meteoric_steel_plate": "隕鋼板", "item.astromine.iron_gear": "鐵齒輪", "item.astromine.metite_gear": "隕鐵齒輪", "item.astromine.gold_gear": "金齒輪", @@ -992,8 +992,8 @@ "advancements.astromine.get_triturator.description": "製作一台磨粉機", "advancements.astromine.get_gear.title": "磨人的小東西……", "advancements.astromine.get_gear.description": "製作一個齒輪", - "advancements.astromine.get_plates.title": "錠平論", - "advancements.astromine.get_plates.description": "製作金屬板", + "advancements.astromine.get_plate.title": "錠平論", + "advancements.astromine.get_plate.description": "製作金屬板", "advancements.astromine.get_rose_gold_ingot.title": "紅粉佳人", "advancements.astromine.get_rose_gold_ingot.description": "取得玫瑰金錠", "advancements.astromine.get_basic_circuit.title": "電路創作家", diff --git a/astromine-core/src/main/resources/data/astromine-core/patchouli_books/manual/en_us/entries/components/plates.json b/astromine-core/src/main/resources/data/astromine-core/patchouli_books/manual/en_us/entries/components/plates.json index 1d03986f5..bcbf6aa39 100644 --- a/astromine-core/src/main/resources/data/astromine-core/patchouli_books/manual/en_us/entries/components/plates.json +++ b/astromine-core/src/main/resources/data/astromine-core/patchouli_books/manual/en_us/entries/components/plates.json @@ -1,6 +1,6 @@ { "name": "text.astromine.components.plates.title", - "icon": "astromine:iron_plates", + "icon": "astromine:iron_plate", "category": "components", "sortnum": 0, "pages": [ diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/bronze_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/bronze_plates.json index 253c82c6d..30f2411b9 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/bronze_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/bronze_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:bronze_plates" + "astromine:bronze_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/copper_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/copper_plates.json index e3cf5c775..596e81442 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/copper_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/copper_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:copper_plates" + "astromine:copper_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/electrum_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/electrum_plates.json index dd0eb2227..24651e928 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/electrum_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/electrum_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:electrum_plates" + "astromine:electrum_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/fools_gold_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/fools_gold_plates.json index 96473081c..75b02ddf7 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/fools_gold_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/fools_gold_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:fools_gold_plates" + "astromine:fools_gold_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/gold_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/gold_plates.json index ea6eb0f3b..2e3776bd4 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/gold_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/gold_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:gold_plates" + "astromine:gold_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/iron_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/iron_plates.json index 6cf2461c3..54e5b9d29 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/iron_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/iron_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:iron_plates" + "astromine:iron_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/lead_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/lead_plates.json index 9c405007c..6fd330eaa 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/lead_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/lead_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:lead_plates" + "astromine:lead_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/lunum_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/lunum_plates.json index cf2d8ce3a..d9c88b26e 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/lunum_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/lunum_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:lunum_plates" + "astromine:lunum_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json index 58b637cab..581d9e9be 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:meteoric_steel_plates" + "astromine:meteoric_steel_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/metite_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/metite_plates.json index f9cd5144e..856c9ef0e 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/metite_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/metite_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:metite_plates" + "astromine:metite_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/netherite_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/netherite_plates.json index 3d91075aa..9fd67997e 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/netherite_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/netherite_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:netherite_plates" + "astromine:netherite_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/rose_gold_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/rose_gold_plates.json index 123cda0c1..e411a008c 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/rose_gold_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/rose_gold_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:rose_gold_plates" + "astromine:rose_gold_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/silver_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/silver_plates.json index 207907797..26dcf7339 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/silver_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/silver_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:silver_plates" + "astromine:silver_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/steel_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/steel_plates.json index ae4a243a6..c709713ae 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/steel_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/steel_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:steel_plates" + "astromine:steel_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/stellum_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/stellum_plates.json index 7e1f3116f..c158e2dbe 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/stellum_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/stellum_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:stellum_plates" + "astromine:stellum_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/sterling_silver_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/sterling_silver_plates.json index bec51b0ac..a4c6158d6 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/sterling_silver_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/sterling_silver_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:sterling_silver_plates" + "astromine:sterling_silver_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/tin_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/tin_plates.json index 1ac393048..c6a327a61 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/tin_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/tin_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:tin_plates" + "astromine:tin_plate" ] } \ No newline at end of file diff --git a/astromine-discoveries/src/generated/resources/data/c/tags/items/univite_plates.json b/astromine-discoveries/src/generated/resources/data/c/tags/items/univite_plates.json index 1cc17a252..e3e737586 100644 --- a/astromine-discoveries/src/generated/resources/data/c/tags/items/univite_plates.json +++ b/astromine-discoveries/src/generated/resources/data/c/tags/items/univite_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:univite_plates" + "astromine:univite_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/generators/recipe/WrenchCraftingRecipeGenerator.java b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/generators/recipe/WrenchCraftingRecipeGenerator.java index b39a8fa4e..0cd68734a 100644 --- a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/generators/recipe/WrenchCraftingRecipeGenerator.java +++ b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/generators/recipe/WrenchCraftingRecipeGenerator.java @@ -7,6 +7,6 @@ public class WrenchCraftingRecipeGenerator extends ShapedCraftingSetRecipeGenera public WrenchCraftingRecipeGenerator() { super(MaterialItemType.INGOT, MaterialItemType.WRENCH, "# #", " G ", " P "); this.addType('G', MaterialItemType.GEAR); - this.addType('P', MaterialItemType.PLATES); + this.addType('P', MaterialItemType.PLATE); } } diff --git a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsMaterialSets.java b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsMaterialSets.java index 3d766fc31..e1a18d4a8 100644 --- a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsMaterialSets.java +++ b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsMaterialSets.java @@ -43,7 +43,7 @@ public class AstromineFoundationsMaterialSets extends AstromineMaterialSets { .setType(MaterialItemType.HELMET, new Identifier("iron_helmet")).setType(MaterialItemType.CHESTPLATE, new Identifier("iron_chestplate")) .setType(MaterialItemType.LEGGINGS, new Identifier("iron_leggings")).setType(MaterialItemType.BOOTS, new Identifier("iron_boots")) .dusts().asteroid() - .gear().plates() + .gear().plate() .multiTools() .build() ); @@ -59,7 +59,7 @@ public class AstromineFoundationsMaterialSets extends AstromineMaterialSets { .setType(MaterialItemType.LEGGINGS, new Identifier("golden_leggings")).setType(MaterialItemType.BOOTS, new Identifier("golden_boots")) .setType(MaterialItemType.APPLE, new MaterialEntry(new Identifier("golden_apple"), "golden_apples")) .dusts().asteroid() - .gear().plates().wire() + .gear().plate().wire() .mattock(AstromineCommon.identifier("golden_mattock")).miningTool(AstromineCommon.identifier("golden_mining_tool")) .piglinLoved() .build() @@ -222,7 +222,7 @@ public class AstromineFoundationsMaterialSets extends AstromineMaterialSets { .setType(MaterialItemType.HELMET, new Identifier("netherite_helmet")).setType(MaterialItemType.CHESTPLATE, new Identifier("netherite_chestplate")) .setType(MaterialItemType.LEGGINGS, new Identifier("netherite_leggings")).setType(MaterialItemType.BOOTS, new Identifier("netherite_boots")) .nugget().dusts() - .gear().plates() + .gear().plate() .multiTools() .smithingBaseSet(DIAMOND) .build() diff --git a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsModelStateGenerators.java b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsModelStateGenerators.java index aeb2de158..7a6a6d302 100644 --- a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsModelStateGenerators.java +++ b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsModelStateGenerators.java @@ -31,7 +31,7 @@ public class AstromineFoundationsModelStateGenerators extends AstromineModelStat public final ModelStateGenerator TINY_DUST = register(new GenericItemSetModelGenerator(MaterialItemType.TINY_DUST)); public final ModelStateGenerator GEAR = register(new GenericItemSetModelGenerator(MaterialItemType.GEAR)); - public final ModelStateGenerator PLATES = register(new GenericItemSetModelGenerator(MaterialItemType.PLATES)); + public final ModelStateGenerator PLATES = register(new GenericItemSetModelGenerator(MaterialItemType.PLATE)); public final ModelStateGenerator WIRE = register(new GenericItemSetModelGenerator(MaterialItemType.WIRE)); public final ModelStateGenerator PICKAXE = register(new HandheldItemSetModelGenerator(MaterialItemType.PICKAXE)); diff --git a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsRecipeGenerators.java b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsRecipeGenerators.java index c4c9b64d0..e13adad8b 100644 --- a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsRecipeGenerators.java +++ b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsRecipeGenerators.java @@ -110,7 +110,7 @@ public class AstromineFoundationsRecipeGenerators extends AstromineRecipeGenerat public final RecipeGenerator TINY_DUST_TO_NUGGET_BLASTING = register(new BlastingSetRecipeGenerator(TINY_DUST, NUGGET)); public final RecipeGenerator TINY_DUST_TO_FRAGMENT_BLASTING = register(new BlastingSetRecipeGenerator(TINY_DUST, FRAGMENT)); - public final RecipeGenerator INGOT_TO_PLATES_CRAFTING = register(new ShapedCraftingSetRecipeGenerator(INGOT, PLATES, "#", "#")); + public final RecipeGenerator INGOT_TO_PLATES_CRAFTING = register(new ShapedCraftingSetRecipeGenerator(INGOT, PLATE, "#", "#")); public final RecipeGenerator INGOT_TO_GEAR_CRAFTING = register(new ShapedCraftingSetRecipeGenerator(INGOT, GEAR, 2, " # ", "# #", " # ")); public final RecipeGenerator PICKAXE_SMITHING_FROM_INGOT = register(new SmithingSetRecipeGenerator(PICKAXE, INGOT)); diff --git a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsTagGenerators.java b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsTagGenerators.java index e70ec42d7..35b5fa0aa 100644 --- a/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsTagGenerators.java +++ b/astromine-foundations/src/datagen/java/com/github/chainmailstudios/astromine/foundations/datagen/registry/AstromineFoundationsTagGenerators.java @@ -48,7 +48,7 @@ public class AstromineFoundationsTagGenerators extends AstromineTagGenerators { public final SetTagGenerator PIGLIN_LOVED_ORES = register(new PiglinLovedTagGenerator(MaterialItemType.ORE)); public final SetTagGenerator PIGLIN_LOVED_GEMS = register(new PiglinLovedTagGenerator(MaterialItemType.GEM)); public final SetTagGenerator PIGLIN_LOVED_GEARS = register(new PiglinLovedTagGenerator(MaterialItemType.GEAR)); - public final SetTagGenerator PIGLIN_LOVED_PLATES = register(new PiglinLovedTagGenerator(MaterialItemType.PLATES)); + public final SetTagGenerator PIGLIN_LOVED_PLATES = register(new PiglinLovedTagGenerator(MaterialItemType.PLATE)); public final SetTagGenerator PIGLIN_LOVED_WIRES = register(new PiglinLovedTagGenerator(MaterialItemType.WIRE)); public final SetTagGenerator PIGLIN_LOVED_DUSTS = register(new PiglinLovedTagGenerator(MaterialItemType.DUST)); public final SetTagGenerator PIGLIN_LOVED_METEOR_CLUSTERS = register(new PiglinLovedTagGenerator(MaterialItemType.METEOR_CLUSTER)); @@ -91,5 +91,5 @@ public class AstromineFoundationsTagGenerators extends AstromineTagGenerators { public final OneTimeTagGenerator ENCHANTED_GOLDEN_APPLE = register(new ItemInTagGenerator(new Identifier("c", "golden_apples"), new Identifier("enchanted_golden_apple"))); public final SetTagGenerator GEARS = register(new GenericSetTagGenerator("gears", AstromineCommon.identifier("gears"), MaterialItemType.GEAR)); - public final SetTagGenerator PLATES = register(new GenericSetTagGenerator("plates", AstromineCommon.identifier("plates"), MaterialItemType.PLATES)); + public final SetTagGenerator PLATES = register(new GenericSetTagGenerator("plates", AstromineCommon.identifier("plates"), MaterialItemType.PLATE)); } diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/lunum_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/bronze_plate.json similarity index 58% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/lunum_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/bronze_plate.json index 6bae9e7eb..4a1a5f958 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/lunum_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/bronze_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/lunum_plates" + "layer0": "astromine:item/bronze_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/copper_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/copper_plate.json new file mode 100644 index 000000000..f2910805b --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/copper_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/copper_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/electrum_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/electrum_plate.json new file mode 100644 index 000000000..24f0b38af --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/electrum_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/electrum_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/fools_gold_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/fools_gold_plate.json new file mode 100644 index 000000000..f2bc6ccd3 --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/fools_gold_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/fools_gold_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/tin_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/gold_plate.json similarity index 60% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/tin_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/gold_plate.json index 973395c46..4d390050a 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/tin_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/gold_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/tin_plates" + "layer0": "astromine:item/gold_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/lead_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/iron_plate.json similarity index 59% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/lead_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/iron_plate.json index 9c04a7034..aa3df5332 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/lead_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/iron_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/lead_plates" + "layer0": "astromine:item/iron_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/iron_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/lead_plate.json similarity index 59% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/iron_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/lead_plate.json index fd8cba4e3..f4dd53247 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/iron_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/lead_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/iron_plates" + "layer0": "astromine:item/lead_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/gold_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/lunum_plate.json similarity index 59% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/gold_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/lunum_plate.json index c1e7f7148..040c632f3 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/gold_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/lunum_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/gold_plates" + "layer0": "astromine:item/lunum_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/fools_gold_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/meteoric_steel_plate.json similarity index 54% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/fools_gold_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/meteoric_steel_plate.json index 94ad4326a..60fe9d315 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/fools_gold_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/meteoric_steel_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/fools_gold_plates" + "layer0": "astromine:item/meteoric_steel_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/meteoric_steel_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/meteoric_steel_plates.json deleted file mode 100644 index ae705d0c7..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/meteoric_steel_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/meteoric_steel_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/metite_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/metite_plate.json new file mode 100644 index 000000000..eda63ebd7 --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/metite_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/metite_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/metite_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/metite_plates.json deleted file mode 100644 index dbf0232dc..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/metite_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/metite_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/electrum_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/netherite_plate.json similarity index 57% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/electrum_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/netherite_plate.json index 22928af72..026d11610 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/electrum_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/netherite_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/electrum_plates" + "layer0": "astromine:item/netherite_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/netherite_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/netherite_plates.json deleted file mode 100644 index f7c545649..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/netherite_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/netherite_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/rose_gold_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/rose_gold_plate.json new file mode 100644 index 000000000..0a447b54a --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/rose_gold_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/rose_gold_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/rose_gold_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/rose_gold_plates.json deleted file mode 100644 index 3c47d44e8..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/rose_gold_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/rose_gold_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/silver_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/silver_plate.json new file mode 100644 index 000000000..abb123426 --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/silver_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/silver_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/silver_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/silver_plates.json deleted file mode 100644 index d66bd0dc4..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/silver_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/silver_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/steel_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/steel_plate.json new file mode 100644 index 000000000..b3261769a --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/steel_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/steel_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/steel_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/steel_plates.json deleted file mode 100644 index 220139c21..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/steel_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/steel_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/bronze_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/stellum_plate.json similarity index 58% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/bronze_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/stellum_plate.json index 435d1040f..527d0e7a6 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/bronze_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/stellum_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/bronze_plates" + "layer0": "astromine:item/stellum_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/stellum_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/stellum_plates.json deleted file mode 100644 index 90328349b..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/stellum_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/stellum_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/sterling_silver_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/sterling_silver_plate.json new file mode 100644 index 000000000..f07952e00 --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/sterling_silver_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/sterling_silver_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/sterling_silver_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/sterling_silver_plates.json deleted file mode 100644 index 5039b587c..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/sterling_silver_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/sterling_silver_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/tin_plate.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/tin_plate.json new file mode 100644 index 000000000..b0f7164bf --- /dev/null +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/tin_plate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "astromine:item/tin_plate" + } +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/copper_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/univite_plate.json similarity index 58% rename from astromine-foundations/src/generated/resources/assets/astromine/models/item/copper_plates.json rename to astromine-foundations/src/generated/resources/assets/astromine/models/item/univite_plate.json index 5604e70be..4b7fbfc4a 100644 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/copper_plates.json +++ b/astromine-foundations/src/generated/resources/assets/astromine/models/item/univite_plate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "astromine:item/copper_plates" + "layer0": "astromine:item/univite_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/assets/astromine/models/item/univite_plates.json b/astromine-foundations/src/generated/resources/assets/astromine/models/item/univite_plates.json deleted file mode 100644 index 37fea4374..000000000 --- a/astromine-foundations/src/generated/resources/assets/astromine/models/item/univite_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "astromine:item/univite_plates" - } -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lunum_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/bronze_plate.json similarity index 82% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lunum_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/bronze_plate.json index b289f5047..5cf0d6a6a 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lunum_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/bronze_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:lunum_plates" + "astromine:bronze_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:lunum_plates" + "recipe": "astromine:bronze_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/copper_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/copper_plate.json new file mode 100644 index 000000000..01a7896bf --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/copper_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:copper_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:copper_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/electrum_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/electrum_plate.json new file mode 100644 index 000000000..938eb8f8c --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/electrum_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:electrum_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:electrum_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/fools_gold_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/fools_gold_plate.json new file mode 100644 index 000000000..200aa0491 --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/fools_gold_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:fools_gold_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:fools_gold_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/tin_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/gold_plate.json similarity index 83% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/tin_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/gold_plate.json index d9e346666..9a9522baa 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/tin_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/gold_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:tin_plates" + "astromine:gold_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:tin_plates" + "recipe": "astromine:gold_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lead_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/iron_plate.json similarity index 83% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lead_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/iron_plate.json index 615fafac7..e51842826 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lead_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/iron_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:lead_plates" + "astromine:iron_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:lead_plates" + "recipe": "astromine:iron_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/iron_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lead_plate.json similarity index 83% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/iron_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lead_plate.json index 5fe62db05..589719fbe 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/iron_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lead_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:iron_plates" + "astromine:lead_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:iron_plates" + "recipe": "astromine:lead_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/gold_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lunum_plate.json similarity index 83% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/gold_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lunum_plate.json index e78ecc0f0..ca1617d37 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/lunum_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:gold_plates" + "astromine:lunum_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:gold_plates" + "recipe": "astromine:lunum_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/fools_gold_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/meteoric_steel_plate.json similarity index 79% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/fools_gold_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/meteoric_steel_plate.json index d4fd5042d..eb672e32b 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/fools_gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/meteoric_steel_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:fools_gold_plates" + "astromine:meteoric_steel_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:fools_gold_plates" + "recipe": "astromine:meteoric_steel_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/meteoric_steel_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/meteoric_steel_plates.json deleted file mode 100644 index 69ebed957..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/meteoric_steel_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:meteoric_steel_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:meteoric_steel_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/metite_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/metite_plate.json new file mode 100644 index 000000000..2f9408b2c --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/metite_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:metite_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:metite_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/metite_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/metite_plates.json deleted file mode 100644 index f06a84eae..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/metite_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:metite_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:metite_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/electrum_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/netherite_plate.json similarity index 81% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/electrum_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/netherite_plate.json index db28f4932..3e1a7bd3a 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/electrum_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/netherite_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:electrum_plates" + "astromine:netherite_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:electrum_plates" + "recipe": "astromine:netherite_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/netherite_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/netherite_plates.json deleted file mode 100644 index 029276c7b..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/netherite_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:netherite_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:netherite_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/rose_gold_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/rose_gold_plate.json new file mode 100644 index 000000000..ed2137d0f --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/rose_gold_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:rose_gold_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:rose_gold_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/rose_gold_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/rose_gold_plates.json deleted file mode 100644 index cea082eb3..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/rose_gold_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:rose_gold_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:rose_gold_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/silver_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/silver_plate.json new file mode 100644 index 000000000..ba904a7d0 --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/silver_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:silver_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:silver_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/silver_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/silver_plates.json deleted file mode 100644 index e10e09fe8..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/silver_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:silver_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:silver_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/steel_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/steel_plate.json new file mode 100644 index 000000000..4d4fe417a --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/steel_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:steel_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:steel_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/steel_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/steel_plates.json deleted file mode 100644 index fcb81b980..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/steel_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:steel_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:steel_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/bronze_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/stellum_plate.json similarity index 82% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/bronze_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/stellum_plate.json index 8f3c12d7b..4f6417cd6 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/bronze_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/stellum_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:bronze_plates" + "astromine:stellum_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:bronze_plates" + "recipe": "astromine:stellum_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/stellum_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/stellum_plates.json deleted file mode 100644 index 5b9008408..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/stellum_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:stellum_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:stellum_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/sterling_silver_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/sterling_silver_plate.json new file mode 100644 index 000000000..b2e18e403 --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/sterling_silver_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:sterling_silver_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:sterling_silver_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/sterling_silver_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/sterling_silver_plates.json deleted file mode 100644 index 545be03b9..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/sterling_silver_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:sterling_silver_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:sterling_silver_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/tin_plate.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/tin_plate.json new file mode 100644 index 000000000..e4bbd64de --- /dev/null +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/tin_plate.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "astromine:tin_plate" + ] + }, + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "astromine:tin_plate" + } + } + }, + "requirements": [ + [ + "impossible", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/copper_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/univite_plate.json similarity index 82% rename from astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/copper_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/univite_plate.json index 4ab02aa8b..f0722c1e6 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/copper_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/univite_plate.json @@ -2,7 +2,7 @@ "parent": "minecraft:recipes/root", "rewards": { "recipes": [ - "astromine:copper_plates" + "astromine:univite_plate" ] }, "criteria": { @@ -12,7 +12,7 @@ "has_the_recipe": { "trigger": "minecraft:recipe_unlocked", "conditions": { - "recipe": "astromine:copper_plates" + "recipe": "astromine:univite_plate" } } }, diff --git a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/univite_plates.json b/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/univite_plates.json deleted file mode 100644 index d9c79c613..000000000 --- a/astromine-foundations/src/generated/resources/data/astromine/advancements/recipes/astromine.foundations/univite_plates.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "astromine:univite_plates" - ] - }, - "criteria": { - "impossible": { - "trigger": "minecraft:impossible" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "astromine:univite_plates" - } - } - }, - "requirements": [ - [ - "impossible", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/bronze_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/bronze_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/bronze_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/bronze_plate.json index 2c13a07fb..2cbe5e2c0 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/bronze_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/bronze_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:bronze_plates" + "item": "astromine:bronze_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/copper_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/copper_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/copper_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/copper_plate.json index 3a8e006ed..a9f20e085 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/copper_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/copper_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:copper_plates" + "item": "astromine:copper_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/electrum_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/electrum_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/electrum_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/electrum_plate.json index 1fec60e1b..2117c38b5 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/electrum_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/electrum_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:electrum_plates" + "item": "astromine:electrum_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/fools_gold_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/fools_gold_plate.json similarity index 79% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/fools_gold_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/fools_gold_plate.json index bafadb9cb..6968d5c58 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/fools_gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/fools_gold_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:fools_gold_plates" + "item": "astromine:fools_gold_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/gold_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/gold_plate.json similarity index 81% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/gold_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/gold_plate.json index 4abc966af..73e32eb22 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/gold_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:gold_plates" + "item": "astromine:gold_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/iron_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/iron_plate.json similarity index 81% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/iron_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/iron_plate.json index e768829d4..22f66bccd 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/iron_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/iron_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:iron_plates" + "item": "astromine:iron_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/lead_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/lead_plate.json similarity index 81% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/lead_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/lead_plate.json index c5722a1ae..b38e1ecca 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/lead_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/lead_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:lead_plates" + "item": "astromine:lead_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/lunum_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/lunum_plate.json similarity index 81% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/lunum_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/lunum_plate.json index c0963f42b..a20b8f2a0 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/lunum_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/lunum_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:lunum_plates" + "item": "astromine:lunum_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/meteoric_steel_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/meteoric_steel_plate.json similarity index 78% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/meteoric_steel_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/meteoric_steel_plate.json index 69b314e85..e89373082 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/meteoric_steel_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/meteoric_steel_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:meteoric_steel_plates" + "item": "astromine:meteoric_steel_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/metite_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/metite_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/metite_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/metite_plate.json index 06f9fe271..50394c17f 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/metite_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/metite_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:metite_plates" + "item": "astromine:metite_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/netherite_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/netherite_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/netherite_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/netherite_plate.json index 8ee8aabf7..aecc00a4d 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/netherite_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/netherite_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:netherite_plates" + "item": "astromine:netherite_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/rose_gold_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/rose_gold_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/rose_gold_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/rose_gold_plate.json index 66afcf875..6afdcdc9e 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/rose_gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/rose_gold_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:rose_gold_plates" + "item": "astromine:rose_gold_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/silver_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/silver_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/silver_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/silver_plate.json index 14ec64455..423030afa 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/silver_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/silver_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:silver_plates" + "item": "astromine:silver_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/steel_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/steel_plate.json similarity index 81% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/steel_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/steel_plate.json index 17d3e7691..ec839ccb5 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/steel_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/steel_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:steel_plates" + "item": "astromine:steel_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/stellum_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/stellum_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/stellum_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/stellum_plate.json index 3fa39a139..c31e2de2c 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/stellum_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/stellum_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:stellum_plates" + "item": "astromine:stellum_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/sterling_silver_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/sterling_silver_plate.json similarity index 78% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/sterling_silver_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/sterling_silver_plate.json index 5a0a9b827..359c9ea80 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/sterling_silver_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/sterling_silver_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:sterling_silver_plates" + "item": "astromine:sterling_silver_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/tin_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/tin_plate.json similarity index 81% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/tin_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/tin_plate.json index 12c0283c1..193fbe1f2 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/tin_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/tin_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:tin_plates" + "item": "astromine:tin_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/recipes/univite_plates.json b/astromine-foundations/src/generated/resources/data/astromine/recipes/univite_plate.json similarity index 80% rename from astromine-foundations/src/generated/resources/data/astromine/recipes/univite_plates.json rename to astromine-foundations/src/generated/resources/data/astromine/recipes/univite_plate.json index 339a7ac3c..69cc12810 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/recipes/univite_plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/recipes/univite_plate.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "astromine:univite_plates" + "item": "astromine:univite_plate" } } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/tags/items/plates.json b/astromine-foundations/src/generated/resources/data/astromine/tags/items/plates.json index 674f65e1b..bb48d1d96 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/tags/items/plates.json +++ b/astromine-foundations/src/generated/resources/data/astromine/tags/items/plates.json @@ -1,23 +1,23 @@ { "replace": false, "values": [ - "astromine:metite_plates", - "astromine:stellum_plates", - "astromine:univite_plates", - "astromine:lunum_plates", - "astromine:copper_plates", - "astromine:tin_plates", - "astromine:silver_plates", - "astromine:lead_plates", - "astromine:steel_plates", - "astromine:bronze_plates", - "astromine:electrum_plates", - "astromine:rose_gold_plates", - "astromine:sterling_silver_plates", - "astromine:fools_gold_plates", - "astromine:meteoric_steel_plates", - "astromine:iron_plates", - "astromine:gold_plates", - "astromine:netherite_plates" + "astromine:metite_plate", + "astromine:stellum_plate", + "astromine:univite_plate", + "astromine:lunum_plate", + "astromine:copper_plate", + "astromine:tin_plate", + "astromine:silver_plate", + "astromine:lead_plate", + "astromine:steel_plate", + "astromine:bronze_plate", + "astromine:electrum_plate", + "astromine:rose_gold_plate", + "astromine:sterling_silver_plate", + "astromine:fools_gold_plate", + "astromine:meteoric_steel_plate", + "astromine:iron_plate", + "astromine:gold_plate", + "astromine:netherite_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/astromine/tags/items/tricks_piglins.json b/astromine-foundations/src/generated/resources/data/astromine/tags/items/tricks_piglins.json index f7d93ae2d..aea7c6762 100644 --- a/astromine-foundations/src/generated/resources/data/astromine/tags/items/tricks_piglins.json +++ b/astromine-foundations/src/generated/resources/data/astromine/tags/items/tricks_piglins.json @@ -5,7 +5,7 @@ "astromine:fools_gold_ingot", "astromine:fools_gold_dust", "astromine:fools_gold_tiny_dust", - "astromine:fools_gold_plates", + "astromine:fools_gold_plate", "astromine:fools_gold_gear", "astromine:fools_gold_pickaxe", "astromine:fools_gold_axe", diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/bronze_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/bronze_plates.json index 253c82c6d..30f2411b9 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/bronze_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/bronze_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:bronze_plates" + "astromine:bronze_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/copper_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/copper_plates.json index e3cf5c775..596e81442 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/copper_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/copper_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:copper_plates" + "astromine:copper_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/electrum_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/electrum_plates.json index dd0eb2227..24651e928 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/electrum_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/electrum_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:electrum_plates" + "astromine:electrum_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/fools_gold_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/fools_gold_plates.json index 96473081c..75b02ddf7 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/fools_gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/fools_gold_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:fools_gold_plates" + "astromine:fools_gold_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/gold_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/gold_plates.json index ea6eb0f3b..2e3776bd4 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/gold_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:gold_plates" + "astromine:gold_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/iron_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/iron_plates.json index 6cf2461c3..54e5b9d29 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/iron_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/iron_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:iron_plates" + "astromine:iron_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/lead_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/lead_plates.json index 9c405007c..6fd330eaa 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/lead_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/lead_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:lead_plates" + "astromine:lead_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/lunum_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/lunum_plates.json index cf2d8ce3a..d9c88b26e 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/lunum_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/lunum_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:lunum_plates" + "astromine:lunum_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json index 58b637cab..581d9e9be 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/meteoric_steel_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:meteoric_steel_plates" + "astromine:meteoric_steel_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/metite_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/metite_plates.json index f9cd5144e..856c9ef0e 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/metite_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/metite_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:metite_plates" + "astromine:metite_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/netherite_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/netherite_plates.json index 3d91075aa..9fd67997e 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/netherite_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/netherite_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:netherite_plates" + "astromine:netherite_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/rose_gold_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/rose_gold_plates.json index 123cda0c1..e411a008c 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/rose_gold_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/rose_gold_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:rose_gold_plates" + "astromine:rose_gold_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/silver_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/silver_plates.json index 207907797..26dcf7339 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/silver_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/silver_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:silver_plates" + "astromine:silver_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/steel_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/steel_plates.json index ae4a243a6..c709713ae 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/steel_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/steel_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:steel_plates" + "astromine:steel_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/stellum_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/stellum_plates.json index 7e1f3116f..c158e2dbe 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/stellum_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/stellum_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:stellum_plates" + "astromine:stellum_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/sterling_silver_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/sterling_silver_plates.json index bec51b0ac..a4c6158d6 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/sterling_silver_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/sterling_silver_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:sterling_silver_plates" + "astromine:sterling_silver_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/tin_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/tin_plates.json index 1ac393048..c6a327a61 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/tin_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/tin_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:tin_plates" + "astromine:tin_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/c/tags/items/univite_plates.json b/astromine-foundations/src/generated/resources/data/c/tags/items/univite_plates.json index 1cc17a252..e3e737586 100644 --- a/astromine-foundations/src/generated/resources/data/c/tags/items/univite_plates.json +++ b/astromine-foundations/src/generated/resources/data/c/tags/items/univite_plates.json @@ -1,6 +1,6 @@ { "replace": false, "values": [ - "astromine:univite_plates" + "astromine:univite_plate" ] } \ No newline at end of file diff --git a/astromine-foundations/src/generated/resources/data/minecraft/tags/items/piglin_loved.json b/astromine-foundations/src/generated/resources/data/minecraft/tags/items/piglin_loved.json index 5ce4b766c..fef6f308c 100644 --- a/astromine-foundations/src/generated/resources/data/minecraft/tags/items/piglin_loved.json +++ b/astromine-foundations/src/generated/resources/data/minecraft/tags/items/piglin_loved.json @@ -28,9 +28,9 @@ "astromine:rose_gold_dust", "astromine:fools_gold_dust", "astromine:gold_dust", - "astromine:rose_gold_plates", - "astromine:fools_gold_plates", - "astromine:gold_plates", + "astromine:rose_gold_plate", + "astromine:fools_gold_plate", + "astromine:gold_plate", "astromine:rose_gold_gear", "astromine:fools_gold_gear", "astromine:gold_gear", diff --git a/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/AstromineFoundationsCommon.java b/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/AstromineFoundationsCommon.java index e1c7e6eae..93fee52e2 100644 --- a/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/AstromineFoundationsCommon.java +++ b/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/AstromineFoundationsCommon.java @@ -30,6 +30,7 @@ import com.github.chainmailstudios.astromine.foundations.registry.AstromineFoundationsFeatures; import com.github.chainmailstudios.astromine.foundations.registry.AstromineFoundationsFluidEffects; import com.github.chainmailstudios.astromine.foundations.registry.AstromineFoundationsFluids; +import com.github.chainmailstudios.astromine.foundations.registry.AstromineFoundationsIdentifierFixes; import com.github.chainmailstudios.astromine.foundations.registry.AstromineFoundationsItems; import com.github.chainmailstudios.astromine.foundations.registry.AstromineFoundationsOres; @@ -47,5 +48,6 @@ public void onInitialize() { AstromineFoundationsCriteria.initialize(); AstromineFoundationsFluidEffects.initialize(); AstromineFoundationsFeatures.initialize(); + AstromineFoundationsIdentifierFixes.initialize(); } } diff --git a/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/registry/AstromineFoundationsIdentifierFixes.java b/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/registry/AstromineFoundationsIdentifierFixes.java new file mode 100644 index 000000000..3e45c87b3 --- /dev/null +++ b/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/registry/AstromineFoundationsIdentifierFixes.java @@ -0,0 +1,36 @@ +package com.github.chainmailstudios.astromine.foundations.registry; + +import com.github.chainmailstudios.astromine.registry.AstromineIdentifierFixes; +import org.jetbrains.annotations.ApiStatus; + + +public class AstromineFoundationsIdentifierFixes extends AstromineIdentifierFixes { + public static void initialize() { + initializePlateFix(); + } + + @ApiStatus.AvailableSince("1.11.4") + public static void initializePlateFix() { + register("metite_plates", "metite_plate"); + register("stellum_plates", "stellum_plate"); + register("univite_plates", "univite_plate"); + register("lunum_plates", "lunum_plate"); + + register("copper_plates", "copper_plate"); + register("tin_plates", "tin_plate"); + register("silver_plates", "silver_plate"); + register("lead_plates", "lead_plate"); + + register("steel_plates", "steel_plate"); + register("bronze_plates", "bronze_plate"); + register("electrum_plates", "electrum_plate"); + register("rose_gold_plates", "rose_gold_plate"); + register("sterling_silver_plates", "sterling_silver_plate"); + register("fools_gold_plates", "fools_gold_plate"); + register("meteoric_steel_plates", "meteoric_steel_plate"); + + register("iron_plates", "iron_plate"); + register("gold_plates", "gold_plate"); + register("netherite_plates", "netherite_plate"); + } +} diff --git a/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/registry/AstromineFoundationsItems.java b/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/registry/AstromineFoundationsItems.java index 400bb7269..10ac0224d 100644 --- a/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/registry/AstromineFoundationsItems.java +++ b/astromine-foundations/src/main/java/com/github/chainmailstudios/astromine/foundations/registry/AstromineFoundationsItems.java @@ -168,27 +168,27 @@ public class AstromineFoundationsItems extends AstromineItems { public static final Item GLOWSTONE_TINY_DUST = register("glowstone_tiny_dust", new Item(AstromineFoundationsItems.getBasicSettings())); // Materials - Plates - public static final Item METITE_PLATES = register("metite_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item STELLUM_PLATES = register("stellum_plates", new Item(AstromineFoundationsItems.getBasicSettings().fireproof())); - public static final Item UNIVITE_PLATES = register("univite_plates", new Item(AstromineFoundationsItems.getBasicSettings().fireproof())); - public static final Item LUNUM_PLATES = register("lunum_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - - public static final Item COPPER_PLATES = register("copper_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item TIN_PLATES = register("tin_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item SILVER_PLATES = register("silver_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item LEAD_PLATES = register("lead_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - - public static final Item STEEL_PLATES = register("steel_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item BRONZE_PLATES = register("bronze_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item ELECTRUM_PLATES = register("electrum_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item ROSE_GOLD_PLATES = register("rose_gold_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item STERLING_SILVER_PLATES = register("sterling_silver_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item FOOLS_GOLD_PLATES = register("fools_gold_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item METEORIC_STEEL_PLATES = register("meteoric_steel_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - - public static final Item IRON_PLATES = register("iron_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item GOLD_PLATES = register("gold_plates", new Item(AstromineFoundationsItems.getBasicSettings())); - public static final Item NETHERITE_PLATES = register("netherite_plates", new Item(AstromineFoundationsItems.getBasicSettings().fireproof())); + public static final Item METITE_PLATE = register("metite_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item STELLUM_PLATE = register("stellum_plate", new Item(AstromineFoundationsItems.getBasicSettings().fireproof())); + public static final Item UNIVITE_PLATE = register("univite_plate", new Item(AstromineFoundationsItems.getBasicSettings().fireproof())); + public static final Item LUNUM_PLATE = register("lunum_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + + public static final Item COPPER_PLATE = register("copper_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item TIN_PLATE = register("tin_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item SILVER_PLATE = register("silver_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item LEAD_PLATE = register("lead_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + + public static final Item STEEL_PLATE = register("steel_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item BRONZE_PLATE = register("bronze_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item ELECTRUM_PLATE = register("electrum_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item ROSE_GOLD_PLATE = register("rose_gold_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item STERLING_SILVER_PLATE = register("sterling_silver_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item FOOLS_GOLD_PLATE = register("fools_gold_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item METEORIC_STEEL_PLATE = register("meteoric_steel_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + + public static final Item IRON_PLATE = register("iron_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item GOLD_PLATE = register("gold_plate", new Item(AstromineFoundationsItems.getBasicSettings())); + public static final Item NETHERITE_PLATE = register("netherite_plate", new Item(AstromineFoundationsItems.getBasicSettings().fireproof())); // Materials - Gears public static final Item METITE_GEAR = register("metite_gear", new Item(AstromineFoundationsItems.getBasicSettings())); diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/bronze_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/bronze_plate.png new file mode 100644 index 000000000..601d460ab Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/bronze_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/bronze_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/bronze_plates.png deleted file mode 100644 index f9c9557ad..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/bronze_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/copper_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/copper_plate.png new file mode 100644 index 000000000..0076548ef Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/copper_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/copper_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/copper_plates.png deleted file mode 100644 index 3821c3e6e..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/copper_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/electrum_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/electrum_plate.png new file mode 100644 index 000000000..ca21d979c Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/electrum_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/electrum_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/electrum_plates.png deleted file mode 100644 index fd7cb69f6..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/electrum_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/fools_gold_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/fools_gold_plate.png new file mode 100644 index 000000000..4549614e2 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/fools_gold_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/fools_gold_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/fools_gold_plates.png deleted file mode 100644 index 4e37771ee..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/fools_gold_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/gold_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/gold_plate.png new file mode 100644 index 000000000..2959bb0b3 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/gold_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/gold_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/gold_plates.png deleted file mode 100644 index 37ac76f52..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/gold_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/iron_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/iron_plate.png new file mode 100644 index 000000000..413d38e76 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/iron_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/iron_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/iron_plates.png deleted file mode 100644 index b1bec3302..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/iron_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/lead_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/lead_plate.png new file mode 100644 index 000000000..330f78036 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/lead_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/lead_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/lead_plates.png deleted file mode 100644 index f8d28b74e..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/lead_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/lunum_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/lunum_plate.png new file mode 100644 index 000000000..89e59e744 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/lunum_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/lunum_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/lunum_plates.png deleted file mode 100644 index 5bd0fbc1e..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/lunum_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/meteoric_steel_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/meteoric_steel_plate.png new file mode 100644 index 000000000..5b2d788a0 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/meteoric_steel_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/meteoric_steel_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/meteoric_steel_plates.png deleted file mode 100644 index dee797d86..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/meteoric_steel_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/metite_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/metite_plate.png new file mode 100644 index 000000000..acd9ad09c Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/metite_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/metite_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/metite_plates.png deleted file mode 100644 index c830f1ac4..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/metite_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/netherite_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/netherite_plate.png new file mode 100644 index 000000000..e8439769f Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/netherite_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/netherite_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/netherite_plates.png deleted file mode 100644 index afb5372df..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/netherite_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/rose_gold_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/rose_gold_plate.png new file mode 100644 index 000000000..61d521dcc Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/rose_gold_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/rose_gold_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/rose_gold_plates.png deleted file mode 100644 index c6d755c59..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/rose_gold_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/silver_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/silver_plate.png new file mode 100644 index 000000000..c7e51e4c4 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/silver_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/silver_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/silver_plates.png deleted file mode 100644 index 4b7fdcb65..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/silver_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/steel_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/steel_plate.png new file mode 100644 index 000000000..54f017f5a Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/steel_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/steel_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/steel_plates.png deleted file mode 100644 index 6234f5083..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/steel_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/stellum_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/stellum_plate.png new file mode 100644 index 000000000..59a2841d6 Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/stellum_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/stellum_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/stellum_plates.png deleted file mode 100644 index 3385a0467..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/stellum_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/sterling_silver_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/sterling_silver_plate.png new file mode 100644 index 000000000..9c3a60b3f Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/sterling_silver_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/sterling_silver_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/sterling_silver_plates.png deleted file mode 100644 index 87a94d7e6..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/sterling_silver_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/tin_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/tin_plate.png new file mode 100644 index 000000000..2645de7fc Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/tin_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/tin_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/tin_plates.png deleted file mode 100644 index 6f7e8a425..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/tin_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plate.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plate.png new file mode 100644 index 000000000..13eaa6ade Binary files /dev/null and b/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plate.png differ diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plates.png.mcmeta b/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plate.png.mcmeta similarity index 100% rename from astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plates.png.mcmeta rename to astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plate.png.mcmeta diff --git a/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plates.png b/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plates.png deleted file mode 100644 index 0ce02f80e..000000000 Binary files a/astromine-foundations/src/main/resources/assets/astromine/textures/item/univite_plates.png and /dev/null differ diff --git a/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/eat_lead_apple.json b/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/eat_lead_apple.json index ac7fe896a..e948641bf 100644 --- a/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/eat_lead_apple.json +++ b/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/eat_lead_apple.json @@ -19,11 +19,9 @@ "eat_lead_apple": { "trigger": "minecraft:consume_item", "conditions": { - "items": [ - { - "item": "astromine:lead_apple" - } - ] + "item": { + "item": "astromine:lead_apple" + } } } } diff --git a/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/get_plates.json b/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/get_plate.json similarity index 69% rename from astromine-foundations/src/main/resources/data/astromine/advancements/astromine/get_plates.json rename to astromine-foundations/src/main/resources/data/astromine/advancements/astromine/get_plate.json index 5f4e08f89..0d8eeb634 100644 --- a/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/get_plates.json +++ b/astromine-foundations/src/main/resources/data/astromine/advancements/astromine/get_plate.json @@ -2,13 +2,13 @@ "parent": "astromine:astromine/root", "display": { "icon": { - "item": "astromine:iron_plates" + "item": "astromine:iron_plate" }, "title": { - "translate": "advancements.astromine.get_plates.title" + "translate": "advancements.astromine.get_plate.title" }, "description": { - "translate": "advancements.astromine.get_plates.description" + "translate": "advancements.astromine.get_plate.description" }, "frame": "task", "show_toast": true, @@ -16,7 +16,7 @@ "hidden": false }, "criteria": { - "get_plates": { + "get_plate": { "trigger": "minecraft:inventory_changed", "conditions": { "items": [ diff --git a/astromine-technologies/src/datagen/java/com/github/chainmailstudios/astromine/technologies/datagen/AstromineTechnologiesRecipeGenerators.java b/astromine-technologies/src/datagen/java/com/github/chainmailstudios/astromine/technologies/datagen/AstromineTechnologiesRecipeGenerators.java index 9b9b8c7d9..65778e17c 100644 --- a/astromine-technologies/src/datagen/java/com/github/chainmailstudios/astromine/technologies/datagen/AstromineTechnologiesRecipeGenerators.java +++ b/astromine-technologies/src/datagen/java/com/github/chainmailstudios/astromine/technologies/datagen/AstromineTechnologiesRecipeGenerators.java @@ -21,7 +21,7 @@ import static com.github.chainmailstudios.astromine.datagen.material.MaterialItemType.MISC_RESOURCE; import static com.github.chainmailstudios.astromine.datagen.material.MaterialItemType.NUGGET; import static com.github.chainmailstudios.astromine.datagen.material.MaterialItemType.ORE; -import static com.github.chainmailstudios.astromine.datagen.material.MaterialItemType.PLATES; +import static com.github.chainmailstudios.astromine.datagen.material.MaterialItemType.PLATE; import static com.github.chainmailstudios.astromine.datagen.material.MaterialItemType.TINY_DUST; @@ -37,7 +37,7 @@ public class AstromineTechnologiesRecipeGenerators extends AstromineRecipeGenera public final RecipeGenerator NUGGET_TO_TINY_DUST = register(new TrituratingSetRecipeGenerator(NUGGET, TINY_DUST, 15, 200)); public final RecipeGenerator FRAGMENT_TO_TINY_DUST = register(new TrituratingSetRecipeGenerator(FRAGMENT, TINY_DUST, 15, 200)); - public final RecipeGenerator INGOT_TO_PLATES_PRESSING = register(new PressingSetRecipeGenerator(INGOT, PLATES, 60, 340)); + public final RecipeGenerator INGOT_TO_PLATES_PRESSING = register(new PressingSetRecipeGenerator(INGOT, PLATE, 60, 340)); public final RecipeGenerator GRAVEL_FROM_COBBLESTONE = register(new TrituratingRecipeGenerator("gravel_from_triturating_cobblestone", Ingredient.ofItems(Blocks.COBBLESTONE), Blocks.GRAVEL, 20, 120)); public final RecipeGenerator SAND_FROM_GRAVEL = register(new TrituratingRecipeGenerator("sand_from_triturating_gravel", Ingredient.ofItems(Blocks.GRAVEL), Blocks.SAND, 20, 120)); diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/bronze_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/bronze_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/bronze_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/bronze_plate_from_pressing_ingot.json index 94a2efdc5..d9b43f5f8 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/bronze_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/bronze_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:bronze_plates", + "item": "astromine:bronze_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/copper_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/copper_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/copper_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/copper_plate_from_pressing_ingot.json index d5c228a87..62b48f138 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/copper_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/copper_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:copper_plates", + "item": "astromine:copper_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/electrum_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/electrum_plate_from_pressing_ingot.json similarity index 80% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/electrum_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/electrum_plate_from_pressing_ingot.json index fc1b985d6..7cd80916f 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/electrum_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/electrum_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:electrum_plates", + "item": "astromine:electrum_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/fools_gold_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/fools_gold_plate_from_pressing_ingot.json similarity index 80% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/fools_gold_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/fools_gold_plate_from_pressing_ingot.json index fe3659cab..7473f7673 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/fools_gold_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/fools_gold_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:fools_gold_plates", + "item": "astromine:fools_gold_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/gold_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/gold_plate_from_pressing_ingot.json similarity index 82% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/gold_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/gold_plate_from_pressing_ingot.json index ef250914a..f27b6ed39 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/gold_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/gold_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:gold_plates", + "item": "astromine:gold_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/iron_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/iron_plate_from_pressing_ingot.json similarity index 82% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/iron_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/iron_plate_from_pressing_ingot.json index b0e690159..efcae418e 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/iron_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/iron_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:iron_plates", + "item": "astromine:iron_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/lead_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/lead_plate_from_pressing_ingot.json similarity index 82% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/lead_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/lead_plate_from_pressing_ingot.json index 2b4798a9b..77e739fba 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/lead_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/lead_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:lead_plates", + "item": "astromine:lead_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/lunum_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/lunum_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/lunum_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/lunum_plate_from_pressing_ingot.json index d458e293a..2e5a6b605 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/lunum_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/lunum_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:lunum_plates", + "item": "astromine:lunum_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/meteoric_steel_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/meteoric_steel_plate_from_pressing_ingot.json similarity index 79% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/meteoric_steel_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/meteoric_steel_plate_from_pressing_ingot.json index fea29fa3e..023944b56 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/meteoric_steel_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/meteoric_steel_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:meteoric_steel_plates", + "item": "astromine:meteoric_steel_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/metite_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/metite_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/metite_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/metite_plate_from_pressing_ingot.json index 026251a69..43e1e4398 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/metite_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/metite_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:metite_plates", + "item": "astromine:metite_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/netherite_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/netherite_plate_from_pressing_ingot.json similarity index 80% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/netherite_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/netherite_plate_from_pressing_ingot.json index 5917a4f64..a3b73a6ce 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/netherite_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/netherite_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:netherite_plates", + "item": "astromine:netherite_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/rose_gold_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/rose_gold_plate_from_pressing_ingot.json similarity index 80% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/rose_gold_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/rose_gold_plate_from_pressing_ingot.json index e7fc4c95e..ad6493e3b 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/rose_gold_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/rose_gold_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:rose_gold_plates", + "item": "astromine:rose_gold_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/silver_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/silver_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/silver_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/silver_plate_from_pressing_ingot.json index 8048b0560..eda9fce9b 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/silver_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/silver_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:silver_plates", + "item": "astromine:silver_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/steel_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/steel_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/steel_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/steel_plate_from_pressing_ingot.json index 2b1b5ab76..7d54c16dc 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/steel_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/steel_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:steel_plates", + "item": "astromine:steel_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/stellum_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/stellum_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/stellum_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/stellum_plate_from_pressing_ingot.json index 8b78b69e3..9f461192a 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/stellum_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/stellum_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:stellum_plates", + "item": "astromine:stellum_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/sterling_silver_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/sterling_silver_plate_from_pressing_ingot.json similarity index 78% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/sterling_silver_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/sterling_silver_plate_from_pressing_ingot.json index b68472249..f7be43379 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/sterling_silver_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/sterling_silver_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:sterling_silver_plates", + "item": "astromine:sterling_silver_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/tin_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/tin_plate_from_pressing_ingot.json similarity index 82% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/tin_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/tin_plate_from_pressing_ingot.json index 5ef2ec03b..93a48dfad 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/tin_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/tin_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:tin_plates", + "item": "astromine:tin_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/generated/resources/data/astromine/recipes/univite_plates_from_pressing_ingot.json b/astromine-technologies/src/generated/resources/data/astromine/recipes/univite_plate_from_pressing_ingot.json similarity index 81% rename from astromine-technologies/src/generated/resources/data/astromine/recipes/univite_plates_from_pressing_ingot.json rename to astromine-technologies/src/generated/resources/data/astromine/recipes/univite_plate_from_pressing_ingot.json index c5c082d17..c760d8911 100644 --- a/astromine-technologies/src/generated/resources/data/astromine/recipes/univite_plates_from_pressing_ingot.json +++ b/astromine-technologies/src/generated/resources/data/astromine/recipes/univite_plate_from_pressing_ingot.json @@ -5,7 +5,7 @@ "count": 1 }, "output": { - "item": "astromine:univite_plates", + "item": "astromine:univite_plate", "count": 1 }, "time": 60, diff --git a/astromine-technologies/src/main/java/com/github/chainmailstudios/astromine/technologies/common/screenhandler/TankScreenHandler.java b/astromine-technologies/src/main/java/com/github/chainmailstudios/astromine/technologies/common/screenhandler/TankScreenHandler.java index 4caa06b42..e3d30159b 100644 --- a/astromine-technologies/src/main/java/com/github/chainmailstudios/astromine/technologies/common/screenhandler/TankScreenHandler.java +++ b/astromine-technologies/src/main/java/com/github/chainmailstudios/astromine/technologies/common/screenhandler/TankScreenHandler.java @@ -24,24 +24,23 @@ package com.github.chainmailstudios.astromine.technologies.common.screenhandler; -import com.github.chainmailstudios.astromine.common.widget.blade.FluidFilterWidget; -import com.github.chainmailstudios.astromine.technologies.common.block.entity.TankBlockEntity; -import net.minecraft.entity.player.PlayerEntity; -import net.minecraft.item.ItemStack; -import net.minecraft.screen.ScreenHandlerType; -import net.minecraft.util.math.BlockPos; - import com.github.chainmailstudios.astromine.common.component.inventory.FluidInventoryComponent; import com.github.chainmailstudios.astromine.common.item.base.FluidVolumeItem; import com.github.chainmailstudios.astromine.common.screenhandler.base.block.ComponentBlockEntityFluidInventoryScreenHandler; import com.github.chainmailstudios.astromine.common.volume.fluid.FluidVolume; +import com.github.chainmailstudios.astromine.common.widget.blade.FluidFilterWidget; import com.github.chainmailstudios.astromine.common.widget.blade.HorizontalArrowWidget; import com.github.chainmailstudios.astromine.registry.AstromineComponentTypes; +import com.github.chainmailstudios.astromine.technologies.common.block.entity.TankBlockEntity; import com.github.chainmailstudios.astromine.technologies.registry.AstromineTechnologiesScreenHandlers; import com.github.vini2003.blade.common.miscellaneous.Position; import com.github.vini2003.blade.common.miscellaneous.Size; import com.github.vini2003.blade.common.widget.base.SlotWidget; import nerdhub.cardinal.components.api.component.ComponentProvider; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ItemStack; +import net.minecraft.screen.ScreenHandlerType; +import net.minecraft.util.math.BlockPos; public class TankScreenHandler extends ComponentBlockEntityFluidInventoryScreenHandler { private TankBlockEntity tank; diff --git a/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_basic_circuit.json b/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_basic_circuit.json index 424ac7aa2..a300d0040 100644 --- a/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_basic_circuit.json +++ b/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_basic_circuit.json @@ -1,5 +1,5 @@ { - "parent": "astromine:astromine/get_plates", + "parent": "astromine:astromine/get_plate", "display": { "icon": { "item": "astromine:basic_circuit" diff --git a/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_chassis.json b/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_chassis.json index 6a4854be4..865842ae4 100644 --- a/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_chassis.json +++ b/astromine-technologies/src/main/resources/data/astromine/advancements/astromine/get_chassis.json @@ -1,5 +1,5 @@ { - "parent": "astromine:astromine/get_plates", + "parent": "astromine:astromine/get_plate", "display": { "icon": { "item": "astromine:primitive_machine_chassis" diff --git a/gradle.properties b/gradle.properties index e8ce31a6e..65e722db3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ loader_version=0.10.1+build.209 api_version=0.24.0+build.411-1.16 # Mod mod_name=astromine -mod_version=1.11.3 +mod_version=1.11.4 mod_group=com.github.chainmailstudios.astromine version_meta=fabric-1.16.3 # CurseForge