From 497eea7d3f12105d744f21d2cdb0c20a964d552d Mon Sep 17 00:00:00 2001 From: GizmoTheMoonPig <67468252+GizmoTheMoonPig@users.noreply.github.com> Date: Tue, 30 Jan 2024 23:26:20 -0700 Subject: [PATCH 1/4] hotfix: properly disable recipes in JEI if `disableUncraftingTable` is true --- .../twilightforest/compat/jei/JEICompat.java | 30 ++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/main/java/twilightforest/compat/jei/JEICompat.java b/src/main/java/twilightforest/compat/jei/JEICompat.java index 00193d53b0..c23f948e9c 100644 --- a/src/main/java/twilightforest/compat/jei/JEICompat.java +++ b/src/main/java/twilightforest/compat/jei/JEICompat.java @@ -76,20 +76,22 @@ public void registerCategories(IRecipeCategoryRegistration registration) { @Override public void registerRecipes(IRecipeRegistration registration) { RecipeManager manager = Objects.requireNonNull(Minecraft.getInstance().level).getRecipeManager(); - if (!TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.disableUncraftingOnly.get()) { //we only do this if uncrafting is not disabled - List recipes = manager.getAllRecipesFor(RecipeType.CRAFTING); - recipes = recipes.stream().filter(recipe -> - !recipe.getResultItem(Minecraft.getInstance().level.registryAccess()).isEmpty() && //get rid of empty items - !recipe.getResultItem(Minecraft.getInstance().level.registryAccess()).is(ItemTagGenerator.BANNED_UNCRAFTABLES) && //Prevents things that are tagged as banned from showing up - TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.reverseRecipeBlacklist.get() == TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.disableUncraftingRecipes.get().contains(recipe.getId().toString()) && //remove disabled recipes - TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.flipUncraftingModIdList.get() == TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.blacklistedUncraftingModIds.get().contains(recipe.getId().getNamespace())) //remove blacklisted mod ids - .collect(Collectors.toList()); - recipes.removeIf(recipe -> (recipe instanceof ShapelessRecipe && !TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.allowShapelessUncrafting.get())); - recipes.addAll(manager.getAllRecipesFor(TFRecipes.UNCRAFTING_RECIPE.get())); - registration.addRecipes(JEIUncraftingCategory.UNCRAFTING, recipes); - }else if (!TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.disableEntireTable.get()) { - List recipes = new ArrayList<>(manager.getAllRecipesFor(TFRecipes.UNCRAFTING_RECIPE.get())); - registration.addRecipes(JEIUncraftingCategory.UNCRAFTING, recipes); + if (!TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.disableEntireTable.get()) { + if (!TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.disableUncraftingOnly.get()) { //we only do this if uncrafting is not disabled + List recipes = manager.getAllRecipesFor(RecipeType.CRAFTING); + recipes = recipes.stream().filter(recipe -> + !recipe.getResultItem(Minecraft.getInstance().level.registryAccess()).isEmpty() && //get rid of empty items + !recipe.getResultItem(Minecraft.getInstance().level.registryAccess()).is(ItemTagGenerator.BANNED_UNCRAFTABLES) && //Prevents things that are tagged as banned from showing up + TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.reverseRecipeBlacklist.get() == TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.disableUncraftingRecipes.get().contains(recipe.getId().toString()) && //remove disabled recipes + TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.flipUncraftingModIdList.get() == TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.blacklistedUncraftingModIds.get().contains(recipe.getId().getNamespace())) //remove blacklisted mod ids + .collect(Collectors.toList()); + recipes.removeIf(recipe -> (recipe instanceof ShapelessRecipe && !TFConfig.COMMON_CONFIG.UNCRAFTING_STUFFS.allowShapelessUncrafting.get())); + recipes.addAll(manager.getAllRecipesFor(TFRecipes.UNCRAFTING_RECIPE.get())); + registration.addRecipes(JEIUncraftingCategory.UNCRAFTING, recipes); + } else { + List recipes = new ArrayList<>(manager.getAllRecipesFor(TFRecipes.UNCRAFTING_RECIPE.get())); + registration.addRecipes(JEIUncraftingCategory.UNCRAFTING, recipes); + } } registration.addRecipes(TransformationPowderCategory.TRANSFORMATION, manager.getAllRecipesFor(TFRecipes.TRANSFORM_POWDER_RECIPE.get())); registration.addRecipes(CrumbleHornCategory.CRUMBLE_HORN, manager.getAllRecipesFor(TFRecipes.CRUMBLE_RECIPE.get())); From a7dd8f13c653e137f977f5ffaa870fcb20fc1625 Mon Sep 17 00:00:00 2001 From: Tama <9671313+Tamaized@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:58:45 -0400 Subject: [PATCH 2/4] Don't use the vanity url --- src/main/java/twilightforest/events/EntityEvents.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/twilightforest/events/EntityEvents.java b/src/main/java/twilightforest/events/EntityEvents.java index 13e703df03..f2b7dda8d8 100644 --- a/src/main/java/twilightforest/events/EntityEvents.java +++ b/src/main/java/twilightforest/events/EntityEvents.java @@ -68,7 +68,7 @@ public class EntityEvents { @SubscribeEvent public static void alertPlayerCastleIsWIP(AdvancementEvent.AdvancementEarnEvent event) { if (event.getAdvancement().getId().equals(TwilightForestMod.prefix("progression_end"))) { - event.getEntity().sendSystemMessage(Component.translatable("gui.twilightforest.progression_end.message", Component.translatable("gui.twilightforest.progression_end.discord").withStyle(style -> style.withColor(ChatFormatting.BLUE).applyFormat(ChatFormatting.UNDERLINE).withClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, "https://discord.gg/twilightforest"))))); + event.getEntity().sendSystemMessage(Component.translatable("gui.twilightforest.progression_end.message", Component.translatable("gui.twilightforest.progression_end.discord").withStyle(style -> style.withColor(ChatFormatting.BLUE).applyFormat(ChatFormatting.UNDERLINE).withClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, "https://discord.experiment115.com/"))))); } } From 1bc3a4c21213bc443967e92125613cb9ef47891e Mon Sep 17 00:00:00 2001 From: Sae <73706334+sae220@users.noreply.github.com> Date: Wed, 4 Sep 2024 23:40:30 +0900 Subject: [PATCH 3/4] Fix missing comma in Japanese translation file (#2241) --- src/main/resources/assets/twilightforest/lang/ja_jp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/assets/twilightforest/lang/ja_jp.json b/src/main/resources/assets/twilightforest/lang/ja_jp.json index 42c59a3586..b095a25f29 100644 --- a/src/main/resources/assets/twilightforest/lang/ja_jp.json +++ b/src/main/resources/assets/twilightforest/lang/ja_jp.json @@ -1004,7 +1004,7 @@ "block.twilightforest.bold_castle_brick_tile": "太いキャッスルレンガ", "block.twilightforest.pink_castle_rune_brick": "ルーンレンガ(赤紫)", "block.twilightforest.pink_castle_door": "キャッスルドア(赤紫)", - "block.twilightforest.pink_force_field": "フォースフィールド(赤紫)" + "block.twilightforest.pink_force_field": "フォースフィールド(赤紫)", "itemGroup.twilightforest.blocks": "黄昏の森: ブロック", "itemGroup.twilightforest.equipment": "黄昏の森: 装備", "itemGroup.twilightforest.items": "黄昏の森: アイテム", From 4aefa5ea429fc163fb2c6cb53253850c3cce6184 Mon Sep 17 00:00:00 2001 From: GGlangf <104114191+GGlangf@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:18:20 -0300 Subject: [PATCH 4/4] Update es_es.json (1.20.1 - 4.3.2508) --- .../assets/twilightforest/lang/es_es.json | 1516 ++++++++++++++++- 1 file changed, 1477 insertions(+), 39 deletions(-) diff --git a/src/main/resources/assets/twilightforest/lang/es_es.json b/src/main/resources/assets/twilightforest/lang/es_es.json index d7e606f297..a09467eb97 100644 --- a/src/main/resources/assets/twilightforest/lang/es_es.json +++ b/src/main/resources/assets/twilightforest/lang/es_es.json @@ -1,52 +1,1490 @@ { - "advancement.twilightforest.arctic_dyed": "Ponerse a la moda", - "advancement.twilightforest.arctic_dyed.desc": "Tinta todas las piezas de la armadura ártica.", - "advancement.twilightforest.beanstalk": "Jack y las habichuelas mágicas", - "advancement.twilightforest.beanstalk.desc": "Obtén algunas %s en las cuevas del troll y úsalas en la tierra luminosa debajo de las nubes.", - "advancement.twilightforest.experiment_115": "¿Carne misteriosa?", - "advancement.twilightforest.experiment_115.desc": "Parece tarta, aunque...", - "advancement.twilightforest.experiment_115_2": "Toma nota: ¡Gran éxito!", + "advancement.twilightforest.arborist": "Dendrólogo maníaco", + "advancement.twilightforest.arborist.desc": "Prepara tus hachas y tijeras. ¡Busca en todos los rincones y obtén todo lo que venga de los árboles! Fabrica, saquea, obtén cada losa ... brote ... hojas ... más ... todo. ¡TODO ELLO!", + "advancement.twilightforest.arctic_dyed": "Ponerse de moda", + "advancement.twilightforest.arctic_dyed.desc": "Tiñe las cuatro piezas del atuendo ártico.", + "advancement.twilightforest.beanstalk": "Jack y las habichuelas magicas", + "advancement.twilightforest.beanstalk.desc": "Obtén algunas frijoles mágicas en las cuevas de troll y úsalos en el suelo suberoso debajo de las nubes.", + "advancement.twilightforest.experiment_115": "¿Carne Misteriosa?", + "advancement.twilightforest.experiment_115.desc": "Aunque parece un pastel...", + "advancement.twilightforest.experiment_115_2": "Tomando nota: ¡Gran éxito!", "advancement.twilightforest.experiment_115_2.desc": "¡Es tan delicioso y húmedo!", + "advancement.twilightforest.experiment_115_3": "Comer 115 por siempre", + "advancement.twilightforest.experiment_115_3.desc": "Experimento de comer ciento quince todo el día, para siempre, ciento quince veces experimento ciento quince, experimento ciento quince punto com, doble-u doble-u doble-u punto experimento ciento quince punto com.", "advancement.twilightforest.fiery_set": "Galones de sangre y lágrimas", - "advancement.twilightforest.full_mettle_alchemist": "Alquimista de pleno valor", - "advancement.twilightforest.ghast_trap": "Algo extraño en la torremadera", - "advancement.twilightforest.ghast_trap.desc": "¡Elimina a los %s alrededor de un %s y activa para arrancar el %s del cielo!", - "advancement.twilightforest.giants": "Estoy en las nubes", - "advancement.twilightforest.giants.desc": "Mata a un %s en las nubes, recupera un %s, y regresa a las cuevas del troll.", - "advancement.twilightforest.glass_sword": "Maravilla de un solo golpe", - "advancement.twilightforest.glass_sword.desc": "Espero que lo hayas aprovechado bien.", - "advancement.twilightforest.hedge": "Machacabichos", + "advancement.twilightforest.fiery_set.desc": "Empuña una herramienta o arma ardiente mientras usas al menos una pieza de armadura ardiente", + "advancement.twilightforest.full_mettle_alchemist": "Alquimista de metal completo", + "advancement.twilightforest.full_mettle_alchemist.desc": "Bebe cuatro dosis de dañando II de un frasco de poción en menos de 8 segundos y sobrevive.", + "advancement.twilightforest.ghast_trap": "Rarezas en la torre oscura", + "advancement.twilightforest.ghast_trap.desc": "Mata a los ghastling alrededor de un anti-ghasts encapsulado y actívalo con redstone para atraer al ur-ghast desde el cielo.", + "advancement.twilightforest.giants": "Estoy en la novena nube", + "advancement.twilightforest.giants.desc": "Mata a un minero gigante en las nubes, recupera un pico de piedra gigante, y regresa a las cuevas de los trolls.", + "advancement.twilightforest.glass_sword": "Maravilla de un golpe", + "advancement.twilightforest.glass_sword.desc": "Espero que hayas hecho un buen uso de eso.", + "advancement.twilightforest.hedge": "Bicho pisoteado", + "advancement.twilightforest.hedge.desc": "Derrota a una araña en un laberinto de setos.", "advancement.twilightforest.hill1": "¡Las botas son mías!", - "advancement.twilightforest.hill2": "¿Qué fue ese ruido?", + "advancement.twilightforest.hill1.desc": "Derrota a un goblin minero en una colina hueca pequeña.", + "advancement.twilightforest.hill2": "¿Qué fué ese ruido?", + "advancement.twilightforest.hill2.desc": "Derrota a un goblin zapador en un colina hueca mediana.", "advancement.twilightforest.hill3": "Veo a través de ti", - "advancement.twilightforest.hydra_chop": "¡Chuleta de hidra, cariño!", - "advancement.twilightforest.kill_cicada": "Silencio", - "advancement.twilightforest.kill_cicada.desc": "Mata a una cigarra.", - "advancement.twilightforest.kill_hydra": "Cazador de hidras", - "advancement.twilightforest.kill_lich": "Saca a tus muertos", - "advancement.twilightforest.kill_naga": "Hora de igualar la balanza", - "advancement.twilightforest.lich_scepters": "¡Por nuestros poderes combinados!", + "advancement.twilightforest.hill3.desc": "Derrota a un fantasma en un colina hueca grande.", + "advancement.twilightforest.hydra_chop": "¡Hydra hop, bebé!", + "advancement.twilightforest.hydra_chop.desc": "Coma cortes de hydra cuando tu barra de comida esté completamente vacía.", + "advancement.twilightforest.kill_cicada": "Dispara", + "advancement.twilightforest.kill_cicada.desc": "Mata una cigarra.", + "advancement.twilightforest.kill_hydra": "Asesino de hydra", + "advancement.twilightforest.kill_hydra.desc": "Derrota al poderoso hydra y empodérate.", + "advancement.twilightforest.kill_lich": "Trae a tus muertos", + "advancement.twilightforest.kill_lich.desc": "Mata al lich en la parte superior de su torre y recupera un cetro para eliminar los mosquitos venenosos del pantano, ver a través de la cegadora oscuridad de la maldición del bosque oscuro y resistir el frío del bosque nevado.", + "advancement.twilightforest.kill_naga": "Es hora de igualar las escalas", + "advancement.twilightforest.kill_naga.desc": "Mata a naga en su patio y obtén una escama de naga para superar la barrera mágica que rodea la torre del lich.", + "advancement.twilightforest.lich_scepters": "¡Por nuestros poderes!", + "advancement.twilightforest.lich_scepters.desc": "Adquiere los cuatro cetros de poder.", "advancement.twilightforest.magic_map": "Puedo ver para siempre", - "advancement.twilightforest.magic_map_focus": "Con fuego se escribe", - "advancement.twilightforest.maze_map": "Y ahora, a encontrar la salida", + "advancement.twilightforest.magic_map.desc": "Crea un mapa crepuscular.", + "advancement.twilightforest.magic_map_focus": "Escritura de fuego", + "advancement.twilightforest.magic_map_focus.desc": "Crea una pluma de cuervo crepuscular enfocada con una pluma de cuervo crepuscular, polvo de piedra luminosa, y bayas brillantes.", + "advancement.twilightforest.maze_map": "Salida localizada", + "advancement.twilightforest.maze_map.desc": "Crea el mapa del laberinto después de obtener el enfoque del laberinto.", "advancement.twilightforest.mazebreaker": "Rompiendo el laberinto", + "advancement.twilightforest.mazebreaker.desc": "Encuentra el %s en la bóveda del laberinto secreto.", "advancement.twilightforest.naga_armors": "Armero naga", + "advancement.twilightforest.naga_armors.desc": "Utiliza las escamas de naga para craftear una túnica y pantalones.", "advancement.twilightforest.ore_map": "¿Cómo puede valer la pena?", + "advancement.twilightforest.ore_map.desc": "Crea el mapa del laberinto (minerales).", "advancement.twilightforest.progress_glacier": "Cielos despejados", - "advancement.twilightforest.progress_knights": "Aclimatación de carminita", - "advancement.twilightforest.progress_labyrinth": "Poderoso Stroganoff", - "advancement.twilightforest.progress_merge": "Enfrentamiento definitivo", - "advancement.twilightforest.progress_troll": "Deseo más quemaduras", - "advancement.twilightforest.progress_trophy_pedestal": "Campeón trofeado", + "advancement.twilightforest.progress_glacier.desc": "Vencer a la reina boreal encima del palacio de aurora.", + "advancement.twilightforest.progress_knights": "Aclimatación carminita", + "advancement.twilightforest.progress_knights.desc": "Derrota a los inquietos fantasmas en la tumba del caballero y los dispositivos de la torre carminita te obedecerán.", + "advancement.twilightforest.progress_labyrinth": "Poderoso festín", + "advancement.twilightforest.progress_labyrinth.desc": "El estofado de carne y champiñones te calienta agradablemente, para que sientas que estás lo suficientemente aclimatado como para aventurarte en el pantano de fuego.", + "advancement.twilightforest.progress_merge": "Último enfrentamiento", + "advancement.twilightforest.progress_merge.desc": "Mata al hydra, ur-ghast, y la reina boreal para despejar la lluvia ácida y envalentonarte para las tierras altas.", + "advancement.twilightforest.progress_troll": "Deseo más ardor", + "advancement.twilightforest.progress_troll.desc": "Encuentra la lámpara incineradora en las cuevas de los trolls para poder quemar las barreras de espinas.", + "advancement.twilightforest.progress_trophy_pedestal": "Campeón, trofeo", + "advancement.twilightforest.progress_trophy_pedestal.desc": "Reclama tu título colocando una cabeza de jefe en el pedestal crepuscular de las ruinas del bosque oscuro.", "advancement.twilightforest.progress_ur_ghast": "Lágrimas de fuego", - "advancement.twilightforest.progress_yeti": "Pelaje alfa", - "advancement.twilightforest.quest_ram": "Baaahs consumados", - "advancement.twilightforest.root": "Bosque crepuscular", - "advancement.twilightforest.root.desc": "Adéntrate al misterioso bosque mágico: el bosque crepuscular", - "advancement.twilightforest.troll": "Trolleando un poco", + "advancement.twilightforest.progress_ur_ghast.desc": "Toca las ardientes lágrimas rojas del ur-ghast.", + "advancement.twilightforest.progress_yeti": "Piel alfa", + "advancement.twilightforest.progress_yeti.desc": "Derrote al yeti alfa y forre sus prendas con su suave pelaje, manteniéndote a salvo del frío del glaciar.", + "advancement.twilightforest.progression_end": "Fin de la progresión", + "advancement.twilightforest.progression_end.desc": "Todo lo que pase de este punto en las tierras altas es una obra en desarrollo. Se terminará en el futuro.", + "advancement.twilightforest.quest_ram": "Colores consumados", + "advancement.twilightforest.quest_ram.desc": "Dale al carnero boreal todas las lanas.", + "advancement.twilightforest.root": "Twilight Forest", + "advancement.twilightforest.root.desc": "Entra en los misteriosos bosques mágicos: el bosque crepuscular.", + "advancement.twilightforest.troll": "Hacemos un poco de troleo", + "advancement.twilightforest.troll.desc": "Encuentra y mata a un troll de cueva.", + "advancement.twilightforest.twilight_dining": "Cenamos al atardecer eterno", + "advancement.twilightforest.twilight_dining.desc": "Come TODA la comida exclusiva de la dimensión del bosque crepuscular.", "advancement.twilightforest.twilight_hunter": "El silencio del bosque", + "advancement.twilightforest.twilight_hunter.desc": "Caza parte de la fauna local.", + "advancement.twilightforest.uncraft_uncrafting_table": "Un paso demasiado lejos", + "advancement.twilightforest.uncraft_uncrafting_table.desc": "Descraftea algo en una mesa de trabajo reversiva.", + "biome.twilightforest.clearing": "Crepúsculo claro", + "biome.twilightforest.dark_forest": "Bosque negro", + "biome.twilightforest.dark_forest_center": "Central de bosque negro", + "biome.twilightforest.dense_forest": "Bosque espeso", + "biome.twilightforest.dense_mushroom_forest": "Bosque de hongos denso", + "biome.twilightforest.enchanted_forest": "Bosque encantado", + "biome.twilightforest.final_plateau": "Meseta final", + "biome.twilightforest.fire_swamp": "Pantano de fuego", + "biome.twilightforest.firefly_forest": "Bosque de luciérnagas", "biome.twilightforest.forest": "Bosque crepuscular", - "itemGroup.twilightforest.blocks": "Bosque crepuscular: Bloques", - "itemGroup.twilightforest.equipment": "Bosque crepuscular: Equipamiento", - "itemGroup.twilightforest.items": "Bosque crepuscular: Objetos" -} \ No newline at end of file + "biome.twilightforest.glacier": "Glaciar crepuscular", + "biome.twilightforest.highlands": "Tierras altas crepusculares", + "biome.twilightforest.lake": "Lago crepuscular", + "biome.twilightforest.mushroom_forest": "Bosque de hongos", + "biome.twilightforest.oak_savannah": "Sabana crepuscular", + "biome.twilightforest.snowy_forest": "Bosque nevado", + "biome.twilightforest.spooky_forest": "Bosque espeluznante", + "biome.twilightforest.stream": "Corriente crepuscular", + "biome.twilightforest.swamp": "Pantano crepuscular", + "biome.twilightforest.thornlands": "Espinalandia", + "biome.twilightforest.underground": "Subterráneo", + "block.minecraft.banner.twilightforest.alpha_yeti.black": "Cara de yeti alfa negra", + "block.minecraft.banner.twilightforest.alpha_yeti.blue": "Cara de yeti alfa azul", + "block.minecraft.banner.twilightforest.alpha_yeti.brown": "Cara de yeti alfa marrón", + "block.minecraft.banner.twilightforest.alpha_yeti.cyan": "Cara de yeti alfa cian", + "block.minecraft.banner.twilightforest.alpha_yeti.gray": "Cara de yeti alfa gris", + "block.minecraft.banner.twilightforest.alpha_yeti.green": "Cara de yeti alfa verde", + "block.minecraft.banner.twilightforest.alpha_yeti.light_blue": "Cara de yeti alfa azul claro", + "block.minecraft.banner.twilightforest.alpha_yeti.light_gray": "Cara de yeti alfa gris claro", + "block.minecraft.banner.twilightforest.alpha_yeti.lime": "Cara de yeti alfa verde lima", + "block.minecraft.banner.twilightforest.alpha_yeti.magenta": "Cara de yeti alfa magenta", + "block.minecraft.banner.twilightforest.alpha_yeti.orange": "Cara de yeti alfa naranja", + "block.minecraft.banner.twilightforest.alpha_yeti.pink": "Cara de yeti alfa rosa", + "block.minecraft.banner.twilightforest.alpha_yeti.purple": "Cara de yeti alfa morada", + "block.minecraft.banner.twilightforest.alpha_yeti.red": "Cara de yeti alfa roja", + "block.minecraft.banner.twilightforest.alpha_yeti.white": "Cara de yeti alfa blanca", + "block.minecraft.banner.twilightforest.alpha_yeti.yellow": "Cara de yeti alfa amarilla", + "block.minecraft.banner.twilightforest.hydra.black": "Llama de hydra negra", + "block.minecraft.banner.twilightforest.hydra.blue": "Llama de hydra azul", + "block.minecraft.banner.twilightforest.hydra.brown": "Llama de hydra marrón", + "block.minecraft.banner.twilightforest.hydra.cyan": "Llama de hydra cian", + "block.minecraft.banner.twilightforest.hydra.gray": "Llama de hydra gris", + "block.minecraft.banner.twilightforest.hydra.green": "Llama de hydra verde", + "block.minecraft.banner.twilightforest.hydra.light_blue": "Llama de hydra azul claro", + "block.minecraft.banner.twilightforest.hydra.light_gray": "Llama de hydra gris claro", + "block.minecraft.banner.twilightforest.hydra.lime": "Llama de hydra verde lima", + "block.minecraft.banner.twilightforest.hydra.magenta": "Llama de hydra magenta", + "block.minecraft.banner.twilightforest.hydra.orange": "Llama de hydra naranja", + "block.minecraft.banner.twilightforest.hydra.pink": "Llama de hydra rosa", + "block.minecraft.banner.twilightforest.hydra.purple": "Llama de hydra morada", + "block.minecraft.banner.twilightforest.hydra.red": "Llama de hydra roja", + "block.minecraft.banner.twilightforest.hydra.white": "Llama de hydra blanca", + "block.minecraft.banner.twilightforest.hydra.yellow": "Llama de hydra amarilla", + "block.minecraft.banner.twilightforest.knight_phantom.black": "Casco de caballero negro", + "block.minecraft.banner.twilightforest.knight_phantom.blue": "Casco de caballero azul", + "block.minecraft.banner.twilightforest.knight_phantom.brown": "Casco de caballero marrón", + "block.minecraft.banner.twilightforest.knight_phantom.cyan": "Casco de caballero cian", + "block.minecraft.banner.twilightforest.knight_phantom.gray": "Casco de caballero gris", + "block.minecraft.banner.twilightforest.knight_phantom.green": "Casco de caballero verde", + "block.minecraft.banner.twilightforest.knight_phantom.light_blue": "Casco de caballero azul claro", + "block.minecraft.banner.twilightforest.knight_phantom.light_gray": "Casco de caballero gris claro", + "block.minecraft.banner.twilightforest.knight_phantom.lime": "Casco de caballero verde lima", + "block.minecraft.banner.twilightforest.knight_phantom.magenta": "Casco de caballero magenta", + "block.minecraft.banner.twilightforest.knight_phantom.orange": "Casco de caballero naranja", + "block.minecraft.banner.twilightforest.knight_phantom.pink": "Casco de caballero rosa", + "block.minecraft.banner.twilightforest.knight_phantom.purple": "Casco de caballero morado", + "block.minecraft.banner.twilightforest.knight_phantom.red": "Casco de caballero rojo", + "block.minecraft.banner.twilightforest.knight_phantom.white": "Casco de caballero blanco", + "block.minecraft.banner.twilightforest.knight_phantom.yellow": "Casco de caballero amarillo", + "block.minecraft.banner.twilightforest.lich.black": "Corona de lich negra", + "block.minecraft.banner.twilightforest.lich.blue": "Corona de lich azul", + "block.minecraft.banner.twilightforest.lich.brown": "Corona de lich marrón", + "block.minecraft.banner.twilightforest.lich.cyan": "Corona de lich cian", + "block.minecraft.banner.twilightforest.lich.gray": "Corona de lich gris", + "block.minecraft.banner.twilightforest.lich.green": "Corona de lich verde", + "block.minecraft.banner.twilightforest.lich.light_blue": "Corona de lich azul claro", + "block.minecraft.banner.twilightforest.lich.light_gray": "Corona de lich gris claro", + "block.minecraft.banner.twilightforest.lich.lime": "Corona de lich verde lima", + "block.minecraft.banner.twilightforest.lich.magenta": "Corona de lich magenta", + "block.minecraft.banner.twilightforest.lich.orange": "Corona de lich naranja", + "block.minecraft.banner.twilightforest.lich.pink": "Corona de lich rosa", + "block.minecraft.banner.twilightforest.lich.purple": "Corona de lich morada", + "block.minecraft.banner.twilightforest.lich.red": "Corona de lich roja", + "block.minecraft.banner.twilightforest.lich.white": "Corona de lich blanca", + "block.minecraft.banner.twilightforest.lich.yellow": "Corona de lich amarilla", + "block.minecraft.banner.twilightforest.minoshroom.black": "Hachas de minotauro negras", + "block.minecraft.banner.twilightforest.minoshroom.blue": "Hachas de minotauro azules", + "block.minecraft.banner.twilightforest.minoshroom.brown": "Hachas de minotauro marrones", + "block.minecraft.banner.twilightforest.minoshroom.cyan": "Hachas de minotauro cian", + "block.minecraft.banner.twilightforest.minoshroom.gray": "Hachas de minotauro grises", + "block.minecraft.banner.twilightforest.minoshroom.green": "Hachas de minotauro verdes", + "block.minecraft.banner.twilightforest.minoshroom.light_blue": "Hachas de minotauro azules claros", + "block.minecraft.banner.twilightforest.minoshroom.light_gray": "Hachas de minotauro grises claros", + "block.minecraft.banner.twilightforest.minoshroom.lime": "Hachas de minotauro verdes lima", + "block.minecraft.banner.twilightforest.minoshroom.magenta": "Hachas de minotauro magenta", + "block.minecraft.banner.twilightforest.minoshroom.orange": "Hachas de minotauro naranjas", + "block.minecraft.banner.twilightforest.minoshroom.pink": "Hachas de minotauro rosas", + "block.minecraft.banner.twilightforest.minoshroom.purple": "Hachas de minotauro moradas", + "block.minecraft.banner.twilightforest.minoshroom.red": "Hachas de minotauro rojas", + "block.minecraft.banner.twilightforest.minoshroom.white": "Hachas de minotauro blancas", + "block.minecraft.banner.twilightforest.minoshroom.yellow": "Hachas de minotauro amarillas", + "block.minecraft.banner.twilightforest.naga.black": "Escamas de naga negras", + "block.minecraft.banner.twilightforest.naga.blue": "Escamas de naga azules", + "block.minecraft.banner.twilightforest.naga.brown": "Escamas de naga marrones", + "block.minecraft.banner.twilightforest.naga.cyan": "Escamas de naga cian", + "block.minecraft.banner.twilightforest.naga.gray": "Escamas de naga grises", + "block.minecraft.banner.twilightforest.naga.green": "Escamas de naga verdes", + "block.minecraft.banner.twilightforest.naga.light_blue": "Escamas de naga azules claros", + "block.minecraft.banner.twilightforest.naga.light_gray": "Escamas de naga grises claros", + "block.minecraft.banner.twilightforest.naga.lime": "Escamas de naga verdes lima", + "block.minecraft.banner.twilightforest.naga.magenta": "Escamas de naga magentas", + "block.minecraft.banner.twilightforest.naga.orange": "Escamas de naga naranjas", + "block.minecraft.banner.twilightforest.naga.pink": "Escamas de naga rosas", + "block.minecraft.banner.twilightforest.naga.purple": "Escamas de naga moradas", + "block.minecraft.banner.twilightforest.naga.red": "Escamas de naga rojas", + "block.minecraft.banner.twilightforest.naga.white": "Escamas de naga blancas", + "block.minecraft.banner.twilightforest.naga.yellow": "Escamas de naga amarillas", + "block.minecraft.banner.twilightforest.quest_ram.black": "Remolinos de carnero negros", + "block.minecraft.banner.twilightforest.quest_ram.blue": "Remolinos de carnero azules", + "block.minecraft.banner.twilightforest.quest_ram.brown": "Remolinos de carnero marrones", + "block.minecraft.banner.twilightforest.quest_ram.cyan": "Remolinos de carnero cian", + "block.minecraft.banner.twilightforest.quest_ram.gray": "Remolinos de carnero grises", + "block.minecraft.banner.twilightforest.quest_ram.green": "Remolinos de carnero verdes", + "block.minecraft.banner.twilightforest.quest_ram.light_blue": "Remolinos de carnero azules claros", + "block.minecraft.banner.twilightforest.quest_ram.light_gray": "Remolinos de carnero grises claros", + "block.minecraft.banner.twilightforest.quest_ram.lime": "Remolinos de carnero verdes lima", + "block.minecraft.banner.twilightforest.quest_ram.magenta": "Remolinos de carnero magentas", + "block.minecraft.banner.twilightforest.quest_ram.orange": "Remolinos de carnero naranjas", + "block.minecraft.banner.twilightforest.quest_ram.pink": "Remolinos de carnero rosas", + "block.minecraft.banner.twilightforest.quest_ram.purple": "Remolinos de carnero morados", + "block.minecraft.banner.twilightforest.quest_ram.red": "Remolinos de carnero rojos", + "block.minecraft.banner.twilightforest.quest_ram.white": "Remolinos de carnero blancos", + "block.minecraft.banner.twilightforest.quest_ram.yellow": "Remolinos de carnero amarillos", + "block.minecraft.banner.twilightforest.snow_queen.black": "Corona de reina boreal negra", + "block.minecraft.banner.twilightforest.snow_queen.blue": "Corona de reina boreal azul", + "block.minecraft.banner.twilightforest.snow_queen.brown": "Corona de reina boreal marrón", + "block.minecraft.banner.twilightforest.snow_queen.cyan": "Corona de reina boreal cian", + "block.minecraft.banner.twilightforest.snow_queen.gray": "Corona de reina boreal gris", + "block.minecraft.banner.twilightforest.snow_queen.green": "Corona de reina boreal verde", + "block.minecraft.banner.twilightforest.snow_queen.light_blue": "Corona de reina boreal azul claro", + "block.minecraft.banner.twilightforest.snow_queen.light_gray": "Corona de reina boreal gris claro", + "block.minecraft.banner.twilightforest.snow_queen.lime": "Corona de reina boreal verde lima", + "block.minecraft.banner.twilightforest.snow_queen.magenta": "Corona de reina boreal magenta", + "block.minecraft.banner.twilightforest.snow_queen.orange": "Corona de reina boreal naranja", + "block.minecraft.banner.twilightforest.snow_queen.pink": "Corona de reina boreal rosa", + "block.minecraft.banner.twilightforest.snow_queen.purple": "Corona de reina boreal morada", + "block.minecraft.banner.twilightforest.snow_queen.red": "Corona de reina boreal roja", + "block.minecraft.banner.twilightforest.snow_queen.white": "Corona de reina boreal blanca", + "block.minecraft.banner.twilightforest.snow_queen.yellow": "Corona de reina boreal amarilla", + "block.minecraft.banner.twilightforest.ur_ghast.black": "Borde de carminita negro", + "block.minecraft.banner.twilightforest.ur_ghast.blue": "Borde de carminita azul", + "block.minecraft.banner.twilightforest.ur_ghast.brown": "Borde de carminita marrón", + "block.minecraft.banner.twilightforest.ur_ghast.cyan": "Borde de carminita cian", + "block.minecraft.banner.twilightforest.ur_ghast.gray": "Borde de carminita gris", + "block.minecraft.banner.twilightforest.ur_ghast.green": "Borde de carminita verde", + "block.minecraft.banner.twilightforest.ur_ghast.light_blue": "Borde de carminita azul claro", + "block.minecraft.banner.twilightforest.ur_ghast.light_gray": "Borde de carminita gris claro", + "block.minecraft.banner.twilightforest.ur_ghast.lime": "Borde de carminita verde lima", + "block.minecraft.banner.twilightforest.ur_ghast.magenta": "Borde de carminita magenta", + "block.minecraft.banner.twilightforest.ur_ghast.orange": "Borde de carminita naranja", + "block.minecraft.banner.twilightforest.ur_ghast.pink": "Borde de carminita rosa", + "block.minecraft.banner.twilightforest.ur_ghast.purple": "Borde de carminita morado", + "block.minecraft.banner.twilightforest.ur_ghast.red": "Borde de carminita rojo", + "block.minecraft.banner.twilightforest.ur_ghast.white": "Borde de carminita blanco", + "block.minecraft.banner.twilightforest.ur_ghast.yellow": "Borde de carminita amarillo", + "block.twilightforest.acacia_banister": "Barandilla de acacia", + "block.twilightforest.alpha_yeti_boss_spawner": "Generador de yeti alfa", + "block.twilightforest.alpha_yeti_trophy": "Cabeza de yeti alfa", + "block.twilightforest.antibuilder": "Anticonstructor de carminita", + "block.twilightforest.antibuilt_block": "Bloque anticonstruido", + "block.twilightforest.arctic_fur_block": "Bloque de pelaje ártico", + "block.twilightforest.arctic_fur_block.desc": "Reduce el daño por caída un 90%", + "block.twilightforest.aurora_block": "Blque de aurora", + "block.twilightforest.aurora_pillar": "Pilar de aurora", + "block.twilightforest.aurora_slab": "Losa de aurora", + "block.twilightforest.auroralized_glass": "Cristal de aurora", + "block.twilightforest.bamboo_banister": "Barandilla de bambú", + "block.twilightforest.banister.cycle": "Haz clic derecho con un hacha para modificar", + "block.twilightforest.beanstalk_leaves": "Hojas de frijoles", + "block.twilightforest.birch_banister": "Barandilla de abedul", + "block.twilightforest.blue_castle_door": "Puerta de castillo azul", + "block.twilightforest.blue_castle_rune_brick": "Ladrillos de castillo con runa azul", + "block.twilightforest.blue_force_field": "Campo de fuerza azul", + "block.twilightforest.bold_castle_brick_pillar": "Pilar de ladrillos de castillo marcados", + "block.twilightforest.bold_castle_brick_stairs": "Escaleras de ladrillos de castillo marcados", + "block.twilightforest.bold_castle_brick_tile": "Ladrillos de castillo marcados", + "block.twilightforest.bold_stone_pillar": "Pilar de piedra marcada", + "block.twilightforest.brown_thorns": "Tallo de espinas", + "block.twilightforest.built_block": "Bloque construido", + "block.twilightforest.burnt_thorns": "Tallo de espinas seco", + "block.twilightforest.candelabra": "Candelabro", + "block.twilightforest.canopy_banister": "Barandilla de canopia", + "block.twilightforest.canopy_bookshelf": "Librería de canopia", + "block.twilightforest.canopy_button": "Botón de canopia", + "block.twilightforest.canopy_chest": "Cofre de canopia", + "block.twilightforest.canopy_door": "Puerta de canopia", + "block.twilightforest.canopy_fence": "Valla de canopia", + "block.twilightforest.canopy_fence_gate": "Puerta de valla de canopia", + "block.twilightforest.canopy_hanging_sign": "Cartel colgante de canopia", + "block.twilightforest.canopy_leaves": "Hojas de canopia", + "block.twilightforest.canopy_log": "Tronco de canopia", + "block.twilightforest.canopy_planks": "Tablones de canopia", + "block.twilightforest.canopy_pressure_plate": "Placa de presión de canopia", + "block.twilightforest.canopy_sapling": "Brote de canopia", + "block.twilightforest.canopy_sign": "Cartel de canopia", + "block.twilightforest.canopy_slab": "Losa de canopia", + "block.twilightforest.canopy_stairs": "Escaleras de canopia", + "block.twilightforest.canopy_trapdoor": "Trampilla de canopia", + "block.twilightforest.canopy_wall_hanging_sign": "Cartel colgante de canopia en pared", + "block.twilightforest.canopy_wall_sign": "Cartel de canopia en pared", + "block.twilightforest.canopy_wood": "Leño de canopia", + "block.twilightforest.carminite_block": "Bloque de carminita", + "block.twilightforest.carminite_builder": "Constructor de carminita", + "block.twilightforest.carminite_reactor": "Reactor de carminita", + "block.twilightforest.casket.broken": "Tu ataúd de recuerdo estaba demasiado dañado para contener más artículos. Todos los artículos que se guardarían en su ataúd se dejaron caer al suelo.", + "block.twilightforest.casket.locked": "Este ataúd solo puede ser abierto por %s!", + "block.twilightforest.castle_brick": "Ladrillos de castillo", + "block.twilightforest.castle_brick_stairs": "Escaleras de ladrillos de castillo", + "block.twilightforest.castle_roof_tile": "Teja de castillo", + "block.twilightforest.cherry_banister": "Barandilla de cerezo", + "block.twilightforest.cicada": "Cigarra", + "block.twilightforest.cicada_jar": "Tarro con cigarra", + "block.twilightforest.cinder_furnace": "Horno de ceniza", + "block.twilightforest.cinder_log": "Tronco de ceniza", + "block.twilightforest.cinder_wood": "Leño de ceniza", + "block.twilightforest.clover_patch": "Tréboles", + "block.twilightforest.cracked_castle_brick": "Ladrillos de castillo agrietados", + "block.twilightforest.cracked_castle_brick_stairs": "Escaleras de ladrillos de castillo agrietados", + "block.twilightforest.cracked_deadrock": "Piedra disecada agrietada", + "block.twilightforest.cracked_etched_nagastone": "Piedra de naga grabada agrietada", + "block.twilightforest.cracked_mazestone": "Ladrillos crepusculares agrietados", + "block.twilightforest.cracked_nagastone_pillar": "Pilar de piedra de naga agrietada", + "block.twilightforest.cracked_nagastone_stairs_left": "Escaleras de piedra de naga agrietada (izquierda)", + "block.twilightforest.cracked_nagastone_stairs_right": "Escaleras de piedra de naga agrietada (derecha)", + "block.twilightforest.cracked_towerwood": "Tablones de torre oscura agrietados", + "block.twilightforest.cracked_underbrick": "Ladrillos cavernosos agrietados", + "block.twilightforest.creeper_skull_candle": "Cabeza de creeper con vela", + "block.twilightforest.creeper_wall_skull_candle": "Cabeza de creeper con vela en pared", + "block.twilightforest.crimson_banister": "Barandilla carmesí", + "block.twilightforest.cut_mazestone": "Piedra crepuscular cortada", + "block.twilightforest.dark_banister": "Barandilla de madera oscura", + "block.twilightforest.dark_button": "Botón de madera oscura", + "block.twilightforest.dark_chest": "Cofre de madera oscura", + "block.twilightforest.dark_door": "Puerta de madera oscura", + "block.twilightforest.dark_fence": "Valla de madera oscura", + "block.twilightforest.dark_fence_gate": "Puerta de valla de madera oscura", + "block.twilightforest.dark_hanging_sign": "Cartel colgante de madera oscura", + "block.twilightforest.dark_leaves": "Hojas de madera oscura", + "block.twilightforest.dark_log": "Tronco de madera oscura", + "block.twilightforest.dark_oak_banister": "Barandilla de roble oscuro", + "block.twilightforest.dark_planks": "Tablones de madera oscura", + "block.twilightforest.dark_pressure_plate": "Placa de presión de madera oscura", + "block.twilightforest.dark_sign": "Cartel de madera oscura", + "block.twilightforest.dark_slab": "Losa de madera oscura", + "block.twilightforest.dark_stairs": "Escaleras de madera oscura", + "block.twilightforest.dark_trapdoor": "Trampilla de madera oscura", + "block.twilightforest.dark_wall_hanging_sign": "Cartel colgante de madera oscura en pared", + "block.twilightforest.dark_wall_sign": "Cartel de madera oscura en pared", + "block.twilightforest.dark_wood": "Leño de madera oscura", + "block.twilightforest.darkwood_sapling": "Brote de madera oscura", + "block.twilightforest.deadrock": "Piedra disecada", + "block.twilightforest.death_tome_spawner": "Generador de tomo muerto", + "block.twilightforest.decorative_mazestone": "Ladrillos crepusculares cincelados", + "block.twilightforest.empty_canopy_bookshelf": "Librería de canopia vacía", + "block.twilightforest.encased_castle_brick_pillar": "Pilar de ladrillos de castillo decorados", + "block.twilightforest.encased_castle_brick_stairs": "Escaleras de ladrillos de castillo decorados", + "block.twilightforest.encased_castle_brick_tile": "Ladrillos de castillo decorados", + "block.twilightforest.encased_fire_jet": "Lanzallamas encapsulado", + "block.twilightforest.encased_smoker": "Ahumadora encapsulada", + "block.twilightforest.encased_towerwood": "Tablones de torre oscura encapsulados", + "block.twilightforest.etched_nagastone": "Piedra de naga grabada", + "block.twilightforest.experiment_115": "Experimento 115", + "block.twilightforest.fake_diamond": "Bloque de diamante falso", + "block.twilightforest.fake_gold": "Bloque de oro falso", + "block.twilightforest.fallen_leaves": "Pila de hojas", + "block.twilightforest.fiddlehead": "Brote de helecho", + "block.twilightforest.fiery_block": "Bloque de metal ardiente", + "block.twilightforest.final_boss_boss_spawner": "Generador de jefe final", + "block.twilightforest.fire_jet": "Lanzallamas natural", + "block.twilightforest.firefly": "Luciérnaga", + "block.twilightforest.firefly_jar": "Tarro de luciérnaga", + "block.twilightforest.firefly_particle_spawner": "Tarro de partículas de luciernagas", + "block.twilightforest.fluffy_cloud": "Nube densa", + "block.twilightforest.ghast_trap": "Anti-ghasts encapsulado", + "block.twilightforest.giant_cobblestone": "Roca gigante", + "block.twilightforest.giant_leaves": "Hojas de roble gigante", + "block.twilightforest.giant_log": "Tronco de roble gigante", + "block.twilightforest.giant_obsidian": "Obsidiana gigante", + "block.twilightforest.green_force_field": "Campo de fuerza verde", + "block.twilightforest.green_thorns": "Tallo de espinas verde", + "block.twilightforest.hardened_dark_leaves": "Hojas de madera oscura gruesas", + "block.twilightforest.hedge": "Seto", + "block.twilightforest.hollow_acacia_log_climbable": "Tronco de acacia hueco", + "block.twilightforest.hollow_acacia_log_horizontal": "Tronco de acacia hueco", + "block.twilightforest.hollow_acacia_log_vertical": "Tronco de acacia hueco", + "block.twilightforest.hollow_birch_log_climbable": "Tronco de abedul hueco", + "block.twilightforest.hollow_birch_log_horizontal": "Tronco de abedul hueco", + "block.twilightforest.hollow_birch_log_vertical": "Tronco de abedul hueco", + "block.twilightforest.hollow_canopy_log_climbable": "Tronco de canopia hueco", + "block.twilightforest.hollow_canopy_log_horizontal": "Tronco de canopia hueco", + "block.twilightforest.hollow_canopy_log_vertical": "Tronco de canopia hueco", + "block.twilightforest.hollow_cherry_log_climbable": "Tronco de cerezo hueco", + "block.twilightforest.hollow_cherry_log_horizontal": "Tronco de cerezo hueco", + "block.twilightforest.hollow_cherry_log_vertical": "Tronco de cerezo hueco", + "block.twilightforest.hollow_crimson_stem_climbable": "Tallo carmesí hueco", + "block.twilightforest.hollow_crimson_stem_horizontal": "Tallo carmesí hueco", + "block.twilightforest.hollow_crimson_stem_vertical": "Tallo carmesí hueco", + "block.twilightforest.hollow_dark_log_climbable": "Tronco de madera oscura hueco", + "block.twilightforest.hollow_dark_log_horizontal": "Tronco de madera oscura hueco", + "block.twilightforest.hollow_dark_log_vertical": "Tronco de madera oscura hueco", + "block.twilightforest.hollow_dark_oak_log_climbable": "Tronco de roble oscuro hueco", + "block.twilightforest.hollow_dark_oak_log_horizontal": "Tronco de roble oscuro hueco", + "block.twilightforest.hollow_dark_oak_log_vertical": "Tronco de roble oscuro hueco", + "block.twilightforest.hollow_jungle_log_climbable": "Tronco de jungla hueco", + "block.twilightforest.hollow_jungle_log_horizontal": "Tronco de jungla hueco", + "block.twilightforest.hollow_jungle_log_vertical": "Tronco de jungla hueco", + "block.twilightforest.hollow_mangrove_log_climbable": "Tronco de mangle hueco", + "block.twilightforest.hollow_mangrove_log_horizontal": "Tronco de mangle hueco", + "block.twilightforest.hollow_mangrove_log_vertical": "Tronco de mangle hueco", + "block.twilightforest.hollow_mining_log_climbable": "Tronco mineralizado hueco", + "block.twilightforest.hollow_mining_log_horizontal": "Tronco mineralizado hueco", + "block.twilightforest.hollow_mining_log_vertical": "Tronco mineralizado hueco", + "block.twilightforest.hollow_oak_log_climbable": "Tronco de roble hueco", + "block.twilightforest.hollow_oak_log_horizontal": "Tronco de roble hueco", + "block.twilightforest.hollow_oak_log_vertical": "Tronco de roble hueco", + "block.twilightforest.hollow_oak_sapling": "Brote grande de roble crepuscular", + "block.twilightforest.hollow_sorting_log_climbable": "Tronco sorteado hueco", + "block.twilightforest.hollow_sorting_log_horizontal": "Tronco sorteado hueco", + "block.twilightforest.hollow_sorting_log_vertical": "Tronco sorteado hueco", + "block.twilightforest.hollow_spruce_log_climbable": "Tronco de abeto hueco", + "block.twilightforest.hollow_spruce_log_horizontal": "Tronco de abeto hueco", + "block.twilightforest.hollow_spruce_log_vertical": "Tronco de abeto hueco", + "block.twilightforest.hollow_time_log_climbable": "Tronco temporizado hueco", + "block.twilightforest.hollow_time_log_horizontal": "Tronco temporizado hueco", + "block.twilightforest.hollow_time_log_vertical": "Tronco temporizado hueco", + "block.twilightforest.hollow_transformation_log_climbable": "Tronco transformado hueco", + "block.twilightforest.hollow_transformation_log_horizontal": "Tronco transformado hueco", + "block.twilightforest.hollow_transformation_log_vertical": "Tronco transformado hueco", + "block.twilightforest.hollow_twilight_oak_log_climbable": "Tronco de roble crepuscular hueco", + "block.twilightforest.hollow_twilight_oak_log_horizontal": "Tronco de roble crepuscular hueco", + "block.twilightforest.hollow_twilight_oak_log_vertical": "Tronco de roble crepuscular hueco", + "block.twilightforest.hollow_vangrove_log_climbable": "Tronco de mangle hueco", + "block.twilightforest.hollow_vangrove_log_horizontal": "Tronco de mangle hueco", + "block.twilightforest.hollow_vangrove_log_vertical": "Tronco de mangle hueco", + "block.twilightforest.hollow_warped_stem_climbable": "Tallo distorsionado hueco", + "block.twilightforest.hollow_warped_stem_horizontal": "Tallo distorsionado hueco", + "block.twilightforest.hollow_warped_stem_vertical": "Tallo distorsionado hueco", + "block.twilightforest.huge_lily_pad": "Nenúfar gigante", + "block.twilightforest.huge_mushgloom": "Bloque de champiñón crepuscular", + "block.twilightforest.huge_mushgloom_stem": "Bloque de champiñón crepuscular madre", + "block.twilightforest.huge_stalk": "Tallo enorme", + "block.twilightforest.huge_water_lily": "Lirio de agua enorme", + "block.twilightforest.hydra_boss_spawner": "Generador de hydra", + "block.twilightforest.hydra_trophy": "Cabeza de hydra", + "block.twilightforest.infested_towerwood": "Tablones de torre oscura infestados", + "block.twilightforest.iron_ladder": "Escalera de mano de hierro", + "block.twilightforest.ironwood_block": "Bloque de hierro vegetal", + "block.twilightforest.jungle_banister": "Barandilla de jungla", + "block.twilightforest.keepsake_casket": "Ataúd del recuerdo", + "block.twilightforest.knight_phantom_boss_spawner": "Generador de caballero fantasma", + "block.twilightforest.knight_phantom_trophy": "Cabeza de caballero fantasma", + "block.twilightforest.knightmetal_block": "Bloque de acero crepuscular", + "block.twilightforest.knightmetal_block.desc": "Funciona como un cactus más fuerte", + "block.twilightforest.lich_boss_spawner": "Generador de lich", + "block.twilightforest.lich_tower_miniature_structure": "Miniatura de la torre de lich", + "block.twilightforest.lich_trophy": "Cabeza de lich", + "block.twilightforest.liveroot_block": "Raíces vivas crepusculares", + "block.twilightforest.locked_vanishing_block": "Esfumable segura de carminita", + "block.twilightforest.mangrove_banister": "Barandilla de mangle", + "block.twilightforest.mangrove_button": "Botón de mangle", + "block.twilightforest.mangrove_chest": "Cofre de mangle", + "block.twilightforest.mangrove_door": "Puerta de mangle", + "block.twilightforest.mangrove_fence": "Valla de mangle", + "block.twilightforest.mangrove_fence_gate": "Puerta de valla de mangle", + "block.twilightforest.mangrove_hanging_sign": "Cartel colgante de mangle", + "block.twilightforest.mangrove_leaves": "Hojas de mangle", + "block.twilightforest.mangrove_log": "Tronco de mangle", + "block.twilightforest.mangrove_planks": "Tablones de mangle", + "block.twilightforest.mangrove_pressure_plate": "Placa de presión de mangle", + "block.twilightforest.mangrove_root": "Raíces de mangle", + "block.twilightforest.mangrove_sapling": "Brote de mangle", + "block.twilightforest.mangrove_sign": "Cartel de mangle", + "block.twilightforest.mangrove_slab": "Losa de mangle", + "block.twilightforest.mangrove_stairs": "Escaleras de mangle", + "block.twilightforest.mangrove_trapdoor": "Trampilla de mangle", + "block.twilightforest.mangrove_wall_hanging_sign": "Cartel colgante de mangle en pared", + "block.twilightforest.mangrove_wall_sign": "Cartel de mangle en pared", + "block.twilightforest.mangrove_wood": "Leño de mangle", + "block.twilightforest.mayapple": "Trébol crepuscular", + "block.twilightforest.mazestone": "Piedra crepuscular", + "block.twilightforest.mazestone_border": "Ladrillos crepusculares decorados", + "block.twilightforest.mazestone_brick": "Ladrillos crepusculares", + "block.twilightforest.mazestone_mosaic": "Ladrillos crepusculares con mosaico", + "block.twilightforest.mining_banister": "Barandilla mineralizada", + "block.twilightforest.mining_button": "Botón mineralizado", + "block.twilightforest.mining_chest": "Cofre mineralizado", + "block.twilightforest.mining_door": "Puerta mineralizada", + "block.twilightforest.mining_fence": "Valla mineralizada", + "block.twilightforest.mining_fence_gate": "Puerta de valla mineralizada", + "block.twilightforest.mining_hanging_sign": "Cartel colgante mineralizado", + "block.twilightforest.mining_leaves": "Hojas mineralizadas", + "block.twilightforest.mining_log": "Tronco mineralizado", + "block.twilightforest.mining_log_core": "Tronco mineralizado central", + "block.twilightforest.mining_planks": "Tablones mineralizados", + "block.twilightforest.mining_pressure_plate": "Placa de presión mineralizada", + "block.twilightforest.mining_sapling": "Brote mineralizado", + "block.twilightforest.mining_sign": "Cartel mineralizado", + "block.twilightforest.mining_slab": "Losa mineralizada", + "block.twilightforest.mining_stairs": "Escaleras mineralizadas", + "block.twilightforest.mining_trapdoor": "Trampilla mineralizada", + "block.twilightforest.mining_wall_hanging_sign": "Cartel colgante mineralizado en pared", + "block.twilightforest.mining_wall_sign": "Cartel mineralizado en pared", + "block.twilightforest.mining_wood": "Leño mineralizado", + "block.twilightforest.minoshroom_boss_spawner": "Generador de minotauro rojo", + "block.twilightforest.minoshroom_trophy": "Cabeza de minotauro rojo", + "block.twilightforest.moonworm": "Gusano lunar", + "block.twilightforest.moss_patch": "Musgo", + "block.twilightforest.mossy_castle_brick": "Ladrillos de castillo musgosos", + "block.twilightforest.mossy_castle_brick_stairs": "Escaleras de ladrillos de castillo musgosos", + "block.twilightforest.mossy_etched_nagastone": "Piedra de naga grabada musgosa", + "block.twilightforest.mossy_mazestone": "Ladrillos crepusculares musgosos", + "block.twilightforest.mossy_nagastone_pillar": "Pilar de piedra de naga musgosa", + "block.twilightforest.mossy_nagastone_stairs_left": "Escaleras de piedra de naga musgosas (izquierda)", + "block.twilightforest.mossy_nagastone_stairs_right": "Escaleras de piedra de naga musgosas (derecha)", + "block.twilightforest.mossy_towerwood": "Tablones de torre oscura musgosos", + "block.twilightforest.mossy_underbrick": "Ladrillos cavernosos musgosos", + "block.twilightforest.mushgloom": "Champiñón crepuscular", + "block.twilightforest.naga_boss_spawner": "Generador de naga", + "block.twilightforest.naga_courtyard_miniature_structure": "Miniatura del patio de naga", + "block.twilightforest.naga_trophy": "Cabeza de naga", + "block.twilightforest.nagastone": "Piedra de naga", + "block.twilightforest.nagastone_head": "Piedra de cabeza de naga", + "block.twilightforest.nagastone_pillar": "Pilar de piedra de naga", + "block.twilightforest.nagastone_stairs_left": "Escaleras de piedra de naga (izquierda)", + "block.twilightforest.nagastone_stairs_right": "Escaleras de piedra de naga (derecha)", + "block.twilightforest.oak_banister": "Barandilla de roble", + "block.twilightforest.orange_force_field": "Campo de fuerza naranja", + "block.twilightforest.piglin_skull_candle": "Cabeza de piglin con vela", + "block.twilightforest.piglin_wall_skull_candle": "Cabeza de piglin con vela en pared", + "block.twilightforest.pink_castle_door": "Puerta de castillo rosa", + "block.twilightforest.pink_castle_rune_brick": "Ladrillos de castillo con runa rosa", + "block.twilightforest.pink_force_field": "Campo de fuerza rosa", + "block.twilightforest.player_skull_candle": "Cabeza de jugador con vela", + "block.twilightforest.player_skull_candle.named": "Cabeza de %s con vela", + "block.twilightforest.player_wall_skull_candle": "Cabeza de jugador con vela en pared", + "block.twilightforest.potted_canopy_sapling": "Maceta con brote de canopia", + "block.twilightforest.potted_darkwood_sapling": "Maceta con brote de madera oscura", + "block.twilightforest.potted_dead_thorn": "Maceta con tallos de espinas seco", + "block.twilightforest.potted_fiddlehead": "Maceta con brote de helecho", + "block.twilightforest.potted_green_thorn": "Maceta con tallos de espinas verde", + "block.twilightforest.potted_hollow_oak_sapling": "Maceta con brote grande de roble crepuscular", + "block.twilightforest.potted_mangrove_sapling": "Maceta con brote de mangle", + "block.twilightforest.potted_mayapple": "Maceta con trébol crepuscular", + "block.twilightforest.potted_mining_sapling": "Maceta con brote mineralizado", + "block.twilightforest.potted_mushgloom": "Maceta con champiñon crepuscular", + "block.twilightforest.potted_rainbow_oak_sapling": "Maceta con brote boreal", + "block.twilightforest.potted_sorting_sapling": "Maceta con brote sorteado", + "block.twilightforest.potted_thorn": "Maceta con tallos de espinas", + "block.twilightforest.potted_time_sapling": "Maceta con brote temporizado", + "block.twilightforest.potted_transformation_sapling": "Maceta con brote transformado", + "block.twilightforest.potted_twilight_oak_sapling": "Maceta con brote de roble crepuscular", + "block.twilightforest.quest_ram_trophy": "Cabeza de carnero boreal", + "block.twilightforest.rainbow_oak_leaves": "Hojas boreales", + "block.twilightforest.rainbow_oak_sapling": "Brote boreal", + "block.twilightforest.rainy_cloud": "Nube lluviosa", + "block.twilightforest.reactor_debris": "Escombros del reactor", + "block.twilightforest.reappearing_block": "Espontaneo de carminita", + "block.twilightforest.red_thread": "Hilo rojo", + "block.twilightforest.root": "Raíces crepusculares", + "block.twilightforest.root_strand": "Hebras de raíz", + "block.twilightforest.skeleton_skull_candle": "Calavera de esqueleto con vela", + "block.twilightforest.skeleton_wall_skull_candle": "Calavera de esqueleto con vela en pared", + "block.twilightforest.slider": "Trampa de diapositivas", + "block.twilightforest.smoker": "Ahumador natural", + "block.twilightforest.snow_queen_boss_spawner": "Generador de reina boreal", + "block.twilightforest.snow_queen_trophy": "Cabeza de reina boreal", + "block.twilightforest.snowy_cloud": "Nube nevada", + "block.twilightforest.sorting_banister": "Barandilla sorteada", + "block.twilightforest.sorting_button": "Botón sorteado", + "block.twilightforest.sorting_chest": "Cofre sorteado", + "block.twilightforest.sorting_door": "Puerta sorteada", + "block.twilightforest.sorting_fence": "Valla sorteada", + "block.twilightforest.sorting_fence_gate": "Puerta de valla sorteda", + "block.twilightforest.sorting_hanging_sign": "Cartel colgante sorteado", + "block.twilightforest.sorting_leaves": "Hojas sorteadas", + "block.twilightforest.sorting_log": "Tronco sorteado", + "block.twilightforest.sorting_log_core": "Tronco sorteado central", + "block.twilightforest.sorting_planks": "Tablones sorteados", + "block.twilightforest.sorting_pressure_plate": "Placa de presión sorteada", + "block.twilightforest.sorting_sapling": "Brote sorteado", + "block.twilightforest.sorting_sign": "Cartel sorteado", + "block.twilightforest.sorting_slab": "Losa sorteada", + "block.twilightforest.sorting_stairs": "Escaleras sorteadas", + "block.twilightforest.sorting_trapdoor": "Trampilla sorteada", + "block.twilightforest.sorting_wall_hanging_sign": "Cartel colgante sorteado en pared", + "block.twilightforest.sorting_wall_sign": "Cartel sorteado en pared", + "block.twilightforest.sorting_wood": "Leño sorteado", + "block.twilightforest.spiral_bricks": "Ladrillos de piedra espiralizados", + "block.twilightforest.spruce_banister": "Barandilla de abeto", + "block.twilightforest.steeleaf_block": "Bloque de hojas metálicas", + "block.twilightforest.stripped_canopy_log": "Tronco de canopia sin corteza", + "block.twilightforest.stripped_canopy_wood": "Leño de canopia sin corteza", + "block.twilightforest.stripped_dark_log": "Tronco de madera oscura sin corteza", + "block.twilightforest.stripped_dark_wood": "Leño de madera oscura sin corteza", + "block.twilightforest.stripped_mangrove_log": "Tronco de mangle sin corteza", + "block.twilightforest.stripped_mangrove_wood": "Leño de mangle sin corteza", + "block.twilightforest.stripped_mining_log": "Tronco mineralizado sin corteza", + "block.twilightforest.stripped_mining_wood": "Leño mineralizado sin corteza", + "block.twilightforest.stripped_sorting_log": "Tronco sorteado sin corteza", + "block.twilightforest.stripped_sorting_wood": "Leño sorteado sin corteza", + "block.twilightforest.stripped_time_log": "Tronco temporizado sin corteza", + "block.twilightforest.stripped_time_wood": "Leño temporizado sin corteza", + "block.twilightforest.stripped_transformation_log": "Tronco transformado sin corteza", + "block.twilightforest.stripped_transformation_wood": "Leño transformado sin corteza", + "block.twilightforest.stripped_twilight_oak_log": "Tronco de roble crepuscular sin corteza", + "block.twilightforest.stripped_twilight_oak_wood": "Leño de roble crepuscular sin corteza", + "block.twilightforest.stronghold_shield": "Escudo de fortaleza", + "block.twilightforest.thick_castle_brick": "Ladrillos de castillo pulidos", + "block.twilightforest.thorn_leaves": "Hojas de espinas", + "block.twilightforest.thorn_rose": "Rosa de espinas", + "block.twilightforest.time_banister": "Barandilla temporizada", + "block.twilightforest.time_button": "Botón temporizado", + "block.twilightforest.time_chest": "Cofre temporizado", + "block.twilightforest.time_door": "Puerta temporizada", + "block.twilightforest.time_fence": "Valla temporizada", + "block.twilightforest.time_fence_gate": "Puerta de valla temporizada", + "block.twilightforest.time_hanging_sign": "Cartel colgante temporizado", + "block.twilightforest.time_leaves": "Hojas temporizadas", + "block.twilightforest.time_log": "Tronco temporizado", + "block.twilightforest.time_log_core": "Tronco temporizado central", + "block.twilightforest.time_planks": "Tablones temporizados", + "block.twilightforest.time_pressure_plate": "Placa de presión temporizada", + "block.twilightforest.time_sapling": "Brote temporizado", + "block.twilightforest.time_sign": "Cartel temporizado", + "block.twilightforest.time_slab": "Losa temporizada", + "block.twilightforest.time_stairs": "Escaleras temporizadas", + "block.twilightforest.time_trapdoor": "Trampilla temporizada", + "block.twilightforest.time_wall_hanging_sign": "Cartel colgante temporizado en pared", + "block.twilightforest.time_wall_sign": "Cartel temporizado en pared", + "block.twilightforest.time_wood": "Leño temporizado", + "block.twilightforest.torchberry_plant": "Brote de baya brillante", + "block.twilightforest.towerwood": "Tablones de torre oscura", + "block.twilightforest.transformation_banister": "Barandilla transformada", + "block.twilightforest.transformation_button": "Botón transformado", + "block.twilightforest.transformation_chest": "Cofre transformado", + "block.twilightforest.transformation_door": "Puerta transformada", + "block.twilightforest.transformation_fence": "Valla transformada", + "block.twilightforest.transformation_fence_gate": "Puerta de valla transformada", + "block.twilightforest.transformation_hanging_sign": "Cartel colgante transformado", + "block.twilightforest.transformation_leaves": "Hojas transformadas", + "block.twilightforest.transformation_log": "Tronco transformado", + "block.twilightforest.transformation_log_core": "Tronco transformado central", + "block.twilightforest.transformation_planks": "Tablones transformados", + "block.twilightforest.transformation_pressure_plate": "Placa de presión transformada", + "block.twilightforest.transformation_sapling": "Brote transformado", + "block.twilightforest.transformation_sign": "Cartel transformado", + "block.twilightforest.transformation_slab": "Losa transformada", + "block.twilightforest.transformation_stairs": "Escaleras transformadas", + "block.twilightforest.transformation_trapdoor": "Trampilla transformada", + "block.twilightforest.transformation_wall_hanging_sign": "Cartel colgante transformado en pared", + "block.twilightforest.transformation_wall_sign": "Cartel transformado en pared", + "block.twilightforest.transformation_wood": "Leño transformado", + "block.twilightforest.trollber": "Brote de bayas brillantes", + "block.twilightforest.trollsteinn": "Trollsteinn", + "block.twilightforest.trollvidr": "Brote de bayas brillantes disecado", + "block.twilightforest.trophy_pedestal": "Pedestal crepuscular", + "block.twilightforest.twilight_oak_banister": "Barandilla de roble crepuscular", + "block.twilightforest.twilight_oak_button": "Botón de roble crepuscular", + "block.twilightforest.twilight_oak_chest": "Cofre de roble crepuscular", + "block.twilightforest.twilight_oak_door": "Puerta de roble crepuscular", + "block.twilightforest.twilight_oak_fence": "Valla de roble crepuscular", + "block.twilightforest.twilight_oak_fence_gate": "Puerta de valla de roble crepuscular", + "block.twilightforest.twilight_oak_hanging_sign": "Cartel colgante de roble crepuscular", + "block.twilightforest.twilight_oak_leaves": "Hojas de roble crepuscular", + "block.twilightforest.twilight_oak_log": "Tronco de roble crepuscular", + "block.twilightforest.twilight_oak_planks": "Tablones de roble crepuscular", + "block.twilightforest.twilight_oak_pressure_plate": "Placa de presión de roble crepuscular", + "block.twilightforest.twilight_oak_sapling": "Brote de roble crepuscular", + "block.twilightforest.twilight_oak_sign": "Cartel de roble crepuscular", + "block.twilightforest.twilight_oak_slab": "Losa de roble crepuscular", + "block.twilightforest.twilight_oak_stairs": "Escaleras de roble crepuscular", + "block.twilightforest.twilight_oak_trapdoor": "Trampilla de roble crepuscular", + "block.twilightforest.twilight_oak_wall_hanging_sign": "Cartel colgante de roble crepuscular en pared", + "block.twilightforest.twilight_oak_wall_sign": "Cartel de roble crepuscular en pared", + "block.twilightforest.twilight_oak_wood": "Leño de roble crepuscular", + "block.twilightforest.twilight_portal": "Portal del bosque crepuscular", + "block.twilightforest.twilight_portal_miniature_structure": "Miniatura del portal crepuscular", + "block.twilightforest.twisted_stone": "Piedra retorcida", + "block.twilightforest.twisted_stone_pillar": "Pilar de piedra retorcida", + "block.twilightforest.uberous_soil": "Suelo suberoso", + "block.twilightforest.unbreakable_vanishing_block": "Esfumable de carminita", + "block.twilightforest.uncrafting_table": "Mesa de trabajo reversiva", + "block.twilightforest.uncrafting_table.disabled": "Este bloque ha sido deshabilitado.", + "block.twilightforest.underbrick": "Ladrillos cavernosos", + "block.twilightforest.underbrick_floor": "Ladrillos cavernosos pulidos", + "block.twilightforest.unripe_trollber": "Brote de bayas brillantes inmaduro", + "block.twilightforest.ur_ghast_boss_spawner": "Generador de ur-ghast", + "block.twilightforest.ur_ghast_trophy": "Cabeza de ur-ghast", + "block.twilightforest.vangrove_banister": "Barandilla de mangle", + "block.twilightforest.vanishing_block": "Esfumable de carminita", + "block.twilightforest.violet_castle_door": "Puerta de castillo violeta", + "block.twilightforest.violet_castle_rune_brick": "Ladrillos de castillo con runa violeta", + "block.twilightforest.violet_force_field": "Campo de fuerza violeta", + "block.twilightforest.warped_banister": "Barandilla distorsionada", + "block.twilightforest.weathered_deadrock": "Piedra disecada desgastada", + "block.twilightforest.wispy_cloud": "Nube tenue", + "block.twilightforest.wither_skeleton_skull_candle": "Calavera de esqueleto del Wither con vela", + "block.twilightforest.wither_skeleton_wall_skull_candle": "Calavera de esqueleto del Wither con vela en pared", + "block.twilightforest.worn_castle_brick": "Ladrillos de castillo gastados", + "block.twilightforest.worn_castle_brick_stairs": "Escaleras de ladrillos de castillo gastados", + "block.twilightforest.wrought_iron_fence": "Valla de hierro forjado", + "block.twilightforest.wrought_iron_fence.cap": "Haz clic derecho con un lingote o pepita de hierro para agregar un remate", + "block.twilightforest.yellow_castle_door": "Puerta de castillo amarilla", + "block.twilightforest.yellow_castle_rune_brick": "Ladrillos de castillo con runa amarilla", + "block.twilightforest.zombie_skull_candle": "Cabeza de zombi con vela", + "block.twilightforest.zombie_wall_skull_candle": "Cabeza de zombi con vela en pared", + "commands.tffeature.center": "Center of feature: %s", + "commands.tffeature.chunk": "Located in feature chunk: %s", + "commands.tffeature.nearest": "The nearest feature is: %s", + "commands.tffeature.none_nearby": "Couldn't find a feature nearby!", + "commands.tffeature.not_in_twilight_forest": "You are not in the Twilight Forest dimension", + "commands.tffeature.not_player": "This command must be run by a valid player!", + "commands.tffeature.structure.conquer.status": "Structure conquer flag: %s", + "commands.tffeature.structure.conquer.update": "Structure conquer flag was %s, changing to %s", + "commands.tffeature.structure.inside": "You are in a Landmark structure", + "commands.tffeature.structure.outside": "You are not in a Landmark structure", + "commands.tffeature.structure.required": "You are not in a structure", + "commands.tffeature.structure.spawn_info": "%s, Weight %s", + "commands.tffeature.structure.spawn_list": "Spawn list for this area is:", + "commands.tffeature.usage": "/%s ", + "config.jade.plugin_twilightforest.quest_ram_wool": "Lana de carnero de búsqueda", + "container.twilightforest.uncrafting_table": "Mesa de trabajo reversiva", + "container.twilightforest.uncrafting_table.disabled_item": "Este objeto esta deshabilitado.", + "container.twilightforest.uncrafting_table.uncrafting_disabled": "Está deshabilitado en la configuración", + "death.attack.twilightforest.acid_rain": "%1$s fue a bailar bajo la lluvia ácida", + "death.attack.twilightforest.ant": "%1$s vivió la vida de una hormiga gracias a %2$s", + "death.attack.twilightforest.ant.item": "%1$s vivió la vida de una hormiga gracias a %2$s utilizando %3$s", + "death.attack.twilightforest.axing": "%1$s fué cortado por %2$s", + "death.attack.twilightforest.axing.item": "%1$s fué cortado por %2$s utilizando %3$s", + "death.attack.twilightforest.chillingBreath": "%1$s fué congelado hasta la muerte por la reina boreal", + "death.attack.twilightforest.chillingBreath.player": "%1$s fué congelado hasta la muerte por la reina boreal mientras escapaba de %2$s", + "death.attack.twilightforest.clamped": "%1$s fué sujetado a muerte por %2$s", + "death.attack.twilightforest.clamped.item": "%1$s fué sujetado a muerte por %2$s utilizando %3$s", + "death.attack.twilightforest.expired": "La vida de %1$s expiró", + "death.attack.twilightforest.expired.player": "La vida de %1$s expiró", + "death.attack.twilightforest.fiery": "%1$s murió quemado por caminar encima de un bloque de metal ardiente", + "death.attack.twilightforest.fiery.player": "%1$s murió quemado por caminar encima de un bloque de metal ardiente mientras escapaba de %2$s", + "death.attack.twilightforest.fireJet": "%1$s accidentalmente se incineró con un lanzallamas natural", + "death.attack.twilightforest.fireJet.player": "%1$s accidentalmente se incineró con un lanzallamas natural mientras escapaba de %2$s", + "death.attack.twilightforest.frozen": "%1$s fue congelado por %2$s utilizando una bomba de hielo", + "death.attack.twilightforest.frozen.item": "%1$s fue congelado por %2$s utilizando %3$s", + "death.attack.twilightforest.ghastTear": "%1$s fué escaldado por lágrimas ardientes", + "death.attack.twilightforest.ghastTear.player": "%1$s fué escaldado por lágrimas ardientes mientras escapaba de %2$s", + "death.attack.twilightforest.haunt": "%1$s se unió a la guarida de pedro %2$s", + "death.attack.twilightforest.haunt.item": "%1$s se unió a la guarida de pedro %2$s después de ser asesinado con %3$s", + "death.attack.twilightforest.hydraBite": "La piel de %1$s fué arrancada por la hydra", + "death.attack.twilightforest.hydraBite.player": " piel de %1$s fué arrancada por la hydra mientras escapaba de %2$s", + "death.attack.twilightforest.hydraFire": "%1$s fué asado vivo por la hydra", + "death.attack.twilightforest.hydraFire.player": "%1$s fué asado vivo por la hydra mientras escapaba de %2$s", + "death.attack.twilightforest.knightmetal": "%1$s murió pinchado por un bloque de acero crepuscular", + "death.attack.twilightforest.knightmetal.player": "%1$s murió pinchado por un bloque de acero crepuscular mientras escapaba %2$s", + "death.attack.twilightforest.leafBrain": "El cerebro de %1$s se convirtió en hojas por %2$s", + "death.attack.twilightforest.leafBrain.item": "El cerebro de %1$s se convirtió en hojas por %2$s utilizando %3$s", + "death.attack.twilightforest.lichBolt": "La puntería de lich era mejor que la de %1$s", + "death.attack.twilightforest.lichBolt.player": "El lich y %2$s tenían mejor puntería que %1$s", + "death.attack.twilightforest.lichBomb": "%1$s sucumbió a la magia explosiva del lich", + "death.attack.twilightforest.lichBomb.player": "%1$s sucumbió a la magia explosiva del lich mientras escapaba de %2$s", + "death.attack.twilightforest.lifedrain": "La vida de %1$s fue drenada por %2$s", + "death.attack.twilightforest.lifedrain.item": "La vida de %1$s fue drenada por %2$s usando %3$s", + "death.attack.twilightforest.lostWords": "%1$s se quedó sin palabras después de ser asesinado por %2$s", + "death.attack.twilightforest.lostWords.item": "%1$s se quedó sin palabras después de ser asesinado por %2$s utilizando %3$s", + "death.attack.twilightforest.moonworm": "%1$s Fue disparado por el gusano de luna", + "death.attack.twilightforest.reactor": "%1$s estaba demasiado cerca de una madera pro-ghasts", + "death.attack.twilightforest.reactor.player": "%1$s estaba demasiado cerca de una madera pro-ghasts por escapar de %2$s", + "death.attack.twilightforest.schooled": "%1$s fue educado por %2$s", + "death.attack.twilightforest.schooled.item": "%1$s fue educado por %2$s usando %3$s", + "death.attack.twilightforest.scorched": "%1$s fué incendiado por %2$s", + "death.attack.twilightforest.scorched.item": "%1$s fué incendiado por %2$s utilizando %3$s", + "death.attack.twilightforest.slider": "%1$s fue cortado por una trampa deslizante", + "death.attack.twilightforest.slider.player": "%1$s fue cortado por una trampa deslizante mientras escapaba de %2$s", + "death.attack.twilightforest.snowballFight": "%1$s perdió una pelea de bolas de nieve ante %2$s", + "death.attack.twilightforest.snowballFight.item": "%1$s perdió una pelea de bolas de nieve ante %2$s utilizando %3$s", + "death.attack.twilightforest.spiked": "%1$s fué empalado por %2$s", + "death.attack.twilightforest.spiked.item": "%1$s fué empalado por %2$s utilizando %3$s", + "death.attack.twilightforest.squish": "%1$s fué aplastado por la reina boreal", + "death.attack.twilightforest.squish.player": "%1$s fué aplastado por la reina boreal mientras escapaba de %2$s", + "death.attack.twilightforest.thorns": "%1$s murió espinado", + "death.attack.twilightforest.thorns.player": "%1$s murió espinado mientras escapaba de %2$s", + "death.attack.twilightforest.thrownAxe": "%1$s fué decapitado por una hacha arrojada", + "death.attack.twilightforest.thrownAxe.player": "%1$s fué decapitado por una hacha arrojada mientras escapaba de %2$s", + "death.attack.twilightforest.thrownBlock": "%1$s fue aplastado por un bloque lanzado", + "death.attack.twilightforest.thrownBlock.player": "%1$s fue aplastado por un bloque lanzado mientras escapaba de %2$s", + "death.attack.twilightforest.thrownPickaxe": "%1$s fué decapitado por un pico lanzado", + "death.attack.twilightforest.thrownPickaxe.player": "%1$s fué decapitado por un pico lanzado mientras escapaba de %2$s", + "death.attack.twilightforest.yeeted": "%1$s fue criticado por última vez por %2$s", + "death.attack.twilightforest.yeeted.entity": "%1$s fue criticado por última vez por %2$s", + "death.attack.twilightforest.yeeted.item": "%1$s fue criticado por última vez por %2$s mientras de alguna manera sostenía %3$s", + "dimension.twilightforest.twilight_forest": "Twilight Forest", + "effect.twilightforest.frosted": "Escarchado", + "enchantment.twilightforest.chill_aura": "Aura fría", + "enchantment.twilightforest.chill_aura.desc": "Añade una posibilidad para que el atacante obtenga el efecto helado después de golpear al usuario.", + "enchantment.twilightforest.destruction": "Destrucción", + "enchantment.twilightforest.destruction.desc": "Permite que el bloque y la cadena rompan bloques con un nivel de minería más alto.", + "enchantment.twilightforest.fire_react": "Reacción de fuego", + "enchantment.twilightforest.fire_react.desc": "Añade una posibilidad de que el atacante se incendie después de golpear al usuario.", + "entity.twilightforest.adherent": "Adherente", + "entity.twilightforest.alpha_yeti": "Yeti alfa", + "entity.twilightforest.armored_giant": "Guerrero gigante", + "entity.twilightforest.bighorn_sheep": "Borrego cimarrón", + "entity.twilightforest.blockchain_goblin": "Goblin con boleadora", + "entity.twilightforest.boar": "Verraco", + "entity.twilightforest.boat": "Barca", + "entity.twilightforest.carminite_broodling": "Araña de carminita", + "entity.twilightforest.carminite_ghastguard": "Ghastrdián de carminita", + "entity.twilightforest.carminite_ghastling": "Ghastling de carminita", + "entity.twilightforest.carminite_golem": "Gólem de carminita", + "entity.twilightforest.chain_block": "Bloque y cadena", + "entity.twilightforest.charm_effect": "Efecto de encanto", + "entity.twilightforest.chest_boat": "Barca con cofre", + "entity.twilightforest.cube_of_annihilation": "Cubo de aniquilación", + "entity.twilightforest.death_tome": "Tomo muerto", + "entity.twilightforest.deer": "Ciervo silvestre", + "entity.twilightforest.dwarf_rabbit": "Conejo enano", + "entity.twilightforest.falling_ice": "Hielo cayendo", + "entity.twilightforest.fire_beetle": "Escarabajo ardiente", + "entity.twilightforest.giant_miner": "Minero gigante", + "entity.twilightforest.harbinger_cube": "Heraldo", + "entity.twilightforest.hedge_spider": "Araña crepuscular", + "entity.twilightforest.helmet_crab": "Cangrejo crepuscular", + "entity.twilightforest.hostile_wolf": "Lobo hostil", + "entity.twilightforest.hydra": "Hydra", + "entity.twilightforest.hydra_mortar": "Mortero de hydra", + "entity.twilightforest.ice_arrow": "Flecha de hielo", + "entity.twilightforest.ice_crystal": "Copo viviente", + "entity.twilightforest.ice_snowball": "Bola de nieve helada", + "entity.twilightforest.king_spider": "Araña reina", + "entity.twilightforest.knight_phantom": "Caballero fantasma", + "entity.twilightforest.kobold": "Kobold", + "entity.twilightforest.lich": "Lich", + "entity.twilightforest.lich_bolt": "Rayo exánime", + "entity.twilightforest.lich_bomb": "Descarga de exánime explosiva", + "entity.twilightforest.lich_minion": "Lich pequeño", + "entity.twilightforest.lower_goblin_knight": "Goblin caballero inferior", + "entity.twilightforest.loyal_zombie": "Zombi leal", + "entity.twilightforest.magic_painting": "Cuadro mágico", + "entity.twilightforest.maze_slime": "Slime crepuscular", + "entity.twilightforest.minoshroom": "Minotauro rojo", + "entity.twilightforest.minotaur": "Minotauro", + "entity.twilightforest.mist_wolf": "Lobo siniestro", + "entity.twilightforest.moonworm_shot": "Gusano de luna", + "entity.twilightforest.mosquito_swarm": "Enjambre", + "entity.twilightforest.naga": "Naga", + "entity.twilightforest.nature_bolt": "Perno de la naturaleza", + "entity.twilightforest.penguin": "Pingüino glacial", + "entity.twilightforest.pinch_beetle": "Escarabajo de pinzas", + "entity.twilightforest.protection_box": "Caja de protección de progresión", + "entity.twilightforest.quest_ram": "Carnero boreal", + "entity.twilightforest.raven": "Cuervo boscoso", + "entity.twilightforest.redcap": "Goblin minero", + "entity.twilightforest.redcap_sapper": "Goblin zapador", + "entity.twilightforest.rising_zombie": "Zombie", + "entity.twilightforest.roving_cube": "Errabundo", + "entity.twilightforest.seeker_arrow": "Flecha rastreadora", + "entity.twilightforest.skeleton_druid": "Esqueleto druida", + "entity.twilightforest.slider": "Trampa de diapositivas en movimiento", + "entity.twilightforest.slime_beetle": "Escarabajo de slime", + "entity.twilightforest.slime_blob": "Mancha de slime", + "entity.twilightforest.snow_guardian": "Caballero fantasma glacial", + "entity.twilightforest.snow_queen": "Reina boreal", + "entity.twilightforest.squirrel": "Ardilla boscosa", + "entity.twilightforest.stable_ice_core": "Blaze glacial", + "entity.twilightforest.swarm_spider": "Araña frondosa", + "entity.twilightforest.thrown_block": "Bloque arrojado", + "entity.twilightforest.thrown_ice": "Bomba de hielo", + "entity.twilightforest.thrown_wep": "Arma arrojada", + "entity.twilightforest.tiny_bird": "Pájaro", + "entity.twilightforest.tome_bolt": "Perno del Tomo de la muerte", + "entity.twilightforest.towerwood_borer": "Lepisma oscuro", + "entity.twilightforest.troll": "Troll de cueva", + "entity.twilightforest.unstable_ice_core": "Blaze glacial inestable", + "entity.twilightforest.upper_goblin_knight": "Goblin caballero superior", + "entity.twilightforest.ur_ghast": "Ur-Ghast", + "entity.twilightforest.wand_bolt": "Descarga de cetro crepuscular", + "entity.twilightforest.winter_wolf": "Lobo glacial", + "entity.twilightforest.wraith": "Fantasma crepuscular", + "entity.twilightforest.yeti": "Yeti", + "gamerule.tfEnforcedProgression": "Progresión de Twilight Forest", + "gamerule.tfEnforcedProgression.description": "Algunos biomas del Bosque Crepuscular estarán bloqueados hasta que derrotes a ciertos jefes en la dimensión. (Puedes consultar el orden de progreso en tus avances).", + "gui.twilightforest.crumble_horn_jei": "Cuerno desmenuzado", + "gui.twilightforest.optifine.message": "Antes de continuar, tenga en cuenta que se sabe que Optifine causa fallas, errores visuales de entidades multipartes y muchos otros problemas.\n\nAntes de informar un error, elimine Optifine primero y verifique nuevamente para ver si el error aún está presente.\n\n¡Los problemas relacionados con Optifine no tienen solución en Twilight Forest!\n\nEsta pantalla puede estar deshabilitada en la configuración del cliente.", + "gui.twilightforest.optifine.suggestions": "Aquí tienes una selección de mods que recomendamos utilizar en su lugar.", + "gui.twilightforest.optifine.title": "ADVERTENCIA: OPTIFINE DETECTADO", + "gui.twilightforest.progression_end.discord": "Servidor de discord", + "gui.twilightforest.progression_end.message": "Este es el final del progreso por ahora. El Castillo Final que aguarda en la meseta aún está sin terminar y en desarrollo. Si quieres seguir el desarrollo del mod, puedes unirte a nuestro %s.", + "gui.twilightforest.transformation_jei": "Polvo de transformación", + "gui.twilightforest.uncrafting_jei": "Uncrafting", + "item.twilightforest.adherent_spawn_egg": "Generar adherente", + "item.twilightforest.alpha_yeti_banner_pattern": "Diseño de estandarte", + "item.twilightforest.alpha_yeti_banner_pattern.desc": "Cara de yeti alfa", + "item.twilightforest.alpha_yeti_fur": "Piel de yeti alfa", + "item.twilightforest.alpha_yeti_spawn_egg": "Genera yeti alfa", + "item.twilightforest.arctic_armor.desc": "Teñible", + "item.twilightforest.arctic_boots": "Botas árticas", + "item.twilightforest.arctic_chestplate": "Túnica ártica", + "item.twilightforest.arctic_fur": "Pelaje ártico", + "item.twilightforest.arctic_helmet": "Capucha ártica", + "item.twilightforest.arctic_leggings": "Pantalones árticos", + "item.twilightforest.armor_shard": "Fragmento de acero crepuscular", + "item.twilightforest.armor_shard_cluster": "Acero crepuscular en bruto", + "item.twilightforest.armored_giant_spawn_egg": "Generar guerrero gigante", + "item.twilightforest.bighorn_sheep_spawn_egg": "Generar borrego cimarrón", + "item.twilightforest.block_and_chain": "Boleadora de acero crepuscular", + "item.twilightforest.blockchain_goblin_spawn_egg": "Generar goblin con boleadora", + "item.twilightforest.boar_spawn_egg": "Generar verraco", + "item.twilightforest.boarkchop": "Boarkchop", + "item.twilightforest.borer_essence": "Esencia de lepisma oscuro", + "item.twilightforest.brittle_potion_flask": "Frasco de poción frágil", + "item.twilightforest.canopy_boat": "Barca de canopia", + "item.twilightforest.canopy_chest_boat": "Barca de canopia con cofre", + "item.twilightforest.carminite": "Carminita", + "item.twilightforest.carminite_broodling_spawn_egg": "Generar araña de carminita", + "item.twilightforest.carminite_ghastguard_spawn_egg": "Generar ghastrdián de carminita", + "item.twilightforest.carminite_ghastling_spawn_egg": "Generar ghastling de carminita", + "item.twilightforest.carminite_golem_spawn_egg": "Generar gólem de carminita", + "item.twilightforest.charm_of_keeping_1": "Amuleto consevador I", + "item.twilightforest.charm_of_keeping_2": "Amuleto consevador II", + "item.twilightforest.charm_of_keeping_3": "Amuleto consevador III", + "item.twilightforest.charm_of_life_1": "Amuleto vital I", + "item.twilightforest.charm_of_life_2": "Amuleto vital II", + "item.twilightforest.cooked_meef": "Filete de minotauro cocinado", + "item.twilightforest.cooked_venison": "Venado cocinado", + "item.twilightforest.crumble_horn": "Cuerno desmenuzado", + "item.twilightforest.cube_of_annihilation": "Cubo de aniquilación", + "item.twilightforest.cube_talisman": "Talismán del cubo", + "item.twilightforest.dark_boat": "Barca de madera oscura", + "item.twilightforest.dark_chest_boat": "Barca de madera oscura con cofre", + "item.twilightforest.death_tome_spawn_egg": "Generar tomo muerto", + "item.twilightforest.deer_spawn_egg": "Generar ciervo silvestre", + "item.twilightforest.diamond_minotaur_axe": "Hacha de diamante crepuscular", + "item.twilightforest.dwarf_rabbit_spawn_egg": "Generar conejo enano", + "item.twilightforest.ender_bow": "Arco de ender", + "item.twilightforest.fiery_armor.desc": "Quema atacantes", + "item.twilightforest.fiery_blood": "Sangre ardiente", + "item.twilightforest.fiery_boots": "Botas de metal ardiente", + "item.twilightforest.fiery_chestplate": "Peto de metal ardiente", + "item.twilightforest.fiery_helmet": "Casco de metal ardiente", + "item.twilightforest.fiery_ingot": "Lingote de metal ardiente", + "item.twilightforest.fiery_leggings": "Grebas de metal ardiente", + "item.twilightforest.fiery_pickaxe": "Pico de metal ardiente", + "item.twilightforest.fiery_pickaxe.desc": "Auto-fundición", + "item.twilightforest.fiery_sword": "Espada de metal ardiente", + "item.twilightforest.fiery_sword.desc": "Quema objetivos", + "item.twilightforest.fiery_tears": "Lágrimas ardientes", + "item.twilightforest.filled_magic_map": "Mapa crepuscular", + "item.twilightforest.filled_maze_map": "Mapa del laberinto", + "item.twilightforest.filled_ore_map": "Mapa del laberinto (minerales)", + "item.twilightforest.fire_beetle_spawn_egg": "Generar escarabajo ardiente", + "item.twilightforest.flask.doses": "Dosis: %s/%s", + "item.twilightforest.flask.no_refill": "No se puede rellenar", + "item.twilightforest.fortification_scepter": "Cetro de fortificación", + "item.twilightforest.giant_miner_spawn_egg": "Generar minero gigante", + "item.twilightforest.giant_pickaxe": "Pico de piedra gigante", + "item.twilightforest.giant_pickaxe.desc": "Rompe bloques gigantes", + "item.twilightforest.giant_sword": "Espada de piedra gigante", + "item.twilightforest.glass_sword": "Espada cristalizada", + "item.twilightforest.glass_sword.desc": "Solo en modo creativo", + "item.twilightforest.gold_minotaur_axe": "Hacha de oro crepuscular", + "item.twilightforest.greater_potion_flask": "Frasco de poción mayor", + "item.twilightforest.harbinger_cube_spawn_egg": "Generar heraldo", + "item.twilightforest.hedge_spider_spawn_egg": "Generar araña crepuscular", + "item.twilightforest.helmet_crab_spawn_egg": "Generar cangrejo crepuscular", + "item.twilightforest.hostile_wolf_spawn_egg": "Generar lobo hostil", + "item.twilightforest.hydra_banner_pattern": "Diseño de estandarte", + "item.twilightforest.hydra_banner_pattern.desc": "Llama de hydra", + "item.twilightforest.hydra_chop": "Corte de hydra", + "item.twilightforest.hydra_spawn_egg": "Generar hydra", + "item.twilightforest.ice_bomb": "Bomba helada", + "item.twilightforest.ice_bow": "Arco helado", + "item.twilightforest.ice_crystal_spawn_egg": "Generar copo viviente", + "item.twilightforest.ice_sword": "Espada de hielo", + "item.twilightforest.ironwood_axe": "Hacha de hierro vegetal", + "item.twilightforest.ironwood_boots": "Botas de hierro vegetal", + "item.twilightforest.ironwood_chestplate": "Peto de hierro vegetal", + "item.twilightforest.ironwood_helmet": "Casco de hierro vegetal", + "item.twilightforest.ironwood_hoe": "Azada de hierro vegetal", + "item.twilightforest.ironwood_ingot": "Lingote de hierro vegetal", + "item.twilightforest.ironwood_leggings": "Grebas de hierro vegetal", + "item.twilightforest.ironwood_pickaxe": "Pico de hierro vegetal", + "item.twilightforest.ironwood_shovel": "Pala de hierro vegetal", + "item.twilightforest.ironwood_sword": "Espada de hierro vegetal", + "item.twilightforest.king_spider_spawn_egg": "Generar araña reina", + "item.twilightforest.knight_phantom_banner_pattern": "Diseño de estandarte", + "item.twilightforest.knight_phantom_banner_pattern.desc": "Casco de caballero", + "item.twilightforest.knight_phantom_spawn_egg": "Generar caballero fantasma", + "item.twilightforest.knightmetal_axe": "Hacha de acero crepuscular", + "item.twilightforest.knightmetal_axe.desc": "Daño adicional a objetivos blindados", + "item.twilightforest.knightmetal_boots": "Botas de acero crepuscular", + "item.twilightforest.knightmetal_chestplate": "Peto de acero crepuscular", + "item.twilightforest.knightmetal_helmet": "Casco de acero crepuscular", + "item.twilightforest.knightmetal_ingot": "Lingote de acero crepuscular", + "item.twilightforest.knightmetal_leggings": "Grebas de acero crepuscular", + "item.twilightforest.knightmetal_pickaxe": "Pico de acero crepuscular", + "item.twilightforest.knightmetal_pickaxe.tooltip": "Daño adicional a objetivos blindados", + "item.twilightforest.knightmetal_ring": "Aro de acero crepuscular", + "item.twilightforest.knightmetal_shield": "Escudo de acero crepuscular", + "item.twilightforest.knightmetal_sword": "Espada de acero crepuscular", + "item.twilightforest.knightmetal_sword.tooltip": "Daño adicional a objetivos blindados", + "item.twilightforest.kobold_spawn_egg": "Generar kobold", + "item.twilightforest.lamp_of_cinders": "Lámpara incineradora", + "item.twilightforest.lich_banner_pattern": "Diseño de estandarte", + "item.twilightforest.lich_banner_pattern.desc": "Corona de lich", + "item.twilightforest.lich_spawn_egg": "Generar lich", + "item.twilightforest.lifedrain_scepter": "Cetro de vida drenada", + "item.twilightforest.liveroot": "Raíz viva crepuscular", + "item.twilightforest.lower_goblin_knight_spawn_egg": "Generar goblin caballero", + "item.twilightforest.magic_beans": "Frijoles mágicos", + "item.twilightforest.magic_map": "Mapa crepuscular", + "item.twilightforest.magic_map_focus": "Pluma de cuervo crepuscular enfocada", + "item.twilightforest.magic_painting": "Cuadro mágico", + "item.twilightforest.mangrove_boat": "Barca de mangle", + "item.twilightforest.mangrove_chest_boat": "Barca de mangle con cofre", + "item.twilightforest.maze_map": "Mapa del laberinto", + "item.twilightforest.maze_map_focus": "Enfoque de laberinto", + "item.twilightforest.maze_slime_spawn_egg": "Generar slime crepuscular", + "item.twilightforest.maze_wafer": "Galleta crepuscular", + "item.twilightforest.mazebreaker_pickaxe": "Pico crepuscular", + "item.twilightforest.meef_stroganoff": "Festín de minotauro rojo", + "item.twilightforest.mining_boat": "Barca mineralizada", + "item.twilightforest.mining_chest_boat": "Barca mineralizada con cofre", + "item.twilightforest.minoshroom_banner_pattern": "Diseño de estandarte", + "item.twilightforest.minoshroom_banner_pattern.desc": "Hachas de minotauro", + "item.twilightforest.minoshroom_spawn_egg": "Generar minotauro rojo", + "item.twilightforest.minotaur_axe.desc": "Daño adicional al cargar", + "item.twilightforest.minotaur_spawn_egg": "Generar minotauro", + "item.twilightforest.mist_wolf_spawn_egg": "Generar lobo siniestro", + "item.twilightforest.moon_dial": "Esfera lunar", + "item.twilightforest.moon_dial.phase_0": "Luna llena", + "item.twilightforest.moon_dial.phase_1": "Luna gibosa menguante", + "item.twilightforest.moon_dial.phase_2": "Tercer trimestre", + "item.twilightforest.moon_dial.phase_3": "Luna menguante", + "item.twilightforest.moon_dial.phase_4": "Luna nueva", + "item.twilightforest.moon_dial.phase_5": "Luna creciente", + "item.twilightforest.moon_dial.phase_6": "Primer trimestre", + "item.twilightforest.moon_dial.phase_7": "Luna gibosa creciente", + "item.twilightforest.moon_dial.phase_unknown": "Fase lunar indeterminada", + "item.twilightforest.moon_dial.phase_unknown_fools": "404 luna no encontrada", + "item.twilightforest.moonworm_queen": "Gusano lunar reina", + "item.twilightforest.mosquito_swarm_spawn_egg": "Generar enjambre", + "item.twilightforest.music_disc_findings": "Disco de música", + "item.twilightforest.music_disc_findings.desc": "MrCompost - Findings", + "item.twilightforest.music_disc_home": "Disco de música", + "item.twilightforest.music_disc_home.desc": "MrCompost - Home", + "item.twilightforest.music_disc_maker": "Disco de música", + "item.twilightforest.music_disc_maker.desc": "MrCompost - Maker", + "item.twilightforest.music_disc_motion": "Disco de música", + "item.twilightforest.music_disc_motion.desc": "MrCompost - Motion", + "item.twilightforest.music_disc_radiance": "Disco de música", + "item.twilightforest.music_disc_radiance.desc": "Rotch Gwylt - Radiance", + "item.twilightforest.music_disc_steps": "Disco de música", + "item.twilightforest.music_disc_steps.desc": "Rotch Gwylt - Steps", + "item.twilightforest.music_disc_superstitious": "Disco de música", + "item.twilightforest.music_disc_superstitious.desc": "Rotch Gwylt - Superstitious", + "item.twilightforest.music_disc_thread": "Disco de música", + "item.twilightforest.music_disc_thread.desc": "MrCompost - Thread", + "item.twilightforest.music_disc_wayfarer": "Disco de música", + "item.twilightforest.music_disc_wayfarer.desc": "MrCompost - Wayfarer", + "item.twilightforest.naga_banner_pattern": "Diseño de estandarte", + "item.twilightforest.naga_banner_pattern.desc": "Escamas de naga", + "item.twilightforest.naga_chestplate": "Túnica de naga", + "item.twilightforest.naga_leggings": "Pantalones de naga", + "item.twilightforest.naga_scale": "Escama de naga", + "item.twilightforest.naga_spawn_egg": "Generar naga", + "item.twilightforest.ore_magnet": "Imán de minerales", + "item.twilightforest.ore_map": "Mapa del laberinto (minerales)", + "item.twilightforest.ore_meter": "Brújula crepusculares", + "item.twilightforest.peacock_feather_fan": "Abanico de plumas de pavo real", + "item.twilightforest.penguin_spawn_egg": "Generar pingüino glacial", + "item.twilightforest.phantom_armor.desc": "Nunca se pierde en la muerte", + "item.twilightforest.phantom_chestplate": "Peto de fantasma cavernoso", + "item.twilightforest.phantom_helmet": "Casco de fantasma cavernoso", + "item.twilightforest.pinch_beetle_spawn_egg": "Generar escarabajo de pinzas", + "item.twilightforest.quest_ram_banner_pattern": "Diseño de estandarte", + "item.twilightforest.quest_ram_banner_pattern.desc": "Remolinos de carnero", + "item.twilightforest.quest_ram_spawn_egg": "Generar carnero boreal", + "item.twilightforest.raven_feather": "Pluma de cuervo crepuscular", + "item.twilightforest.raven_spawn_egg": "Generar cuervo boscoso", + "item.twilightforest.raw_ironwood": "Hierro vegetal en bruto", + "item.twilightforest.raw_meef": "Filete de minotauro crudo", + "item.twilightforest.raw_venison": "Venado crudo", + "item.twilightforest.redcap_sapper_spawn_egg": "Generar goblin zapador", + "item.twilightforest.redcap_spawn_egg": "Generar goblin minero", + "item.twilightforest.scepter.desc": "%s cargas restantes", + "item.twilightforest.seeker_bow": "Arco rastreador", + "item.twilightforest.skeleton_druid_spawn_egg": "Generar esqueleto druida", + "item.twilightforest.skull_candle.desc": "Tiene: %s %s vela", + "item.twilightforest.skull_candle.desc.multiple": "Tiene: %s %s velas", + "item.twilightforest.slime_beetle_spawn_egg": "Generar escarabajo de slime", + "item.twilightforest.snow_guardian_spawn_egg": "Generar caballero fantasma glacial", + "item.twilightforest.snow_queen_banner_pattern": "Diseño de estandarte", + "item.twilightforest.snow_queen_banner_pattern.desc": "Corona de reina boreal", + "item.twilightforest.snow_queen_spawn_egg": "Generar reina boreal", + "item.twilightforest.sorting_boat": "Barca sorteada", + "item.twilightforest.sorting_chest_boat": "Barca sorteada con cofre", + "item.twilightforest.squirrel_spawn_egg": "Generar ardilla boscosa", + "item.twilightforest.stable_ice_core_spawn_egg": "Generar blaze glacial", + "item.twilightforest.steeleaf_axe": "Hacha de hojas metálicas", + "item.twilightforest.steeleaf_boots": "Botas de hojas metálicas", + "item.twilightforest.steeleaf_chestplate": "Peto de hojas metálicas", + "item.twilightforest.steeleaf_helmet": "Casco de hojas metálicas", + "item.twilightforest.steeleaf_hoe": "Azada de hojas metálicas", + "item.twilightforest.steeleaf_ingot": "Hoja metálica", + "item.twilightforest.steeleaf_leggings": "Grebas de hojas metálicas", + "item.twilightforest.steeleaf_pickaxe": "Pico de hojas metálicas", + "item.twilightforest.steeleaf_shovel": "Pala de hojas metálicas", + "item.twilightforest.steeleaf_sword": "Espada de hojas metálicas", + "item.twilightforest.swarm_spider_spawn_egg": "Generar araña frondosa", + "item.twilightforest.time_boat": "Barca temporizada", + "item.twilightforest.time_chest_boat": "Barca temporizada con cofre", + "item.twilightforest.tiny_bird_spawn_egg": "Generar pájaro", + "item.twilightforest.torchberries": "Bayas brillantes", + "item.twilightforest.tower_key": "Llave de torre", + "item.twilightforest.towerwood_borer_spawn_egg": "Generar lepisma oscuro", + "item.twilightforest.transformation_boat": "Barca transformada", + "item.twilightforest.transformation_chest_boat": "Barca transformada con cofre", + "item.twilightforest.transformation_powder": "Polvo de transformación", + "item.twilightforest.triple_bow": "Arco triple", + "item.twilightforest.troll_spawn_egg": "Generar troll de cueva", + "item.twilightforest.twilight_oak_boat": "Barca de roble crepuscular", + "item.twilightforest.twilight_oak_chest_boat": "Barca de roble crepuscular con cofre", + "item.twilightforest.twilight_scepter": "Cetro crepuscular", + "item.twilightforest.unstable_ice_core_spawn_egg": "Generar blaze glacial inestable", + "item.twilightforest.ur_ghast_banner_pattern": "Diseño de estandarte", + "item.twilightforest.ur_ghast_banner_pattern.desc": "Borde de carminita", + "item.twilightforest.ur_ghast_spawn_egg": "Generar ur-ghast", + "item.twilightforest.winter_wolf_spawn_egg": "Generar lobo glacial", + "item.twilightforest.wraith_spawn_egg": "Generar fantasma crepuscular", + "item.twilightforest.yeti_armor.desc": "Escarcha atacantes", + "item.twilightforest.yeti_boots": "Botas de yeti", + "item.twilightforest.yeti_chestplate": "Túnica de yeti", + "item.twilightforest.yeti_helmet": "Yelmo de yeti", + "item.twilightforest.yeti_leggings": "Pantalones de yeti", + "item.twilightforest.yeti_spawn_egg": "Generar yeti", + "item.twilightforest.zombie_scepter": "Cetro de invocación", + "itemGroup.twilightforest.blocks": "Twilight Forest: Bloques", + "itemGroup.twilightforest.equipment": "Twilight Forest: Equipo", + "itemGroup.twilightforest.items": "Twilight Forest: Objetos", + "magic_painting.twilightforest.darkness.author": "???", + "magic_painting.twilightforest.darkness.title": "Oscuridad", + "magic_painting.twilightforest.lucid_lands.author": "Androsa", + "magic_painting.twilightforest.lucid_lands.title": "Tierras lúcidas", + "misc.twilightforest.advancement_hidden": "", + "misc.twilightforest.advancement_required": "Avances requeridos:", + "misc.twilightforest.biome_locked": "¡Bioma bloqueado!", + "misc.twilightforest.biome_locked_2": "Comprueba tus logros", + "misc.twilightforest.core_disabled": "%s está deshabilitado mediante configuración", + "misc.twilightforest.firefly_spawner_radius": "Radio de partículas de luciérnaga: %s bloques", + "misc.twilightforest.magic_map_fail": "La magia falló. ¿Quizás no funciona aquí?", + "misc.twilightforest.nyi": "Esta función tiene efectos que aún no están implementados.", + "misc.twilightforest.ore_meter_exposed": "Expuesto: %s", + "misc.twilightforest.ore_meter_range": "Radio: %s, Origen: [%s, %s]", + "misc.twilightforest.pedestal_ineligible": "Eres indigno.", + "misc.twilightforest.portal_unsafe": "No parece seguro aquí ...", + "misc.twilightforest.portal_unworthy": "La piscina del portal no responde. ¿Quizás se descuidó algo?", + "misc.twilightforest.wip0": "Esta función es un trabajo en progreso y puede tener errores o efectos no deseados que puedan dañar su mundo.", + "misc.twilightforest.wip1": "Úselo con precaución.", + "museumcurator.animalhusbandry.twilightforest.bugs": "Insectos", + "museumcurator.architecture.twilightforest.aurorablocks": "Bloques boreales", + "museumcurator.architecture.twilightforest.banisters": "Barandillas", + "museumcurator.architecture.twilightforest.castlebrick": "Ladrillos de castillo", + "museumcurator.architecture.twilightforest.giantblocks": "Bloques gigantes", + "museumcurator.botany.twilightforest.beanstalk": "Tallo de frijoles", + "museumcurator.botany.twilightforest.canopytree": "Árbol de canopia", + "museumcurator.botany.twilightforest.darkwoodtree": "Árbol de madera oscura", + "museumcurator.botany.twilightforest.mangrovetree": "Árbol de mangle", + "museumcurator.botany.twilightforest.miningtree": "Árbol mineralizado", + "museumcurator.botany.twilightforest.sortingtree": "Árbol sorteado", + "museumcurator.botany.twilightforest.timetree": "Árbol temporizado", + "museumcurator.botany.twilightforest.transformationtree": "Árbol transformado", + "museumcurator.botany.twilightforest.twilightoaktree": "Árbol de roble crepuscular", + "museumcurator.equipment.twilightforest.scepters": "Cetros de poder", + "museumcurator.lithology.twilightforest.deadrock": "Piedra disecada", + "museumcurator.lithology.twilightforest.mazestone": "Piedra crepuscular", + "museumcurator.lithology.twilightforest.nagastone": "Piedra de naga", + "museumcurator.machinery.twilightforest.carminitemachines": "Carminite Mechanisms", + "museumcurator.metallurgy.twilightforest.fiery": "Metal ardiente", + "museumcurator.metallurgy.twilightforest.ironwood": "Hierro vegetal", + "museumcurator.metallurgy.twilightforest.knightmetal": "Acero crepuscular", + "stat.twilightforest.blocks_crumbled": "Bloques desmoronados", + "stat.twilightforest.bugs_squished": "Insectos aplastados", + "stat.twilightforest.e115_slices_eaten": "Experimento 115 rebanadas comidas", + "stat.twilightforest.keeping_charms_activated": "Encantos de mantenerse usado", + "stat.twilightforest.life_charms_activated": "Amuletos de la vida usados", + "stat.twilightforest.skull_candles_made": "Cabezas con vela creadas", + "stat.twilightforest.tf_shields_broken": "Escudos de fortificación rotos", + "stat.twilightforest.torchberries_harvested": "Bayas brillantes cosechadas", + "stat.twilightforest.trophy_pedestals_activated": "Pedestales de trofeos activados", + "stat.twilightforest.uncrafting_table_interactions": "Interacciones con mesa de trabajo reversiva", + "structure.twilightforest.aurora_palace": "Palacio boreal", + "structure.twilightforest.dark_tower": "Torre oscura", + "structure.twilightforest.final_castle": "Castillo final", + "structure.twilightforest.hedge_maze": "Laberinto de setos", + "structure.twilightforest.hydra_lair": "Guarida de Hydra", + "structure.twilightforest.knight_stronghold": "Fortaleza del caballero", + "structure.twilightforest.labyrinth": "Laberinto de minotauro", + "structure.twilightforest.large_hollow_hill": "Cerro hueco grande", + "structure.twilightforest.lich_tower": "Torre de Lich", + "structure.twilightforest.medium_hollow_hill": "Cerro hueco", + "structure.twilightforest.mushroom_tower": "Castillo de hongos", + "structure.twilightforest.naga_courtyard": "Patio de Naga", + "structure.twilightforest.quest_grove": "Arboleda buscada", + "structure.twilightforest.small_hollow_hill": "Cerro hueco pequeño", + "structure.twilightforest.troll_cave": "Cueva de troll", + "structure.twilightforest.yeti_cave": "Cueva del Yeti", + "subtitles.twilightforest.block.beanstalk.grow": "Ground rumbles", + "subtitles.twilightforest.block.boss_chest.appear": "Boss Chest appears", + "subtitles.twilightforest.block.bug.squish": "Bug gets squished :(", + "subtitles.twilightforest.block.builder.create": "Carminite Builder creates block", + "subtitles.twilightforest.block.builder.off": "Carminite Builder deactivates", + "subtitles.twilightforest.block.builder.on": "Carminite Builder activates", + "subtitles.twilightforest.block.builder.replace": "Built Block expires", + "subtitles.twilightforest.block.casket.close": "Keepsake Casket closes", + "subtitles.twilightforest.block.casket.locked": "Keepsake Casket clicks", + "subtitles.twilightforest.block.casket.open": "Keepsake Casket opens", + "subtitles.twilightforest.block.casket.repair": "Keepsake Casket repaired", + "subtitles.twilightforest.block.cicada": "Cicada screams", + "subtitles.twilightforest.block.core.time": "Tree of Time ticks", + "subtitles.twilightforest.block.core.transformation": "Tree of Transformation hums", + "subtitles.twilightforest.block.door.activate": "Castle Door clicks", + "subtitles.twilightforest.block.door.reappear": "Castle Door reappears", + "subtitles.twilightforest.block.door.vanish": "Castle Door vanishes", + "subtitles.twilightforest.block.generic.annihilation": "Block dissolves", + "subtitles.twilightforest.block.ghast_trap.ambient": "Ghast Trap dings", + "subtitles.twilightforest.block.ghast_trap.on": "Ghast Trap buzzes", + "subtitles.twilightforest.block.ghast_trap.spindown": "Ghast Trap shuts off", + "subtitles.twilightforest.block.ghast_trap.warmup": "Ghast Trap warms up", + "subtitles.twilightforest.block.jet.active": "Fire Jet flares", + "subtitles.twilightforest.block.jet.pop": "Fire Jet pops", + "subtitles.twilightforest.block.jet.start": "Fire Jet activates", + "subtitles.twilightforest.block.portal.whoosh": "Twilight Forest Portal beckons", + "subtitles.twilightforest.block.reactor.ambient": "Carminite Reactor whooshes", + "subtitles.twilightforest.block.reappearing_block.reappear": "Reappearing Block reappears", + "subtitles.twilightforest.block.reappearing_block.vanish": "Reappearing Block disappears", + "subtitles.twilightforest.block.slider.move": "Sliding Trap creaks", + "subtitles.twilightforest.block.smoker.start": "Smoker activates", + "subtitles.twilightforest.block.torchberry.harvest": "Torchberries pop", + "subtitles.twilightforest.block.trophy_pedestal.activate": "Trophy Pedestal accepts trophy", + "subtitles.twilightforest.block.vanish.locked": "Towerwood door clicks", + "subtitles.twilightforest.block.vanish.unlock": "Towerwood door unlocks", + "subtitles.twilightforest.block.vanish.vanish": "Vanishing Block vanishes", + "subtitles.twilightforest.block.wrought_iron_fence.extend": "Iron clanks", + "subtitles.twilightforest.entity.alpha_yeti.alert": "Alpha Yeti takes notice", + "subtitles.twilightforest.entity.alpha_yeti.death": "Alpha Yeti dies", + "subtitles.twilightforest.entity.alpha_yeti.grab": "Alpha Yeti grabs", + "subtitles.twilightforest.entity.alpha_yeti.growl": "Alpha Yeti growls", + "subtitles.twilightforest.entity.alpha_yeti.hurt": "Alpha Yeti hurts", + "subtitles.twilightforest.entity.alpha_yeti.ice": "Alpha Yeti throws ice", + "subtitles.twilightforest.entity.alpha_yeti.pant": "Alpha Yeti pants", + "subtitles.twilightforest.entity.alpha_yeti.roar": "Alpha Yeti roars", + "subtitles.twilightforest.entity.alpha_yeti.throw": "Alpha Yeti throws", + "subtitles.twilightforest.entity.bighorn_sheep.ambient": "Bighorn Sheep bleats", + "subtitles.twilightforest.entity.bighorn_sheep.death": "Bighorn Sheep dies", + "subtitles.twilightforest.entity.bighorn_sheep.hurt": "Bighorn Sheep hurts", + "subtitles.twilightforest.entity.blockchain_goblin.ambient": "Block and Chain Goblin chuckles", + "subtitles.twilightforest.entity.blockchain_goblin.death": "Block and Chain Goblin dies", + "subtitles.twilightforest.entity.blockchain_goblin.hurt": "Block and Chain Goblin screams", + "subtitles.twilightforest.entity.boar.ambient": "Boar oinks", + "subtitles.twilightforest.entity.boar.death": "Boar dies", + "subtitles.twilightforest.entity.boar.hurt": "Boar hurts", + "subtitles.twilightforest.entity.carminite_broodling.ambient": "Carminite Broodling hisses", + "subtitles.twilightforest.entity.carminite_broodling.death": "Carminite Broodling dies", + "subtitles.twilightforest.entity.carminite_broodling.hurt": "Carminite Broodling hurts", + "subtitles.twilightforest.entity.carminite_ghastguard.ambient": "Carminite Ghastguard cries", + "subtitles.twilightforest.entity.carminite_ghastguard.death": "Carminite Ghastguard dies", + "subtitles.twilightforest.entity.carminite_ghastguard.hurt": "Carminite Ghastguard screams", + "subtitles.twilightforest.entity.carminite_ghastguard.shoot": "Carminite Ghastguard shoots", + "subtitles.twilightforest.entity.carminite_ghastling.ambient": "Carminite Ghastling cries", + "subtitles.twilightforest.entity.carminite_ghastling.death": "Carminite Ghastling dies", + "subtitles.twilightforest.entity.carminite_ghastling.hurt": "Carminite Ghastling screams", + "subtitles.twilightforest.entity.carminite_ghastling.shoot": "Carminite Ghastling shoots", + "subtitles.twilightforest.entity.carminite_golem.attack": "Carminite Golem swings", + "subtitles.twilightforest.entity.carminite_golem.death": "Carminite Golem dies", + "subtitles.twilightforest.entity.carminite_golem.hurt": "Carminite Golem hurts", + "subtitles.twilightforest.entity.death_tome.ambient": "Death Tome flips pages", + "subtitles.twilightforest.entity.death_tome.death": "Death Tome falls apart", + "subtitles.twilightforest.entity.death_tome.hurt": "Death Tome creases", + "subtitles.twilightforest.entity.deer.ambient": "Deer moos", + "subtitles.twilightforest.entity.deer.death": "Deer dies", + "subtitles.twilightforest.entity.deer.hurt": "Deer hurts", + "subtitles.twilightforest.entity.dwarf_rabbit.ambient": "Dwarf Rabbit squeaks", + "subtitles.twilightforest.entity.dwarf_rabbit.death": "Dwarf Rabbit dies", + "subtitles.twilightforest.entity.dwarf_rabbit.hurt": "Dwarf Rabbit hurts", + "subtitles.twilightforest.entity.fire_beetle.death": "Fire Beetle dies", + "subtitles.twilightforest.entity.fire_beetle.hurt": "Fire Beetle hurts", + "subtitles.twilightforest.entity.fire_beetle.shoot": "Fire Beetle spews flames", + "subtitles.twilightforest.entity.goblin_knight.ambient": "Goblin Knight chuckles", + "subtitles.twilightforest.entity.goblin_knight.death": "Goblin Knight groans in agony", + "subtitles.twilightforest.entity.goblin_knight.hurt": "Goblin Knight screeches in pain", + "subtitles.twilightforest.entity.goblin_knight.muffled.ambient": "Muffled Goblin Knight chuckles", + "subtitles.twilightforest.entity.goblin_knight.muffled.death": "Muffled Goblin Knight groans in agony", + "subtitles.twilightforest.entity.goblin_knight.muffled.hurt": "Muffled Goblin Knight screeches in pain", + "subtitles.twilightforest.entity.hedge_spider.ambient": "Hedge Spider hisses", + "subtitles.twilightforest.entity.hedge_spider.death": "Hedge Spider dies", + "subtitles.twilightforest.entity.hedge_spider.hurt": "Hedge Spider hurts", + "subtitles.twilightforest.entity.helmet_crab.death": "Helmet Crab dies", + "subtitles.twilightforest.entity.helmet_crab.hurt": "Helmet Crab hurts", + "subtitles.twilightforest.entity.hostile_wolf.ambient": "Hostile Wolf growls", + "subtitles.twilightforest.entity.hostile_wolf.death": "Hostile Wolf dies", + "subtitles.twilightforest.entity.hostile_wolf.hurt": "Hostile Wolf hurts", + "subtitles.twilightforest.entity.hostile_wolf.target": "Hostile Wolf takes notice", + "subtitles.twilightforest.entity.hydra.death": "Hydra roars in defeat", + "subtitles.twilightforest.entity.hydra.growl": "Hydra growls", + "subtitles.twilightforest.entity.hydra.hurt": "Hydra hurts", + "subtitles.twilightforest.entity.hydra.roar": "Hydra roars", + "subtitles.twilightforest.entity.hydra.shoot": "Hydra shoots mortar", + "subtitles.twilightforest.entity.hydra.shoot_fire": "Hydra shoots fire", + "subtitles.twilightforest.entity.hydra.warn": "Hydra prepares to bite", + "subtitles.twilightforest.entity.ice.ambient": "Ice Core crackles", + "subtitles.twilightforest.entity.ice.death": "Ice Core dies", + "subtitles.twilightforest.entity.ice.hurt": "Ice Core hurts", + "subtitles.twilightforest.entity.ice.shoot": "Ice Core shoots snowball", + "subtitles.twilightforest.entity.king_spider.ambient": "King Spider hisses", + "subtitles.twilightforest.entity.king_spider.death": "King Spider dies", + "subtitles.twilightforest.entity.king_spider.hurt": "King Spider hurts", + "subtitles.twilightforest.entity.knight_phantom.ambient": "Knight Phantom gasps", + "subtitles.twilightforest.entity.knight_phantom.axe": "Knight Phantom throws pickaxe", + "subtitles.twilightforest.entity.knight_phantom.death": "Knight Phantom dies", + "subtitles.twilightforest.entity.knight_phantom.hurt": "Knight Phantom hurts", + "subtitles.twilightforest.entity.knight_phantom.pickaxe": "Knight Phantom throws axe", + "subtitles.twilightforest.entity.kobold.ambient": "Kobold grumbles", + "subtitles.twilightforest.entity.kobold.death": "Kobold dies", + "subtitles.twilightforest.entity.kobold.hurt": "Kobold hurts", + "subtitles.twilightforest.entity.kobold.munch": "Kobold munches on food", + "subtitles.twilightforest.entity.lich.ambient": "Lich breathes", + "subtitles.twilightforest.entity.lich.death": "Lich dies", + "subtitles.twilightforest.entity.lich.hurt": "Lich hurts", + "subtitles.twilightforest.entity.lich.pop_mob": "Lich absorbs mob", + "subtitles.twilightforest.entity.lich.shoot": "Lich shoots", + "subtitles.twilightforest.entity.lich.teleport": "Lich teleports", + "subtitles.twilightforest.entity.lich_clone.hurt": "Lich shadow clone bypasses attack", + "subtitles.twilightforest.entity.loyal_zombie.ambient": "Loyal Zombie groans", + "subtitles.twilightforest.entity.loyal_zombie.death": "Loyal Zombie dies", + "subtitles.twilightforest.entity.loyal_zombie.hurt": "Loyal Zombie hurts", + "subtitles.twilightforest.entity.loyal_zombie.summon": "Loyal Zombie summoned", + "subtitles.twilightforest.entity.maze_slime.death": "Maze Slime dies", + "subtitles.twilightforest.entity.maze_slime.hurt": "Maze Slime hurts", + "subtitles.twilightforest.entity.maze_slime.squish": "Maze Slime squishes", + "subtitles.twilightforest.entity.minion.ambient": "Lich Minion groans", + "subtitles.twilightforest.entity.minion.death": "Lich Minion dies", + "subtitles.twilightforest.entity.minion.hurt": "Lich Minion hurts", + "subtitles.twilightforest.entity.minion.summon": "Lich summons new Minion", + "subtitles.twilightforest.entity.minoshroom.ambient": "Minoshroom moos", + "subtitles.twilightforest.entity.minoshroom.attack": "Minoshroom attacks", + "subtitles.twilightforest.entity.minoshroom.death": "Minoshroom dies", + "subtitles.twilightforest.entity.minoshroom.hurt": "Minoshroom hurts", + "subtitles.twilightforest.entity.minoshroom.slam": "Minoshroom slams ground", + "subtitles.twilightforest.entity.minotaur.ambient": "Minotaur moos", + "subtitles.twilightforest.entity.minotaur.attack": "Minotaur attacks", + "subtitles.twilightforest.entity.minotaur.death": "Minotaur dies", + "subtitles.twilightforest.entity.minotaur.hurt": "Minotaur hurts", + "subtitles.twilightforest.entity.mist_wolf.ambient": "Mist Wolf growls", + "subtitles.twilightforest.entity.mist_wolf.death": "Mist Wolf dies", + "subtitles.twilightforest.entity.mist_wolf.hurt": "Mist Wolf hurts", + "subtitles.twilightforest.entity.mist_wolf.target": "Mist Wolf takes notice", + "subtitles.twilightforest.entity.mosquito.ambient": "Mosquitoes buzz", + "subtitles.twilightforest.entity.naga.hiss": "Naga hisses", + "subtitles.twilightforest.entity.naga.hurt": "Naga hurts", + "subtitles.twilightforest.entity.naga.rattle": "Naga rattles", + "subtitles.twilightforest.entity.parrot.imitate.alpha_yeti": "Parrot coldly growls", + "subtitles.twilightforest.entity.parrot.imitate.carminite_golem": "Parrot thunks", + "subtitles.twilightforest.entity.parrot.imitate.death_tome": "Parrot makes book noises", + "subtitles.twilightforest.entity.parrot.imitate.hostile_wolf": "Parrot growls", + "subtitles.twilightforest.entity.parrot.imitate.hydra": "Parrot roars", + "subtitles.twilightforest.entity.parrot.imitate.ice_core": "Parrot crackles", + "subtitles.twilightforest.entity.parrot.imitate.kobold": "Parrot grumbles", + "subtitles.twilightforest.entity.parrot.imitate.minotaur": "Parrot moos angrily", + "subtitles.twilightforest.entity.parrot.imitate.mosquito": "Parrot buzzes", + "subtitles.twilightforest.entity.parrot.imitate.naga": "Parrot rattles", + "subtitles.twilightforest.entity.parrot.imitate.redcap": "Parrot chuckles", + "subtitles.twilightforest.entity.parrot.imitate.wraith": "Parrot gasps", + "subtitles.twilightforest.entity.pinch_beetle.death": "Pinch Beetle dies", + "subtitles.twilightforest.entity.pinch_beetle.hurt": "Pinch Beetle hurts", + "subtitles.twilightforest.entity.quest_ram.ambient": "Quest Ram bleats", + "subtitles.twilightforest.entity.quest_ram.death": "Quest Ram dies", + "subtitles.twilightforest.entity.quest_ram.hurt": "Quest Ram hurts", + "subtitles.twilightforest.entity.raven.caw": "Raven caws", + "subtitles.twilightforest.entity.raven.squawk": "Raven squawks in pain", + "subtitles.twilightforest.entity.redcap.ambient": "Redcap chuckles", + "subtitles.twilightforest.entity.redcap.death": "Redcap groans in agony", + "subtitles.twilightforest.entity.redcap.hurt": "Redcap screeches in pain", + "subtitles.twilightforest.entity.shield.add": "Fortification Shield spawns", + "subtitles.twilightforest.entity.shield.break": "Fortification Shield breaks", + "subtitles.twilightforest.entity.skeleton_druid.ambient": "Skeleton Druid rattles", + "subtitles.twilightforest.entity.skeleton_druid.death": "Skeleton Druid dies", + "subtitles.twilightforest.entity.skeleton_druid.hurt": "Skeleton Druid hurts", + "subtitles.twilightforest.entity.skeleton_druid.shoot": "Skeleton Druid shoots", + "subtitles.twilightforest.entity.slime_beetle.death": "Slime Beetle dies", + "subtitles.twilightforest.entity.slime_beetle.hurt": "Slime Beetle hurts", + "subtitles.twilightforest.entity.slime_beetle.squish": "Slime Beetle shoots", + "subtitles.twilightforest.entity.snow_guardian.ambient": "Snow Guardian crackles", + "subtitles.twilightforest.entity.snow_guardian.death": "Snow Guardian dies", + "subtitles.twilightforest.entity.snow_guardian.hurt": "Snow Guardian hurts", + "subtitles.twilightforest.entity.snow_queen.ambient": "Snow Queen crackles", + "subtitles.twilightforest.entity.snow_queen.attack": "Snow Queen attacks", + "subtitles.twilightforest.entity.snow_queen.break": "Snow Queen deflects attack", + "subtitles.twilightforest.entity.snow_queen.death": "Snow Queen dies", + "subtitles.twilightforest.entity.snow_queen.hurt": "Snow Queen hurts", + "subtitles.twilightforest.entity.swarm_spider.ambient": "Swarm Spider hisses", + "subtitles.twilightforest.entity.swarm_spider.death": "Swarm Spider dies", + "subtitles.twilightforest.entity.swarm_spider.hurt": "Swarm Spider hurts", + "subtitles.twilightforest.entity.tear.break": "Ur-Ghast tear shatters", + "subtitles.twilightforest.entity.tiny_bird.chirp": "Bird chirps", + "subtitles.twilightforest.entity.tiny_bird.hurt": "Bird squeaks in pain", + "subtitles.twilightforest.entity.tiny_bird.song": "Bird sings", + "subtitles.twilightforest.entity.tiny_bird.takeoff": "Bird takes off", + "subtitles.twilightforest.entity.towerwood_borer.ambient": "Towerwood Borer hisses", + "subtitles.twilightforest.entity.towerwood_borer.death": "Towerwood Borer dies", + "subtitles.twilightforest.entity.towerwood_borer.hurt": "Towerwood Borer hurts", + "subtitles.twilightforest.entity.troll.throw_rock": "Troll chucks block", + "subtitles.twilightforest.entity.ur_ghast.ambient": "Ur-Ghast cries", + "subtitles.twilightforest.entity.ur_ghast.death": "Ur-Ghast dies", + "subtitles.twilightforest.entity.ur_ghast.hurt": "Ur-Ghast screams", + "subtitles.twilightforest.entity.ur_ghast.shoot": "Ur-Ghast shoots", + "subtitles.twilightforest.entity.ur_ghast.tantrum": "Ur-Ghast wails", + "subtitles.twilightforest.entity.winter_wolf.ambient": "Winter Wolf growls", + "subtitles.twilightforest.entity.winter_wolf.death": "Winter Wolf dies", + "subtitles.twilightforest.entity.winter_wolf.hurt": "Winter Wolf hurts", + "subtitles.twilightforest.entity.winter_wolf.shoot": "Winter Wolf shoots", + "subtitles.twilightforest.entity.winter_wolf.target": "Winter Wolf takes notice", + "subtitles.twilightforest.entity.wraith.ambient": "Wraith gasps", + "subtitles.twilightforest.entity.wraith.death": "Wraith dies", + "subtitles.twilightforest.entity.wraith.hurt": "Wraith hurts", + "subtitles.twilightforest.entity.yeti.death": "Yeti dies", + "subtitles.twilightforest.entity.yeti.grab": "Yeti grabs", + "subtitles.twilightforest.entity.yeti.growl": "Yeti growls", + "subtitles.twilightforest.entity.yeti.hurt": "Yeti hurts", + "subtitles.twilightforest.entity.yeti.throw": "Yeti throws", + "subtitles.twilightforest.environment.acid_rain": "Acid rain scalds", + "subtitles.twilightforest.item.block_and_chain.collide": "Block and Chain hits block", + "subtitles.twilightforest.item.block_and_chain.fire": "Block and Chain fires", + "subtitles.twilightforest.item.block_and_chain.hit": "Block and Chain hits entity", + "subtitles.twilightforest.item.charm.keep": "Charm of Keeping returns items", + "subtitles.twilightforest.item.charm.life": "Charm of Keeping regenerates", + "subtitles.twilightforest.item.fan.whoosh": "Peacock Feather Fan blows", + "subtitles.twilightforest.item.flask.break": "Brittle Flask shatters", + "subtitles.twilightforest.item.flask.crack": "Brittle Flask cracks", + "subtitles.twilightforest.item.flask.fill": "Potion Flask fills", + "subtitles.twilightforest.item.glass_sword.break": "Glass Sword shatters", + "subtitles.twilightforest.item.ice_bomb.fired": "Ice Bomb thrown", + "subtitles.twilightforest.item.knightmetal_armor.equip": "Knightmetal Armor clanks", + "subtitles.twilightforest.item.knightmetal_shield.shatter": "Metal Shield shatters", + "subtitles.twilightforest.item.lamp.burn": "Lamp of Cinders ignites area", + "subtitles.twilightforest.item.magnet.grab": "Ore Magnet pulls up ore", + "subtitles.twilightforest.item.moonworm.squish": "Moonworm fires", + "subtitles.twilightforest.item.scepter.drain": "Life Scepter drains", + "subtitles.twilightforest.item.scepter.pearl": "Twilight Scepter throws pearl", + "subtitles.twilightforest.item.shield.shatter": "Wooden Shield shatters", + "subtitles.twilightforest.item.transformation_powder.use": "Mob Transforms", + "trim_material.twilightforest.carminite": "Material de carminita", + "trim_material.twilightforest.fiery": "Material ardiente", + "trim_material.twilightforest.ironwood": "Material de hierro vegetal", + "trim_material.twilightforest.knightmetal": "Material de acero crepuscular", + "trim_material.twilightforest.naga_scale": "Material de escama de naga", + "trim_material.twilightforest.steeleaf": "Material de hoja metálica", + "twilightforest.book.author": "un explorador olvidado", + "twilightforest.book.darktower": "Notas sobre una torre de madera", + "twilightforest.book.darktower.1": "\u00A78[[Cuaderno de un explorador que parece haber sobrevivido a una explosión]]\u00A70\n\n_Esta torre claramente tiene mecanismos que no me responden. Su magia casi anhela reconocer mi toque, pero no puede. Es si los dispositivos de la torre están siendo", + "twilightforest.book.darktower.2": "reprimidos por un poderoso grupo de seres cercanos.\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_La magia parece emanar de las profundidades de las fortalezas cercanas. No puede provenir de los goblins, ya que su magia es encantadora, pero desenfocada.", + "twilightforest.book.darktower.3": "Todavía debe haber alguna fuerza activa en las fortalezas.\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_Mi análisis indica que proviene de varias fuentes, operando como grupo. Regresaré a la fortaleza después de reabastecerme...", + "twilightforest.book.hydralair": "Notas sobre el pantano de fuego", + "twilightforest.book.hydralair.1": "\u00A78[[Cuaderno de un explorador, escrito en papel ignífugo]]\u00A70\n\n_El fuego es un obstáculo trivial para un explorador experto como yo. He atravesado mares de fuego y nadado a través de océanos de lava. El aire ardiente aquí es una variación interesante,", + "twilightforest.book.hydralair.2": "pero al final no hay impedimento.\n\n_Sin embargo, lo que me detiene es que me he encontrado con otro hechizo de protección, esta vez rodeando a una poderosa criatura que debe ser el rey de este pantano de fuego. Este no es el primer hechizo de protección que he", + "twilightforest.book.hydralair.3": "encontrado, y estoy empezando a desentrañar los misterios de cómo funcionan.\n\n_Si este hechizo es como los demás, será sostenido por una poderosa criatura cercana. Alrededor del pantano de fuego hay varios pantanos húmedos, y debajo de esos", + "twilightforest.book.hydralair.4": "pantanos hay laberintos llenos de minotauros. La elección lógica para unir tal hechizo sería algún tipo de minotauro poderoso, diferente de alguna manera a los demás que lo rodean...", + "twilightforest.book.icetower": "Notas sobre la fortificación auroral", + "twilightforest.book.icetower.1": "\u00A78[[Un cuaderno de explorador, cubierto de hielo]]\u00A70\n\n_Superé una tormenta de nieve, solo para encontrarme con esta terrible tormenta de hielo en la cima del glaciar. Mis exploraciones me han mostrado el esplendor de un palacio de hielo, brillando con los colores de la aurora polar. Todo", + "twilightforest.book.icetower.2": "parece protegido por algún tipo de maldición.\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_No soy un novato. Esta maldición se alimenta del poder de una criatura cercana. La causa de la maldición que rodea al pantano de fuego se construyó a partir del poder del líder de los", + "twilightforest.book.icetower.3": "minotauros cercanos.\n\n_Rodeando este glaciar, hay masas de yetis. Quizás los yetis tengan algún tipo de líder...", + "twilightforest.book.labyrinth": "Notas sobre un laberinto pantanoso", + "twilightforest.book.labyrinth.1": "\u00A78[[Cuaderno de un explorador, escrito en papel impermeable]]\u00A70\n\n_Los mosquitos en este pantano son molestos, pero extraños. La gran mayoría de ellos parecen no tener una fuente natural, ni parecen tener un papel en la ecología local. He comenzado a", + "twilightforest.book.labyrinth.2": "sospechar que son una especie de maldición mágica.\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_Ahora que me he encontrado con un hechizo de protección en el laberinto en ruinas, considero mis sospechas confirmadas. Tanto la protección", + "twilightforest.book.labyrinth.3": "como los hechizos y mosquitos son una maldición. Esta maldición parece tener una fuente diferente a las otras que he encontrado. Tendré que investigar más...\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_La maldición parece", + "twilightforest.book.labyrinth.4": "ser de un tipo demasiado poderoso para que uno solo pueda producirlo. Serían necesarios varios magos trabajando en combinación.\n\n_Si uno de los magos dejaba de contribuir, toda la maldición sobre todo el pantano caería. Extrañamente,", + "twilightforest.book.labyrinth.5": "mis adivinaciones no muestran signos de ningún mago vivo cercano. Aunque vi algo interesante en una de las torres cercanas de techo puntiagudo...", + "twilightforest.book.lichtower": "Notas sobre una torre puntiaguda", + "twilightforest.book.lichtower.1": "\u00A78[[Un cuaderno de explorador, roído por monstruos]]\u00A70\n\n_Empecé a examinar el extraño aura que rodea a esta torre. Los ladrillos de la torre están protegidos por una maldición, más fuerte que cualquier otra que haya visto antes. La magia de la maldición", + "twilightforest.book.lichtower.2": "está hirviendo en el área circundante.\n\n_En mi tierra natal tendría muchas opciones para lidiar con esta magia, pero aquí mis suministros son limitados. Tendré que investigar...", + "twilightforest.book.lichtower.3": "\u00A78[[Muchas entradas después]]\u00A70\n\n_Un descubrimiento! En mis viajes vi un enorme monstruo parecido a una serpiente en un patio decorado. Cerca, recogí una escama verde gastada y desechada.\n\n_La magia en la escala parece tener las", + "twilightforest.book.lichtower.4": "propiedades que necesito para romper maldiciones, pero la magia es demasiado tenue. Puede que necesite adquirir un espécimen más fresco, directamente de la criatura.", + "twilightforest.book.tfstronghold": "Notas sobre una fortaleza", + "twilightforest.book.tfstronghold.1": "\u00A78[[Un cuaderno de explorador, escrito en un papel débilmente brillante]]\u00A70\n\n_Los zarcillos de oscuridad que rodean esta área son solo una manifestación de un hechizo protector sobre todo el bosque oscuro. El hechizo provoca ceguera, lo cual es bastante irritante. He", + "twilightforest.book.tfstronghold.2": "visto varias cosas interesantes en la zona y me gustaría seguir explorando.\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_He encontrado ruinas en el bosque oscuro. Pertenecen a una fortaleza, de un tipo habitualmente habitado por caballeros. Sin embargo,", + "twilightforest.book.tfstronghold.3": "en lugar de caballeros, esta fortaleza está llena de duendes. Llevan una armadura de caballero, pero su comportamiento es muy poco caballeresco.\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_En lo profundo de las ruinas, encontré un pedestal.", + "twilightforest.book.tfstronghold.4": "Obtener un cetro poderoso parecería debilitar la maldición sobre el bosque oscuro, y colocar un trofeo asociado con una criatura poderosa en el pedestal probablemente otorgaría acceso a la parte principal de la fortaleza.", + "twilightforest.book.trollcave": "Notas sobre las tierras altas", + "twilightforest.book.trollcave.1": "\u00A78[[Cuaderno de un explorador, dañado por el ácido]]\u00A70\n\n_Parece que no hay forma de protegerme de la tormenta tóxica que rodea esta área. En mis breves excursiones, también me he encontrado con otro hechizo de protección, similar a", + "twilightforest.book.trollcave.2": "otros que he presenciado. El hechizo debe estar conectado a la tormenta tóxica de alguna manera. Más investigaciones a seguir...\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_Tal magia suprema del clima debe ser el resultado de", + "twilightforest.book.trollcave.3": "múltiples grandes males invictos en este mundo. Mis estudios contienen varias pistas que apuntan a un pantano abrasador, un bosque cubierto de oscuridad profunda y un reino cubierto de nieve.", + "twilightforest.book.unknown": "Notas sobre lo inexplicable", + "twilightforest.book.unknown.1": "\u00A78[[Este libro muestra signos de haber sido copiado muchas veces]]\u00A70\n\n_No puedo explicar el campo que rodea esta estructura, pero la magia es poderosa. Si esta maldición es como las demás, entonces la respuesta para desbloquearla está en otra parte. Quizás hay", + "twilightforest.book.unknown.2": "algo que me falta hacer, o algún monstruo al que todavía tengo que derrotar. Tendré que regresar. Regresaré a este lugar más tarde, para ver si algo ha cambiado.", + "twilightforest.book.yeticave": "Notas sobre una cueva helada", + "twilightforest.book.yeticave.1": "\u00A78[[Un cuaderno de explorador, cubierto de escarcha]]\u00A70\n\n_La ventisca que rodea estas tierras nevadas es incesante. Esta no es una nevada ordinaria, es un fenómeno mágico. Tendré que realizar experimentos para encontrar", + "twilightforest.book.yeticave.2": "qué es capaz de causar tal efecto.\n\n\u00A78[[Entrada siguiente]]\u00A70\n\n_La maldición parece ser de un tipo demasiado poderoso para que uno solo pueda producirla. Serían necesarios varios magos trabajando en combinación.", + "twilightforest.book.yeticave.3": "Si uno de los magos dejaba de contribuir, la tormenta de nieve se calmaría. Curiosamente, mis adivinaciones no muestran signos de ningún mago vivo cercano. Sin embargo, vi algo interesante en una de las torres cercanas de techo puntiagudo..." +}