diff --git a/middle-earth/gradle.properties b/middle-earth/gradle.properties index 8f204e4435..8b085ded55 100644 --- a/middle-earth/gradle.properties +++ b/middle-earth/gradle.properties @@ -14,7 +14,7 @@ loom_version=1.11-SNAPSHOT fabric_version=0.129.0+1.21.8 # Mod Properties -mod_version = 1.0.1-1.21.8-beta +mod_version = 1.0.2-1.21.8-beta maven_group = net.sevenstars.middleearth archives_base_name = Middle-earth diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/MiddleEarthClient.java b/middle-earth/src/main/java/net/sevenstars/middleearth/MiddleEarthClient.java index 18592d1e70..81c689ab4e 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/MiddleEarthClient.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/MiddleEarthClient.java @@ -27,6 +27,7 @@ import net.sevenstars.middleearth.block.special.pots.LootablePotBlockEntityRenderer; import net.sevenstars.middleearth.block.special.reinforcedChest.ReinforcedChestEntityRenderer; import net.sevenstars.middleearth.block.special.shapingAnvil.ShapingAnvilEntityRenderer; +import net.sevenstars.middleearth.block.special.skull.OldSkullBlockEntityRenderer; import net.sevenstars.middleearth.client.BlockColorsME; import net.sevenstars.middleearth.client.model.equipment.CustomBootsModel; import net.sevenstars.middleearth.client.model.equipment.CustomChestplateModel; @@ -166,6 +167,7 @@ public void onInitializeClient() { BlockEntityRendererFactories.register(ModBlockEntities.OAK_COFFER, OakCofferEntityRenderer::new); BlockEntityRendererFactories.register(ModBlockEntities.WILLOW_COFFER, WillowCofferEntityRenderer::new); BlockEntityRendererFactories.register(ModBlockEntities.REINFORCED_CHEST, ReinforcedChestEntityRenderer::new); + BlockEntityRendererFactories.register(ModBlockEntities.OLD_SKULL, OldSkullBlockEntityRenderer::new); BlockEntityRendererFactories.register(ModBlockEntities.BELLOWS, BellowsBlockEntityRenderer::new); //BlockEntityRendererFactories.register(ModBlockEntities.CROCKPOT, CrockpotEntityRenderer::new); BlockEntityRendererFactories.register(ModBlockEntities.PLATE, PlateEntityRenderer::new); @@ -622,11 +624,17 @@ private void initializeRenderLayerMap() { BlockRenderLayerMap.putBlock(ModDecorativeBlocks.BROWN_FAT_POT, BlockRenderLayer.CUTOUT); BlockRenderLayerMap.putBlock(ModDecorativeBlocks.FAT_POT, BlockRenderLayer.CUTOUT); + BlockRenderLayerMap.putBlock(ModDecorativeBlocks.SKELETON, BlockRenderLayer.CUTOUT); + BlockRenderLayerMap.putBlock(ModDecorativeBlocks.CANDLESTICK, BlockRenderLayer.CUTOUT); BlockRenderLayerMap.putBlock(ModDecorativeBlocks.CERAMIC_LAMP, BlockRenderLayer.CUTOUT); BlockRenderLayerMap.putBlock(ModDecorativeBlocks.CANDLE_HOLDER, BlockRenderLayer.CUTOUT); BlockRenderLayerMap.putBlock(ModDecorativeBlocks.SKULL_CANDLE, BlockRenderLayer.CUTOUT); BlockRenderLayerMap.putBlock(ModDecorativeBlocks.CANDLE_HEAP, BlockRenderLayer.CUTOUT); + BlockRenderLayerMap.putBlock(ModDecorativeBlocks.SMALL_BRONZE_CHANDELIER, BlockRenderLayer.CUTOUT); + BlockRenderLayerMap.putBlock(ModDecorativeBlocks.BRONZE_CHANDELIER, BlockRenderLayer.CUTOUT); + BlockRenderLayerMap.putBlock(ModDecorativeBlocks.SMALL_CHANDELIER, BlockRenderLayer.CUTOUT); + BlockRenderLayerMap.putBlock(ModDecorativeBlocks.CHANDELIER, BlockRenderLayer.CUTOUT); BlockRenderLayerMap.putBlock(ModDecorativeBlocks.BIG_BRAZIER, BlockRenderLayer.CUTOUT); BlockRenderLayerMap.putBlock(ModDecorativeBlocks.SMALL_BRAZIER, BlockRenderLayer.CUTOUT); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/GenericBlockSets.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/GenericBlockSets.java index c3ba8fd315..d919b0e43f 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/GenericBlockSets.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/GenericBlockSets.java @@ -425,7 +425,8 @@ public class GenericBlockSets { ItemGroupsME.MISC_BLOCKS_CONTENTS)); private static GenericBlockSetBuilder registerBlockSet(GenericBlockSetBuilder set){ - set.blockSet = BlockSetRegistration.createRegularSet(set.setName , set.hardness, set.blastResistance, set.mapColor, set.instrument, set.soundGroup, false, set.group, set.requiresTool); + set.blockSet = BlockSetRegistration.createRegularSet(set.setName , set.hardness, set.blastResistance, set.mapColor, + set.instrument, set.soundGroup, false, set.group, set.requiresTool); genericSetsList.add(set); @@ -440,14 +441,16 @@ private static GenericBlockSetBuilder registerBlockSet(GenericBlockSetBuilder se return set; } private static SimpleBlockSetBuilder registerSimpleBlockSet(SimpleBlockSetBuilder set){ - set.blockSet = BlockSetRegistration.createSimpleSet(set.setName , set.hardness, set.blastResistance, set.mapColor, set.instrument, set.soundGroup, false, set.group, set.requiresTool); + set.blockSet = BlockSetRegistration.createSimpleSet(set.setName , set.hardness, set.blastResistance, set.mapColor, + set.instrument, set.soundGroup, false, set.group, set.requiresTool); simpleSetsList.add(set); return set; } private static GenericBlockSetBuilder registerPillarBlockSet(GenericBlockSetBuilder set){ - set.blockSet = BlockSetRegistration.createRegularSet(set.setName , set.hardness, set.blastResistance, set.mapColor, set.instrument, set.soundGroup, true, set.group, set.requiresTool); + set.blockSet = BlockSetRegistration.createRegularSet(set.setName , set.hardness, set.blastResistance, set.mapColor, + set.instrument, set.soundGroup, true, set.group, set.requiresTool); genericSetsList.add(set); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModBlockEntities.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModBlockEntities.java index 236b7bef99..1efcf5ad14 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModBlockEntities.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModBlockEntities.java @@ -14,6 +14,7 @@ import net.sevenstars.middleearth.block.special.sack.SackBlockEntity; import net.sevenstars.middleearth.block.special.shapingAnvil.ShapingAnvilBlockEntity; import net.sevenstars.middleearth.block.special.shapingAnvil.stoneanvil.StoneAnvilBlockEntity; +import net.sevenstars.middleearth.block.special.skull.OldSkullBlockEntity; import net.sevenstars.middleearth.block.special.structureManager.StructureManagerBlockEntity; import net.sevenstars.middleearth.block.special.structureManager.nest.StructureNestBlockEntity; import net.sevenstars.middleearth.block.special.wood_pile.WoodPileBlockEntity; @@ -50,6 +51,8 @@ public class ModBlockEntities { public static BlockEntityType OAK_COFFER = register("oak_coffer", OakCofferBlockEntity::new, ModDecorativeBlocks.OAK_COFFER); public static BlockEntityType WILLOW_COFFER = register("willow_coffer", WillowCofferBlockEntity::new, ModDecorativeBlocks.WILLOW_COFFER); + public static BlockEntityType OLD_SKULL = register("old_skull", OldSkullBlockEntity::new, ModDecorativeBlocks.OLD_SKULL); + public static BlockEntityType SACK = register("sack", SackBlockEntity::new, ModDecorativeBlocks.SACK); public static BlockEntityType REINFORCED_CHEST = register("reinforced_chest", ReinforcedChestBlockEntity::new, diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModDecorativeBlocks.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModDecorativeBlocks.java index e28a456ba0..51af72c522 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModDecorativeBlocks.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/ModDecorativeBlocks.java @@ -8,10 +8,7 @@ import net.sevenstars.middleearth.block.special.artisantable.ArtisanTable; import net.sevenstars.middleearth.block.special.beds.CustomBedBlock; import net.sevenstars.middleearth.block.special.bellows.BellowsBlock; -import net.sevenstars.middleearth.block.special.candles.CandleHolderBlock; -import net.sevenstars.middleearth.block.special.candles.CandleStickBlock; -import net.sevenstars.middleearth.block.special.candles.CeramicLampBlock; -import net.sevenstars.middleearth.block.special.candles.SkullCandleBlock; +import net.sevenstars.middleearth.block.special.candles.*; import net.sevenstars.middleearth.block.special.coffers.*; import net.sevenstars.middleearth.block.special.curtains.CurtainsBlock; import net.sevenstars.middleearth.block.special.curtains.SmallCurtainsBlock; @@ -32,6 +29,7 @@ import net.sevenstars.middleearth.block.special.shapingAnvil.orcishTreatedAnvil.OrcishTreatedAnvilblock; import net.sevenstars.middleearth.block.special.shapingAnvil.stoneanvil.StoneAnvilBlock; import net.sevenstars.middleearth.block.special.shapingAnvil.treatedAnvil.TreatedAnvilblock; +import net.sevenstars.middleearth.block.special.skull.OldSkullBlock; import net.sevenstars.middleearth.block.special.statues.FlipStatueBlock; import net.sevenstars.middleearth.block.special.statues.StatueBlock; import net.sevenstars.middleearth.block.special.structureManager.StructureManagerBlock; @@ -171,6 +169,12 @@ public class ModDecorativeBlocks { public static final Block WOOD_PILE = registerBlock("wood_pile", WoodPileBlock::new, AbstractBlock.Settings.copy(Blocks.OAK_PLANKS).strength(1.0f).nonOpaque()); + public static final Block OLD_SKULL = registerBlockWithItem("old_skull", + OldSkullBlock::new, AbstractBlock.Settings.copy(Blocks.SKELETON_SKULL).nonOpaque().sounds(BlockSoundGroup.BONE)); + public static final Block SKELETON = registerBlockWithItem("skeleton", + SkeletonBlock::new, AbstractBlock.Settings.create().mapColor(MapColor.PALE_YELLOW) + .instrument(NoteBlockInstrument.XYLOPHONE).strength(0.5F).sounds(BlockSoundGroup.BONE)); + public static final Block CANDLESTICK = registerBlockWithItem("candlestick", CandleStickBlock::new, AbstractBlock.Settings.copy(Blocks.CANDLE).luminance(createLightLevelFromLitBlockState(15)).nonOpaque()); public static final Block CERAMIC_LAMP = registerBlockWithItem("ceramic_lamp", @@ -181,6 +185,14 @@ public class ModDecorativeBlocks { SkullCandleBlock::new, AbstractBlock.Settings.copy(Blocks.CANDLE).luminance(createLightLevelFromLitBlockState(15)).nonOpaque()); public static final Block CANDLE_HEAP = registerBlockWithItem("candle_heap", CandleHeapBlock::new, AbstractBlock.Settings.copy(Blocks.CANDLE).nonOpaque().luminance(createLightLevelFromLitBlockState(10))); + public static final Block SMALL_BRONZE_CHANDELIER = registerBlockWithItem("small_bronze_chandelier", + SmallChandelierBlock::new, AbstractBlock.Settings.copy(Blocks.CANDLE).luminance(createLightLevelFromLitBlockState(15)).nonOpaque()); + public static final Block BRONZE_CHANDELIER = registerBlockWithItem("bronze_chandelier", + ChandelierBlock::new, AbstractBlock.Settings.copy(Blocks.CANDLE).luminance(createLightLevelFromLitBlockState(15)).nonOpaque()); + public static final Block SMALL_CHANDELIER = registerBlockWithItem("small_chandelier", + SmallChandelierBlock::new, AbstractBlock.Settings.copy(Blocks.CANDLE).luminance(createLightLevelFromLitBlockState(15)).nonOpaque()); + public static final Block CHANDELIER = registerBlockWithItem("chandelier", + ChandelierBlock::new, AbstractBlock.Settings.copy(Blocks.CANDLE).luminance(createLightLevelFromLitBlockState(15)).nonOpaque()); public static final Block STONE_LECTERN = registerBlockWithItem("stone_lectern", StoneLecternBlock::new, AbstractBlock.Settings.copy(Blocks.STONE).nonOpaque().requiresTool()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/StoneBlockSets.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/StoneBlockSets.java index a0c673a734..3f31405619 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/StoneBlockSets.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/StoneBlockSets.java @@ -29,7 +29,8 @@ public class StoneBlockSets { public static List stoneSetsList = new ArrayList<>(); public static StoneBlockSetBuilder STONE_SET = registerStoneSet(new StoneBlockSetBuilder("stone", - STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.STONE_GRAY, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, true, true) + STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.STONE_GRAY, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, + true, true, true, true, false) .addToSet(StoneBlockTypes.BASE_BLOCKS) .addToSet(StoneBlockTypes.COBBLESTONE_BLOCKS) .addToSet(StoneBlockTypes.SMOOTH_BLOCKS) @@ -43,7 +44,8 @@ public class StoneBlockSets { .addToSet(StoneBlockTypes.CARVED_WINDOW)); public static StoneBlockSetBuilder GRANITE_SET = registerStoneSet(new StoneBlockSetBuilder("granite", - STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.ORANGE, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, true, true) + STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.ORANGE, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, + true, true, true, false, true) .addToSet(StoneBlockTypes.BASE_BLOCKS) .addToSet(StoneBlockTypes.COBBLED_BLOCKS) .addToSet(StoneBlockTypes.SMOOTH_BLOCKS) @@ -56,7 +58,8 @@ public class StoneBlockSets { .addToSet(StoneBlockTypes.OLD_BLOCKS)); public static StoneBlockSetBuilder DIORITE_SET = registerStoneSet(new StoneBlockSetBuilder("diorite", - STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.WHITE, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, true, true) + STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.WHITE, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, + true, true, true, false, true) .addToSet(StoneBlockTypes.BASE_BLOCKS) .addToSet(StoneBlockTypes.COBBLED_BLOCKS) .addToSet(StoneBlockTypes.SMOOTH_BLOCKS) @@ -69,7 +72,8 @@ public class StoneBlockSets { .addToSet(StoneBlockTypes.OLD_BLOCKS)); public static StoneBlockSetBuilder ANDESITE_SET = registerStoneSet(new StoneBlockSetBuilder("andesite", - STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.WHITE_GRAY, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, true, true) + STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.WHITE_GRAY, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, + true, true, true, false, true) .addToSet(StoneBlockTypes.BASE_BLOCKS) .addToSet(StoneBlockTypes.COBBLED_BLOCKS) .addToSet(StoneBlockTypes.SMOOTH_BLOCKS) @@ -103,7 +107,8 @@ public class StoneBlockSets { .addToSet(StoneBlockTypes.BRICK_BLOCKS)); public static StoneBlockSetBuilder DEEPSLATE_SET = registerStoneSet(new StoneBlockSetBuilder("deepslate", - DEEPSLATE_HARDNESS, DEEPSLATE_BLAST_RESISTANCE, MapColor.DEEPSLATE_GRAY, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.DEEPSLATE, true, true) + DEEPSLATE_HARDNESS, DEEPSLATE_BLAST_RESISTANCE, MapColor.DEEPSLATE_GRAY, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.DEEPSLATE, + true, true, true, true, true) .addToSet(StoneBlockTypes.BASE_BLOCKS) .addToSet(StoneBlockTypes.COBBLED_BLOCKS) .addToSet(StoneBlockTypes.SMOOTH_BLOCKS) @@ -145,7 +150,8 @@ public class StoneBlockSets { .addToSet(StoneBlockTypes.CARVED_WINDOW)); public static StoneBlockSetBuilder BLACKSTONE_SET = registerStoneSet(new StoneBlockSetBuilder("blackstone", - STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.BLACK, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, true, true) + STONE_HARDNESS, STONE_BLAST_RESISTANCE, MapColor.BLACK, NoteBlockInstrument.BASEDRUM, BlockSoundGroup.STONE, + true, true, true, true, true) .addToSet(StoneBlockTypes.BASE_BLOCKS) .addToSet(StoneBlockTypes.COBBLED_BLOCKS) .addToSet(StoneBlockTypes.SMOOTH_BLOCKS) diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/WoodBlockSets.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/WoodBlockSets.java index eefb6c7d08..902307afdd 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/WoodBlockSets.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/registration/WoodBlockSets.java @@ -10,6 +10,7 @@ import net.minecraft.item.ItemStack; import net.minecraft.sound.BlockSoundGroup; import net.sevenstars.middleearth.MiddleEarth; +import net.sevenstars.middleearth.block.special.plants.BerryHollyLeavesBlock; import net.sevenstars.middleearth.block.special.plants.ModLeavesBlock; import net.sevenstars.middleearth.block.utils.BlockSetRegistration; import net.sevenstars.middleearth.block.utils.WoodBlockTypes; @@ -461,6 +462,10 @@ private static WoodBlockSetBuilder registerWoodSet(WoodBlockSetBuilder set) { set.leaves = getVanillaOrCreateNew(woodStoneTypes.getPrefix() + set.setName + woodStoneTypes.getSuffix(), (settings) -> new ModLeavesBlock(0.01F, settings, false), AbstractBlock.Settings.copy(Blocks.OAK_LEAVES) .strength(LEAVES_STRENGTH).mapColor(MapColor.YELLOW).sounds(BlockSoundGroup.GRASS).burnable(), itemGroup); + } else if(set.setName.equals("holly")){ + set.leaves = getVanillaOrCreateNew(woodStoneTypes.getPrefix() + set.setName + woodStoneTypes.getSuffix(), + (settings) -> new BerryHollyLeavesBlock(0.01F, settings), AbstractBlock.Settings.copy(Blocks.OAK_LEAVES) + .strength(LEAVES_STRENGTH).mapColor(MapColor.YELLOW).sounds(BlockSoundGroup.GRASS).burnable(), itemGroup); } else { set.leaves = getVanillaOrCreateNew(woodStoneTypes.getPrefix() + set.setName + woodStoneTypes.getSuffix(), (settings) -> new TintedParticleLeavesBlock(0.01F, settings), AbstractBlock.Settings.copy(Blocks.OAK_LEAVES) diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/SkeletonBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/SkeletonBlock.java new file mode 100644 index 0000000000..433c7cc2af --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/SkeletonBlock.java @@ -0,0 +1,84 @@ +package net.sevenstars.middleearth.block.special; + +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; +import net.minecraft.block.ShapeContext; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ItemPlacementContext; +import net.minecraft.item.ItemStack; +import net.minecraft.state.StateManager; +import net.minecraft.state.property.EnumProperty; +import net.minecraft.state.property.IntProperty; +import net.minecraft.state.property.Properties; +import net.minecraft.util.ActionResult; +import net.minecraft.util.BlockMirror; +import net.minecraft.util.BlockRotation; +import net.minecraft.util.Hand; +import net.minecraft.util.hit.BlockHitResult; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Direction; +import net.minecraft.util.math.random.Random; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockView; +import net.minecraft.world.World; +import net.minecraft.world.WorldView; +import net.minecraft.world.tick.ScheduledTickView; + +import java.util.Objects; + +public class SkeletonBlock extends Block { + private static final int MAX_POSES = 9; + public static final IntProperty POSE = IntProperty.of("pose", 1, MAX_POSES); + public static final EnumProperty HORIZONTAL_FACING = Properties.HORIZONTAL_FACING; + + public SkeletonBlock(Settings settings) { + super(settings); + this.setDefaultState((this.stateManager.getDefaultState()).with(HORIZONTAL_FACING, Direction.NORTH).with(POSE, 1)); + } + + @Override + protected void appendProperties(StateManager.Builder builder) { + builder.add(HORIZONTAL_FACING, POSE); + } + + @Override + protected ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, BlockHitResult hit) { + if (world.isClient) { + return ActionResult.SUCCESS; + } else { + world.setBlockState(pos, state.cycle(POSE)); + } + return ActionResult.SUCCESS; + } + + public BlockState getPlacementState(ItemPlacementContext ctx) { + BlockState blockState = ctx.getWorld().getBlockState(ctx.getBlockPos()); + if (blockState.isOf(this)) { + return blockState.cycle(POSE).with(HORIZONTAL_FACING, ctx.getHorizontalPlayerFacing().getOpposite()); + } else { + return Objects.requireNonNull(super.getPlacementState(ctx)).with(HORIZONTAL_FACING, ctx.getHorizontalPlayerFacing().getOpposite()); + } + } + + protected BlockState getStateForNeighborUpdate(BlockState state, WorldView world, ScheduledTickView tickView, BlockPos pos, Direction direction, BlockPos neighborPos, BlockState neighborState, Random random) { + return direction == Direction.DOWN && !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : + super.getStateForNeighborUpdate(state, world, tickView, pos, direction, neighborPos, neighborState, random); + } + + public BlockState rotate(BlockState state, BlockRotation rotation) { + return state.with(HORIZONTAL_FACING, rotation.rotate(state.get(HORIZONTAL_FACING))); + } + + public BlockState mirror(BlockState state, BlockMirror mirror) { + return state.rotate(mirror.getRotation(state.get(HORIZONTAL_FACING))); + } + + @Override + protected VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { + int pose = state.get(POSE); + if(pose == 1 || pose == 2 || pose == 9) return Block.createCuboidShape(2.0, 0.0, 2.0, 14.0, 12.0, 14.0); + else if(pose == 6 || pose == 7) return Block.createCuboidShape(2.0, 0.0, 2.0, 14.0, 4.0, 14.0); + else return Block.createCuboidShape(2.0, 0.0, 2.0, 14.0, 8.0, 14.0); + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/WateringCanBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/WateringCanBlock.java index 9fad0f9868..c44ea6f7fd 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/WateringCanBlock.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/WateringCanBlock.java @@ -57,7 +57,7 @@ protected BlockState getStateForNeighborUpdate(BlockState state, WorldView world @Override protected ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, BlockHitResult hit) { - if (player.getStackInHand(player.getActiveHand()).isEmpty() && !player.isInCreativeMode()){ + if (player.getEquippedStack(EquipmentSlot.MAINHAND).isEmpty() && !player.isInCreativeMode()){ world.setBlockState(pos, Blocks.AIR.getDefaultState()); player.equipStack(EquipmentSlot.MAINHAND, new ItemStack(ModDecorativeBlocks.WATERING_CAN.asItem())); world.playSound(null, pos.getX(), pos.getY(), pos.getZ(), SoundEvents.ENTITY_CHICKEN_EGG, SoundCategory.BLOCKS, 0.5f, world.random.nextFloat() * 0.1f - 1.0f); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/candles/ChandelierBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/candles/ChandelierBlock.java new file mode 100644 index 0000000000..869de2dd6a --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/candles/ChandelierBlock.java @@ -0,0 +1,173 @@ +package net.sevenstars.middleearth.block.special.candles; + +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; +import net.minecraft.block.ShapeContext; +import net.minecraft.entity.ai.pathing.NavigationType; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.ProjectileEntity; +import net.minecraft.fluid.FluidState; +import net.minecraft.fluid.Fluids; +import net.minecraft.item.ItemPlacementContext; +import net.minecraft.item.ItemStack; +import net.minecraft.item.Items; +import net.minecraft.particle.ParticleTypes; +import net.minecraft.registry.tag.ItemTags; +import net.minecraft.sound.SoundCategory; +import net.minecraft.sound.SoundEvents; +import net.minecraft.state.StateManager; +import net.minecraft.state.property.BooleanProperty; +import net.minecraft.state.property.IntProperty; +import net.minecraft.state.property.Properties; +import net.minecraft.util.ActionResult; +import net.minecraft.util.Hand; +import net.minecraft.util.hit.BlockHitResult; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Direction; +import net.minecraft.util.math.Vec3d; +import net.minecraft.util.math.random.Random; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockView; +import net.minecraft.world.World; +import net.minecraft.world.WorldAccess; +import net.minecraft.world.WorldView; +import net.minecraft.world.event.GameEvent; +import net.minecraft.world.tick.ScheduledTickView; +import org.jetbrains.annotations.Nullable; + +import java.util.function.ToIntFunction; + +public class ChandelierBlock extends Block { + private static final int MAX_VARIANT = 2; + public static final IntProperty VARIANT = IntProperty.of("variant", 1, MAX_VARIANT); + public static final BooleanProperty LIT; + + public static final ToIntFunction STATE_TO_LUMINANCE; + private static final VoxelShape SHAPE; + + public ChandelierBlock(Settings settings) { + super(settings); + this.setDefaultState(this.getDefaultState().with(LIT, false)); + } + + @Override + protected void appendProperties(StateManager.Builder builder) { + builder.add(LIT).add(VARIANT); + } + + @Nullable + public BlockState getPlacementState(ItemPlacementContext ctx) { + BlockState blockState = this.getDefaultState().with(VARIANT, 1); + if (blockState.canPlaceAt(ctx.getWorld(), ctx.getBlockPos())) { + return blockState; + } + return null; + } + + @Override + protected BlockState getStateForNeighborUpdate(BlockState state, WorldView world, ScheduledTickView tickView, BlockPos pos, Direction direction, BlockPos neighborPos, BlockState neighborState, Random random) { + return !state.canPlaceAt(world, pos) ? + Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, world, tickView, pos, direction, neighborPos, neighborState, random); + } + + @Override + protected boolean canPathfindThrough(BlockState state, NavigationType type) { + return false; + } + + @Override + protected ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, BlockHitResult hit) { + Hand hand = player.getActiveHand(); + if (!world.isClient && player.getAbilities().allowModifyWorld) { + ItemStack itemStack = player.getStackInHand(hand); + if(player.isInCreativeMode() && itemStack == ItemStack.EMPTY){ + world.setBlockState(pos, state.cycle(VARIANT)); + return ActionResult.SUCCESS; + } + + if (state.get(LIT) && itemStack.isIn(ItemTags.SHOVELS)) { + extinguish(null, state, world, pos); + } else if (!state.get(LIT) && itemStack.isOf(Items.FLINT_AND_STEEL) || itemStack.isOf(Items.TORCH)) { + setLit(world, state, pos, true); + } + } + return ActionResult.SUCCESS; + } + + public void randomDisplayTick(BlockState state, World world, BlockPos pos, Random random) { + if (state.get(LIT)) { + if(state.get(VARIANT) == 1) { + spawnCandleParticles(world, pos.toCenterPos().add(0.5, 12.5 * 0.0625, -0.375), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.5, 12.5 * 0.0625, 1.375), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.375, 12.5 * 0.0625, 0.5), random); + spawnCandleParticles(world, pos.toCenterPos().add(1.375, 12.5 * 0.0625, 0.5), random); + spawnCandleParticles(world, pos.toCenterPos().add(-0.125, 12.5 * 0.0625, -0.125), random); + spawnCandleParticles(world, pos.toCenterPos().add(-0.125, 12.5 * 0.0625, 1.125), random); + spawnCandleParticles(world, pos.toCenterPos().add(1.125, 12.5 * 0.0625, -0.125), random); + spawnCandleParticles(world, pos.toCenterPos().add(1.125, 12.5 * 0.0625, 1.125), random); + } else if(state.get(VARIANT) == 2) { + spawnCandleParticles(world, pos.toCenterPos().add(-0.25, 12.5 * 0.0625, -0.25), random); + spawnCandleParticles(world, pos.toCenterPos().add(-0.25, 12.5 * 0.0625, 1.25), random); + spawnCandleParticles(world, pos.toCenterPos().add(1.25, 12.5 * 0.0625, -0.25), random); + spawnCandleParticles(world, pos.toCenterPos().add(1.25, 12.5 * 0.0625, 1.25), random); + spawnCandleParticles(world, pos.toCenterPos().add(-0.25, 12.5 * 0.0625, 0.5), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.5, 12.5 * 0.0625, 1.25), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.5, 12.5 * 0.0625, -0.25), random); + spawnCandleParticles(world, pos.toCenterPos().add(1.25, 12.5 * 0.0625, 0.5), random); + } + } + } + + protected static void spawnCandleParticles(World world, Vec3d vec3d, Random random) { + float f = random.nextFloat(); + if (f < 0.3F) { + world.addParticleClient(ParticleTypes.SMOKE, vec3d.x - 0.5f, vec3d.y - 0.5f, vec3d.z - 0.5f, 0.0, 0.0, 0.0); + if (f < 0.17F) { + world.playSoundClient(vec3d.x, vec3d.y, vec3d.z, SoundEvents.BLOCK_CANDLE_AMBIENT, SoundCategory.BLOCKS, 1.0F + random.nextFloat(), random.nextFloat() * 0.7F + 0.3F, false); + } + } + world.addParticleClient(ParticleTypes.SMALL_FLAME, vec3d.x - 0.5f, vec3d.y - 0.5f, vec3d.z - 0.5f, 0.0, 0.0, 0.0); + } + + protected static void setLit(WorldAccess world, BlockState state, BlockPos pos, boolean lit) { + world.setBlockState(pos, state.with(LIT, lit), 2 | 3); + if(lit){ + world.playSound(null, pos, SoundEvents.ITEM_FLINTANDSTEEL_USE, SoundCategory.BLOCKS, 1.5F, 1.0F); + } + } + + protected static void extinguish(@Nullable PlayerEntity player, BlockState state, WorldAccess world, BlockPos pos) { + setLit(world, state, pos, false); + + world.playSound(null, pos, SoundEvents.BLOCK_CANDLE_EXTINGUISH, SoundCategory.BLOCKS, 1.5F, 1.0F); + world.emitGameEvent(player, GameEvent.BLOCK_CHANGE, pos); + } + + @Override + protected boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) { + return Block.sideCoversSmallSquare(world, pos.up(), Direction.DOWN); + } + + @Override + public FluidState getFluidState(BlockState state) { + return Fluids.EMPTY.getDefaultState(); + } + + public void onProjectileHit(World world, BlockState state, BlockHitResult hit, ProjectileEntity projectile) { + if (!world.isClient && projectile.isOnFire() && !state.get(LIT)) { + world.setBlockState(hit.getBlockPos(), state.with(LIT, true), STATE_TO_LUMINANCE.applyAsInt(state)); + } + } + + @Override + public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { + return SHAPE; + } + + static { + LIT = Properties.LIT; + STATE_TO_LUMINANCE = (state) -> state.get(LIT) ? 15 : 0; + SHAPE = Block.createCuboidShape(0, 2, 0, 16, 16.0, 16); + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/candles/SmallChandelierBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/candles/SmallChandelierBlock.java new file mode 100644 index 0000000000..0f2f85f87d --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/candles/SmallChandelierBlock.java @@ -0,0 +1,162 @@ +package net.sevenstars.middleearth.block.special.candles; + +import net.minecraft.block.*; +import net.minecraft.entity.ai.pathing.NavigationType; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.ProjectileEntity; +import net.minecraft.fluid.FluidState; +import net.minecraft.fluid.Fluids; +import net.minecraft.item.ItemPlacementContext; +import net.minecraft.item.ItemStack; +import net.minecraft.item.Items; +import net.minecraft.particle.ParticleTypes; +import net.minecraft.registry.tag.ItemTags; +import net.minecraft.sound.SoundCategory; +import net.minecraft.sound.SoundEvents; +import net.minecraft.state.StateManager; +import net.minecraft.state.property.BooleanProperty; +import net.minecraft.state.property.IntProperty; +import net.minecraft.state.property.Properties; +import net.minecraft.util.ActionResult; +import net.minecraft.util.Hand; +import net.minecraft.util.hit.BlockHitResult; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Direction; +import net.minecraft.util.math.Vec3d; +import net.minecraft.util.math.random.Random; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockView; +import net.minecraft.world.World; +import net.minecraft.world.WorldAccess; +import net.minecraft.world.WorldView; +import net.minecraft.world.event.GameEvent; +import net.minecraft.world.tick.ScheduledTickView; +import org.jetbrains.annotations.Nullable; + +import java.util.function.ToIntFunction; + +public class SmallChandelierBlock extends Block { + private static final int MAX_VARIANT = 2; + public static final IntProperty VARIANT = IntProperty.of("variant", 1, MAX_VARIANT); + public static final BooleanProperty LIT; + + public static final ToIntFunction STATE_TO_LUMINANCE; + private static final VoxelShape SHAPE; + + public SmallChandelierBlock(Settings settings) { + super(settings); + this.setDefaultState(this.getDefaultState().with(LIT, false)); + } + + @Override + protected void appendProperties(StateManager.Builder builder) { + builder.add(LIT).add(VARIANT); + } + + @Nullable + public BlockState getPlacementState(ItemPlacementContext ctx) { + BlockState blockState = this.getDefaultState().with(VARIANT, 1); + if (blockState.canPlaceAt(ctx.getWorld(), ctx.getBlockPos())) { + return blockState; + } + return null; + } + + @Override + protected BlockState getStateForNeighborUpdate(BlockState state, WorldView world, ScheduledTickView tickView, BlockPos pos, Direction direction, BlockPos neighborPos, BlockState neighborState, Random random) { + return !state.canPlaceAt(world, pos) ? + Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, world, tickView, pos, direction, neighborPos, neighborState, random); + } + + @Override + protected boolean canPathfindThrough(BlockState state, NavigationType type) { + return false; + } + + @Override + protected ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, BlockHitResult hit) { + Hand hand = player.getActiveHand(); + if (!world.isClient && player.getAbilities().allowModifyWorld) { + ItemStack itemStack = player.getStackInHand(hand); + if(player.isInCreativeMode() && itemStack == ItemStack.EMPTY){ + world.setBlockState(pos, state.cycle(VARIANT)); + return ActionResult.SUCCESS; + } + + if (state.get(LIT) && itemStack.isIn(ItemTags.SHOVELS)) { + extinguish(null, state, world, pos); + } else if (!state.get(LIT) && itemStack.isOf(Items.FLINT_AND_STEEL) || itemStack.isOf(Items.TORCH)) { + setLit(world, state, pos, true); + } + } + return ActionResult.SUCCESS; + } + + public void randomDisplayTick(BlockState state, World world, BlockPos pos, Random random) { + if (state.get(LIT)) { + if(state.get(VARIANT) == 1) { + spawnCandleParticles(world, pos.toCenterPos().add(0.0625, 12.5 * 0.0625, 0.0625), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.0625, 12.5 * 0.0625, 0.9375), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.9375, 12.5 * 0.0625, 0.0625), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.9375, 12.5 * 0.0625, 0.9375), random); + } else if(state.get(VARIANT) == 2) { + spawnCandleParticles(world, pos.toCenterPos().add(0.125, 12.5 * 0.0625, 0.5), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.5, 12.5 * 0.0625, 0.875), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.5, 12.5 * 0.0625, 0.125), random); + spawnCandleParticles(world, pos.toCenterPos().add(0.875, 12.5 * 0.0625, 0.5), random); + } + } + } + + protected static void spawnCandleParticles(World world, Vec3d vec3d, Random random) { + float f = random.nextFloat(); + if (f < 0.3F) { + world.addParticleClient(ParticleTypes.SMOKE, vec3d.x - 0.5f, vec3d.y - 0.5f, vec3d.z - 0.5f, 0.0, 0.0, 0.0); + if (f < 0.17F) { + world.playSoundClient(vec3d.x, vec3d.y, vec3d.z, SoundEvents.BLOCK_CANDLE_AMBIENT, SoundCategory.BLOCKS, 1.0F + random.nextFloat(), random.nextFloat() * 0.7F + 0.3F, false); + } + } + world.addParticleClient(ParticleTypes.SMALL_FLAME, vec3d.x - 0.5f, vec3d.y - 0.5f, vec3d.z - 0.5f, 0.0, 0.0, 0.0); + } + + protected static void setLit(WorldAccess world, BlockState state, BlockPos pos, boolean lit) { + world.setBlockState(pos, state.with(LIT, lit), 2 | 3); + if(lit){ + world.playSound(null, pos, SoundEvents.ITEM_FLINTANDSTEEL_USE, SoundCategory.BLOCKS, 1.5F, 1.0F); + } + } + + protected static void extinguish(@Nullable PlayerEntity player, BlockState state, WorldAccess world, BlockPos pos) { + setLit(world, state, pos, false); + + world.playSound(null, pos, SoundEvents.BLOCK_CANDLE_EXTINGUISH, SoundCategory.BLOCKS, 1.5F, 1.0F); + world.emitGameEvent(player, GameEvent.BLOCK_CHANGE, pos); + } + + @Override + protected boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) { + return Block.sideCoversSmallSquare(world, pos.up(), Direction.DOWN); + } + + @Override + public FluidState getFluidState(BlockState state) { + return Fluids.EMPTY.getDefaultState(); + } + + public void onProjectileHit(World world, BlockState state, BlockHitResult hit, ProjectileEntity projectile) { + if (!world.isClient && projectile.isOnFire() && !state.get(LIT)) { + world.setBlockState(hit.getBlockPos(), state.with(LIT, true), STATE_TO_LUMINANCE.applyAsInt(state)); + } + } + + @Override + public VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { + return SHAPE; + } + + static { + LIT = Properties.LIT; + STATE_TO_LUMINANCE = (state) -> state.get(LIT) ? 15 : 0; + SHAPE = Block.createCuboidShape(0, 2, 0, 16, 16.0, 16); + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plants/BerryHollyLeavesBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plants/BerryHollyLeavesBlock.java new file mode 100644 index 0000000000..66435d9c9b --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plants/BerryHollyLeavesBlock.java @@ -0,0 +1,29 @@ +package net.sevenstars.middleearth.block.special.plants; + +import net.minecraft.block.BlockState; +import net.minecraft.block.TintedParticleLeavesBlock; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ItemStack; +import net.minecraft.item.Items; +import net.minecraft.util.ActionResult; +import net.minecraft.util.Hand; +import net.minecraft.util.hit.BlockHitResult; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; +import net.sevenstars.middleearth.block.registration.ModNatureBlocks; + +public class BerryHollyLeavesBlock extends TintedParticleLeavesBlock { + + public BerryHollyLeavesBlock(float f, Settings settings) { + super(f, settings); + } + + @Override + protected ActionResult onUseWithItem(ItemStack stack, BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) { + if (stack.isOf(Items.BONE_MEAL)) { + world.setBlockState(pos, ModNatureBlocks.BERRY_HOLLY_LEAVES.getDefaultState()); + return ActionResult.SUCCESS; + } + return super.onUseWithItem(stack, state, world, pos, player, hand, hit); + } +} \ No newline at end of file diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plants/ModLeavesBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plants/ModLeavesBlock.java index ee3f18c51b..f20ca363fd 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plants/ModLeavesBlock.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plants/ModLeavesBlock.java @@ -4,16 +4,25 @@ import net.minecraft.block.BlockState; import net.minecraft.block.LeavesBlock; import net.minecraft.block.TintedParticleLeavesBlock; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.fluid.FluidState; import net.minecraft.fluid.Fluids; import net.minecraft.item.ItemPlacementContext; +import net.minecraft.item.ItemStack; +import net.minecraft.item.Items; import net.minecraft.server.world.ServerWorld; +import net.minecraft.util.ActionResult; +import net.minecraft.util.Hand; +import net.minecraft.util.hit.BlockHitResult; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Direction; import net.minecraft.util.math.random.Random; +import net.minecraft.world.World; import net.minecraft.world.WorldAccess; import net.minecraft.world.WorldView; import net.minecraft.world.tick.ScheduledTickView; +import net.sevenstars.middleearth.block.registration.ModNatureBlocks; +import net.sevenstars.middleearth.block.registration.WoodBlockSets; public class ModLeavesBlock extends TintedParticleLeavesBlock { final protected boolean castShadow; @@ -73,4 +82,13 @@ public BlockState getPlacementState(ItemPlacementContext ctx) { BlockState blockState = (this.getDefaultState().with(PERSISTENT, true)).with(WATERLOGGED, fluidState.getFluid() == Fluids.WATER); return updateDistanceFromLogs(blockState, ctx.getWorld(), ctx.getBlockPos()); } + + @Override + protected ActionResult onUseWithItem(ItemStack stack, BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) { + if (stack.isOf(Items.BONE_MEAL) && state.isOf(WoodBlockSets.MALLORN_SET.leaves)) { + world.setBlockState(pos, ModNatureBlocks.FLOWERING_MALLORN_LEAVES.getDefaultState()); + return ActionResult.SUCCESS; + } + return super.onUseWithItem(stack, state, world, pos, player, hand, hit); + } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plate/PlateBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plate/PlateBlock.java index cf3605184e..7d2cdd6844 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plate/PlateBlock.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/plate/PlateBlock.java @@ -153,7 +153,7 @@ protected static ActionResult tryEat(World world, BlockPos pos, PlayerEntity pla ConsumableComponent consumableComponent = food.get(DataComponentTypes.CONSUMABLE); if(foodComponent != null && consumableComponent != null) { if(!world.isClient) { - player.getHungerManager().add((foodComponent.nutrition() / 2), foodComponent.saturation()); + player.getHungerManager().add((foodComponent.nutrition() / 2), foodComponent.saturation() / 2); } foodComponent.onConsume(player.getWorld(), player, food, consumableComponent); world.emitGameEvent(player, GameEvent.EAT, pos); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/AbstractShapingAnvilBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/AbstractShapingAnvilBlock.java index ef716681b2..05c79e960b 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/AbstractShapingAnvilBlock.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/AbstractShapingAnvilBlock.java @@ -98,7 +98,7 @@ protected void onBlockBreakStart(BlockState state, World world, BlockPos pos, Pl player.getStackInHand(player.getActiveHand()).damage(1, player, EquipmentSlot.MAINHAND); if (blockEntity instanceof ShapingAnvilBlockEntity shapingAnvilBlockEntity) { ServerWorld serverWorld = (ServerWorld) world; - shapingAnvilBlockEntity.bonk(shapingAnvilBlockEntity, serverWorld); + shapingAnvilBlockEntity.bonk(shapingAnvilBlockEntity, serverWorld, stack); } } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/ShapingAnvilBlockEntity.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/ShapingAnvilBlockEntity.java index 97133b3644..01b22db893 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/ShapingAnvilBlockEntity.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/ShapingAnvilBlockEntity.java @@ -1,16 +1,20 @@ package net.sevenstars.middleearth.block.special.shapingAnvil; import net.fabricmc.fabric.api.screenhandler.v1.ExtendedScreenHandlerFactory; +import net.minecraft.enchantment.Enchantment; +import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.ExperienceOrbEntity; import net.minecraft.item.equipment.trim.ArmorTrim; import net.minecraft.item.equipment.trim.ArmorTrimMaterial; import net.minecraft.item.equipment.trim.ArmorTrimPattern; import net.minecraft.recipe.ServerRecipeManager; +import net.minecraft.registry.entry.RegistryEntry; import net.minecraft.storage.ReadView; import net.minecraft.storage.WriteView; import net.sevenstars.middleearth.MiddleEarth; import net.sevenstars.middleearth.block.registration.ModBlockEntities; import net.sevenstars.middleearth.block.special.forge.MetalTypes; +import net.sevenstars.middleearth.enchantments.EnchantmentsME; import net.sevenstars.middleearth.gui.shapinganvil.ShapingAnvilScreenHandler; import net.sevenstars.middleearth.item.DataComponentTypesME; import net.sevenstars.middleearth.item.ResourceItemsME; @@ -139,19 +143,33 @@ public ItemStack getRenderStack(ShapingAnvilBlockEntity entity) { return entity.getStack(0); } - public void bonk(ShapingAnvilBlockEntity entity, ServerWorld world){ + public void bonk(ShapingAnvilBlockEntity entity, ServerWorld world, ItemStack tool){ ItemStack input = entity.getStack(0); ServerRecipeManager serverRecipeManager = (ServerRecipeManager)entity.getWorld().getRecipeManager(); List> match = serverRecipeManager.getAllMatches(AnvilShapingRecipe.Type.INSTANCE, new SingleStackRecipeInput(input), entity.getWorld()).toList(); - if (!match.isEmpty() && input.get(DataComponentTypesME.TEMPERATURE_DATA) != null && hasShapingRecipe(entity)){ - int temperature = input.get(DataComponentTypesME.TEMPERATURE_DATA).temperature(); - + if (!match.isEmpty() && hasShapingRecipe(entity)){ + int temperature = 0; + if(input.get(DataComponentTypesME.TEMPERATURE_DATA) != null) { + temperature = input.get(DataComponentTypesME.TEMPERATURE_DATA).temperature(); + } entity.getWorld().playSound(null, pos, SoundEvents.BLOCK_ANVIL_LAND, SoundCategory.BLOCKS, 1.5f, 1.0f - (float) temperature / 1000); int minRandProgress = 7; int maxRandProgress = 14; + if(temperature <= 0) { + minRandProgress = maxRandProgress = 1; + } else { + RegistryEntry enchantmentRegistryEntry = world.getRegistryManager() + .getOrThrow(RegistryKeys.ENCHANTMENT).getOptional(EnchantmentsME.AULE_BLESSING).orElseThrow(); + boolean hasEnchant = tool.getEnchantments().getEnchantments().contains(enchantmentRegistryEntry); + if (hasEnchant) { + int level = EnchantmentHelper.getLevel(enchantmentRegistryEntry, tool); + minRandProgress = 7 + level; + maxRandProgress = 14 + (2 * level); + } + } if (input.getMaxDamage() == 0 && input.getDamage() == 0){ input.set(DataComponentTypes.MAX_DAMAGE, match.get(entity.outputIndex).value().getAmount()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/stoneanvil/StoneAnvilBlockEntity.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/stoneanvil/StoneAnvilBlockEntity.java index 3c87b2b73e..0e12dd5ea3 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/stoneanvil/StoneAnvilBlockEntity.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/shapingAnvil/stoneanvil/StoneAnvilBlockEntity.java @@ -28,7 +28,7 @@ public StoneAnvilBlockEntity(BlockEntityType type, BlockPos pos, BlockState stat } @Override - public void bonk(ShapingAnvilBlockEntity entity, ServerWorld world) { + public void bonk(ShapingAnvilBlockEntity entity, ServerWorld world, ItemStack tool) { ItemStack input = entity.getStack(0); ArmorTrim trim = input.get(DataComponentTypes.TRIM); @@ -44,6 +44,6 @@ public void bonk(ShapingAnvilBlockEntity entity, ServerWorld world) { } } - super.bonk(entity, world); + super.bonk(entity, world, tool); } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlock.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlock.java new file mode 100644 index 0000000000..77e681f578 --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlock.java @@ -0,0 +1,81 @@ +package net.sevenstars.middleearth.block.special.skull; + +import com.mojang.serialization.MapCodec; +import net.minecraft.block.*; +import net.minecraft.block.entity.BlockEntity; +import net.minecraft.entity.ai.pathing.NavigationType; +import net.minecraft.item.ItemPlacementContext; +import net.minecraft.state.StateManager; +import net.minecraft.state.property.IntProperty; +import net.minecraft.state.property.Properties; +import net.minecraft.util.BlockMirror; +import net.minecraft.util.BlockRotation; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Direction; +import net.minecraft.util.math.RotationPropertyHelper; +import net.minecraft.util.math.random.Random; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockView; +import net.minecraft.world.WorldView; +import net.minecraft.world.tick.ScheduledTickView; +import net.sevenstars.middleearth.block.special.bellows.BellowsBlock; +import net.sevenstars.middleearth.block.special.bellows.BellowsBlockEntity; +import org.jetbrains.annotations.Nullable; + +public class OldSkullBlock extends BlockWithEntity { + public static final IntProperty ROTATION = Properties.ROTATION; + public static final int MAX_ROTATION_INDEX = RotationPropertyHelper.getMax(); + private static final int MAX_ROTATIONS = MAX_ROTATION_INDEX + 1; + private static final VoxelShape SHAPE = Block.createColumnShape(8.0, 0.0, 8.0); + + public OldSkullBlock(Settings settings) { + super(settings); + this.setDefaultState((this.stateManager.getDefaultState()).with(ROTATION, 0)); + } + + @Override + protected MapCodec getCodec() { + return createCodec(OldSkullBlock::new); + } + + @Override + protected void appendProperties(StateManager.Builder builder) { + builder.add(ROTATION); + } + + @Override + protected boolean canPathfindThrough(BlockState state, NavigationType type) { + return false; + } + + @Override + public BlockState getPlacementState(ItemPlacementContext ctx) { + return super.getPlacementState(ctx).with(ROTATION, RotationPropertyHelper.fromYaw(ctx.getPlayerYaw())); + } + + protected BlockState getStateForNeighborUpdate(BlockState state, WorldView world, ScheduledTickView tickView, BlockPos pos, Direction direction, BlockPos neighborPos, BlockState neighborState, Random random) { + return direction == Direction.DOWN && !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : + super.getStateForNeighborUpdate(state, world, tickView, pos, direction, neighborPos, neighborState, random); + } + + @Override + protected BlockState rotate(BlockState state, BlockRotation rotation) { + return state.with(ROTATION, rotation.rotate((Integer)state.get(ROTATION), MAX_ROTATIONS)); + } + + @Override + protected BlockState mirror(BlockState state, BlockMirror mirror) { + return state.with(ROTATION, mirror.mirror((Integer)state.get(ROTATION), MAX_ROTATIONS)); + } + + @Override + protected VoxelShape getOutlineShape(BlockState state, BlockView world, BlockPos pos, ShapeContext context) { + return SHAPE; + } + + @Nullable + @Override + public BlockEntity createBlockEntity(BlockPos pos, BlockState state) { + return new OldSkullBlockEntity(pos, state); + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlockEntity.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlockEntity.java new file mode 100644 index 0000000000..0901b892b4 --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlockEntity.java @@ -0,0 +1,12 @@ +package net.sevenstars.middleearth.block.special.skull; + +import net.minecraft.block.BlockState; +import net.minecraft.block.entity.BlockEntity; +import net.minecraft.util.math.BlockPos; +import net.sevenstars.middleearth.block.registration.ModBlockEntities; + +public class OldSkullBlockEntity extends BlockEntity { + public OldSkullBlockEntity(BlockPos pos, BlockState state) { + super(ModBlockEntities.OLD_SKULL, pos, state); + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlockEntityRenderer.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlockEntityRenderer.java new file mode 100644 index 0000000000..a3eeb51e62 --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/special/skull/OldSkullBlockEntityRenderer.java @@ -0,0 +1,86 @@ +package net.sevenstars.middleearth.block.special.skull; + +import net.fabricmc.api.EnvType; +import net.fabricmc.api.Environment; +import net.minecraft.block.BlockState; +import net.minecraft.block.SkullBlock; +import net.minecraft.block.WallSkullBlock; +import net.minecraft.client.model.*; +import net.minecraft.client.render.*; +import net.minecraft.client.render.block.entity.BlockEntityRenderer; +import net.minecraft.client.render.block.entity.BlockEntityRendererFactory; +import net.minecraft.client.render.block.entity.SkullBlockEntityModel; +import net.minecraft.client.render.entity.model.*; +import net.minecraft.client.texture.SpriteAtlasTexture; +import net.minecraft.client.util.SpriteIdentifier; +import net.minecraft.client.util.math.MatrixStack; +import net.minecraft.util.Identifier; +import net.minecraft.util.math.Direction; +import net.minecraft.util.math.RotationAxis; +import net.minecraft.util.math.RotationPropertyHelper; +import net.minecraft.util.math.Vec3d; +import net.sevenstars.middleearth.MiddleEarth; +import net.sevenstars.middleearth.entity.EntityModelLayersME; +import org.jetbrains.annotations.Nullable; + +@Environment(EnvType.CLIENT) +public class OldSkullBlockEntityRenderer implements BlockEntityRenderer { + private final ModelPart skull; + + public OldSkullBlockEntityRenderer(BlockEntityRendererFactory.Context ctx) { + ModelPart modelPart = ctx.getLayerModelPart(EntityModelLayersME.OLD_SKULL); + this.skull = modelPart.getChild("skull"); + } + + @Nullable + public static SkullBlockEntityModel getModels(LoadedEntityModels models) { + return new SkullEntityModel(models.getModelPart(EntityModelLayers.SKELETON_SKULL)); + } + + public static TexturedModelData getTexturedModelData() { + ModelData modelData = new ModelData(); + ModelPartData modelPartData = modelData.getRoot(); + ModelPartData skull = modelPartData.addChild("skull", ModelPartBuilder.create().uv(0, 0) + .cuboid(-12.0F, -8.0F, 4.0F, 8.0F, 8.0F, 8.0F, new Dilation(0.0F)), ModelTransform.origin(8.0F, 24.0F, -8.0F)); + return TexturedModelData.of(modelData, 64, 64); + } + + public void render(OldSkullBlockEntity skullBlockEntity, float f, MatrixStack matrixStack, VertexConsumerProvider vertexConsumerProvider, int i, int j, Vec3d vec3d) { + BlockState blockState = skullBlockEntity.getCachedState(); + boolean bl = blockState.getBlock() instanceof WallSkullBlock; + Direction direction = bl ? blockState.get(WallSkullBlock.FACING) : null; + int k = bl ? RotationPropertyHelper.fromDirection(direction.getOpposite()) : (Integer)blockState.get(SkullBlock.ROTATION); + float h = RotationPropertyHelper.toDegrees(k); + + VertexConsumer vertexConsumer = getSpriteIdentifier().getVertexConsumer(vertexConsumerProvider, RenderLayer::getEntityCutout); + + RenderLayer renderLayer = getRenderLayer(); + renderSkull(direction, h, 0, matrixStack, vertexConsumer, i, skull, renderLayer); + } + + public static void renderSkull(@Nullable Direction direction, float yaw, float animationProgress, MatrixStack matrices, + VertexConsumer vertexConsumers, int light, ModelPart model, RenderLayer renderLayer) { + matrices.push(); + if (direction == null) { + matrices.translate(0.5F, 0.0F, 0.5F); + } else { + float f = 0.25F; + matrices.translate(0.5F - direction.getOffsetX() * 0.25F, 0.25F, 0.5F - direction.getOffsetZ() * 0.25F); + } + + matrices.translate(0, 1.5f, 0); + matrices.scale(-1.0F, -1.0F, 1.0F); + matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(yaw)); + model.render(matrices, vertexConsumers, light, OverlayTexture.DEFAULT_UV); + matrices.pop(); + } + + public static RenderLayer getRenderLayer() { + return RenderLayer.getEntityCutoutNoCullZOffset(Identifier.of(MiddleEarth.MOD_ID, "model/old_skull")); + } + + private SpriteIdentifier getSpriteIdentifier(){ + return new SpriteIdentifier(SpriteAtlasTexture.BLOCK_ATLAS_TEXTURE, + Identifier.of(MiddleEarth.MOD_ID, "model/old_skull")); + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/block/utils/setBuilders/StoneBlockSetBuilder.java b/middle-earth/src/main/java/net/sevenstars/middleearth/block/utils/setBuilders/StoneBlockSetBuilder.java index 5ffcb932e0..dc42135a57 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/block/utils/setBuilders/StoneBlockSetBuilder.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/block/utils/setBuilders/StoneBlockSetBuilder.java @@ -58,9 +58,18 @@ public class StoneBlockSetBuilder { public BlockSoundGroup soundGroup; public boolean hasMossy; public boolean hasCracked; + public boolean isVanilla; + public boolean hasVanillaCobble; + public boolean hasVanillaPolished; public StoneBlockSetBuilder(String name, float hardness, float blastResistance, MapColor mapColor, NoteBlockInstrument instrument, BlockSoundGroup soundGroup, boolean hasMossy, boolean hasCracked){ + this(name, hardness,blastResistance, mapColor, instrument, soundGroup, hasMossy, hasCracked, false, false, false); + } + + public StoneBlockSetBuilder(String name, float hardness, float blastResistance, + MapColor mapColor, NoteBlockInstrument instrument, BlockSoundGroup soundGroup, boolean hasMossy, + boolean hasCracked, boolean isVanilla, boolean hasVanillaCobble, boolean hasVanillaPolished){ this.setName = name; this.hardness = hardness; this.blastResistance = blastResistance; @@ -69,6 +78,9 @@ public StoneBlockSetBuilder(String name, float hardness, float blastResistance, this.soundGroup = soundGroup; this.hasMossy = hasMossy; this.hasCracked = hasCracked; + this.isVanilla = isVanilla; + this.hasVanillaCobble = hasVanillaCobble; + this.hasVanillaPolished = hasVanillaPolished; this.existingList = new ArrayList<>(); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/BaggyHatModel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/BaggyHatModel.java new file mode 100644 index 0000000000..d2886befc0 --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/BaggyHatModel.java @@ -0,0 +1,31 @@ +package net.sevenstars.middleearth.client.model.equipment.head.helmets; + +import net.minecraft.client.model.*; +import net.minecraft.client.render.entity.model.EntityModelPartNames; + +public class BaggyHatModel extends HelmetAddonModel { + + public BaggyHatModel(ModelPart root) { + super(root); + } + + public static TexturedModelData getTexturedModelData() { + ModelData modelData = new ModelData(); + ModelPartData modelPartData = modelData.getRoot(); + + ModelPartData head = modelPartData.addChild(EntityModelPartNames.HEAD, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + head.addChild(EntityModelPartNames.HAT, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + ModelPartData baggy_hat = head.addChild("baggy_hat", ModelPartBuilder.create().uv(0, 0) + .cuboid(-5.0F, -10.5F, -3.0F, 7.0F, 3.0F, 6.0F, + new Dilation(0.6F)), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.BODY, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.RIGHT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.RIGHT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + return TexturedModelData.of(modelData, 64, 64); + } +} \ No newline at end of file diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/ChaperonModel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/ChaperonModel.java new file mode 100644 index 0000000000..fcfcb12a21 --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/ChaperonModel.java @@ -0,0 +1,31 @@ +package net.sevenstars.middleearth.client.model.equipment.head.helmets; + +import net.minecraft.client.model.*; +import net.minecraft.client.render.entity.model.EntityModelPartNames; + +public class ChaperonModel extends HelmetAddonModel { + + public ChaperonModel(ModelPart root) { + super(root); + } + + public static TexturedModelData getTexturedModelData() { + ModelData modelData = new ModelData(); + ModelPartData modelPartData = modelData.getRoot(); + + ModelPartData head = modelPartData.addChild(EntityModelPartNames.HEAD, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + head.addChild(EntityModelPartNames.HAT, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + ModelPartData chaperon = head.addChild("chaperon", ModelPartBuilder.create().uv(2, 2) + .cuboid(-1.0F, -3.5F, -3.0F, 2.0F, 9.0F, 6.0F, + new Dilation(0.0F)), ModelTransform.origin(5.0F, -5.0F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.BODY, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.RIGHT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.RIGHT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + return TexturedModelData.of(modelData, 64, 64); + } +} \ No newline at end of file diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/GlassesWearableModel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/GlassesWearableModel.java new file mode 100644 index 0000000000..fd67b2b9c4 --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/GlassesWearableModel.java @@ -0,0 +1,32 @@ +package net.sevenstars.middleearth.client.model.equipment.head.helmets; + +import net.minecraft.client.model.*; +import net.minecraft.client.render.entity.model.EntityModelPartNames; + +public class GlassesWearableModel extends HelmetAddonModel { + + public GlassesWearableModel(ModelPart root) { + super(root); + } + + public static TexturedModelData getTexturedModelData() { + ModelData modelData = new ModelData(); + ModelPartData modelPartData = modelData.getRoot(); + + ModelPartData head = modelPartData.addChild(EntityModelPartNames.HEAD, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + head.addChild(EntityModelPartNames.HAT, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + ModelPartData googles = head.addChild("googles", ModelPartBuilder.create().uv(0, 0) + .cuboid(-3.0F, -5.125F, -5.0F, 2.0F, 2.0F, 1.0F, new Dilation(0.3F)) + .uv(0, 0).cuboid(1.0F, -5.0F, -5.0F, 2.0F, 2.0F, 1.0F, + new Dilation(0.3F)), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.BODY, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.RIGHT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.RIGHT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + return TexturedModelData.of(modelData, 64, 64); + } +} \ No newline at end of file diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/MonocleModel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/MonocleModel.java new file mode 100644 index 0000000000..38d1e0c37e --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/client/model/equipment/head/helmets/MonocleModel.java @@ -0,0 +1,35 @@ +package net.sevenstars.middleearth.client.model.equipment.head.helmets; + +import net.minecraft.client.model.*; +import net.minecraft.client.render.entity.model.EntityModelPartNames; + +public class MonocleModel extends HelmetAddonModel { + + public MonocleModel(ModelPart root) { + super(root); + } + + public static TexturedModelData getTexturedModelData() { + ModelData modelData = new ModelData(); + ModelPartData modelPartData = modelData.getRoot(); + + ModelPartData head = modelPartData.addChild(EntityModelPartNames.HEAD, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + head.addChild(EntityModelPartNames.HAT, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + ModelPartData addon_monocle = head.addChild("addon_monocle", ModelPartBuilder.create().uv(36, 31) + .cuboid(-3.25F, -4.5F, -6.75F, 2.0F, 2.0F, 1.0F, + new Dilation(0.3F)), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + ModelPartData monocle = head.addChild("monocle", ModelPartBuilder.create().uv(32, 23) + .cuboid(1.0F, -1.0F, -4.0F, 5.0F, 2.0F, 5.0F, + new Dilation(0.0F)), ModelTransform.of(-5.0F, -3.0F, 0.0F, 0.0F, 0.5236F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.BODY, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.RIGHT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_ARM, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + + modelPartData.addChild(EntityModelPartNames.RIGHT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + modelPartData.addChild(EntityModelPartNames.LEFT_LEG, ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); + return TexturedModelData.of(modelData, 64, 64); + } +} \ No newline at end of file diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/client/renderer/armor/HelmetArmorRenderer.java b/middle-earth/src/main/java/net/sevenstars/middleearth/client/renderer/armor/HelmetArmorRenderer.java index ce08fde9e5..61ad791e22 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/client/renderer/armor/HelmetArmorRenderer.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/client/renderer/armor/HelmetArmorRenderer.java @@ -58,6 +58,8 @@ public void render(MatrixStack matrices, VertexConsumerProvider vertexConsumers, //this.helmetModel.setAngles(bipedEntityRenderState); if(texture.contains("_helmet.png")){ ModArmorRenderer.renderArmor(matrices, vertexConsumers, light, stack, this.helmetAddonModel, Identifier.of(MiddleEarth.MOD_ID, texture.replaceAll("_helmet.png", "_addition.png")), dyeable); + } else if(texture.contains("glass") || texture.contains("monocle")){ + ModArmorRenderer.renderTranslucentPiece(matrices, vertexConsumers, light, stack, this.helmetAddonModel, Identifier.of(MiddleEarth.MOD_ID, texture.replaceAll(".png", "_addition.png"))); } else { ModArmorRenderer.renderArmor(matrices, vertexConsumers, light, stack, this.helmetAddonModel, Identifier.of(MiddleEarth.MOD_ID, texture.replaceAll(".png", "_addition.png")), dyeable); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/config/ModServerConfigs.java b/middle-earth/src/main/java/net/sevenstars/middleearth/config/ModServerConfigs.java index 0570c99579..3498c901e3 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/config/ModServerConfigs.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/config/ModServerConfigs.java @@ -30,6 +30,8 @@ public class ModServerConfigs { public static int SHARPNESS_MAX_LEVEL; /** Amount of levels that a power enchant can have in Middle-earth**/ public static int POWER_MAX_LEVEL; + /** Global Mob Cap**/ + public static int GLOBAL_MOB_CAP; public static void registerConfigs() { configs = new ModConfigProvider(); @@ -51,6 +53,8 @@ private static void createServerConfigs() { configs.addKeyValuePair(new Pair<>("enableReturnToOverworld", true), "boolean"); configs.addDescription("Should procedural structures (such as Orthanc) generate in Middle-earth?"); configs.addKeyValuePair(new Pair<>("enableProceduralStructures", true), "boolean"); + configs.addDescription("Maximum amount of non-persistent entity per type in Middle-earth"); + configs.addKeyValuePair(new Pair<>("globalMobCap", true), "int"); configs.addLineJump(); // PlayerFactionPayload configurations @@ -91,6 +95,8 @@ private static void assignServerConfigs() { ENABLE_SPAWN_OVERRIDE = CONFIG.getOrDefault("enableSpawnOverride", true); ENABLE_RETURN_TO_OVERWORLD = CONFIG.getOrDefault("enableReturnToOverworld", true); ENABLE_PROCEDURAL_STRUCTURES = CONFIG.getOrDefault("enableProceduralStructures", true); + GLOBAL_MOB_CAP = CONFIG.getOrDefault("globalMobCap", 50); + // PlayerFactionPayload configurations ENABLE_FACTION_RESET = CONFIG.getOrDefault("enableFactionReset", true); ENABLE_KEEP_RACE_ON_DIMENSION_SWAP = CONFIG.getOrDefault("enableKeepRaceOnDimensionSwap", true); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/HelpingGenerator.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/HelpingGenerator.java index 2c238f830c..ea21495d7d 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/HelpingGenerator.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/HelpingGenerator.java @@ -97,7 +97,7 @@ public static void generateFiles() { ModdedStrippedLogs.strippedLogs.add(set.strippedLogBlocks.log()); woodBlocks(set.strippedLogBlocks); } - case PLANK_BLOCKS -> plankBlocks(set.planksBlocks); + case PLANK_BLOCKS -> plankBlocks(set.planksBlocks, set.vanilla); case SHINGLE_BLOCKS -> { Shingles.shingles.add(set.shinglesBlocks.base()); regularBlocks(set.shinglesBlocks, 0); @@ -122,7 +122,9 @@ public static void generateFiles() { int tool = -1; if(set.requiresTool) { if(set.setName.contains("wood")) tool = 0; - else if(set.setName.contains("clay") || set.setName.contains("stone") || set.setName.contains("brick") || set.setName.contains("tiles")) tool = 1; + else if(set.setName.contains("clay") || set.setName.contains("stone") || set.setName.contains("brick") + || set.setName.contains("tiles") || set.setName.contains("stucco")) tool = 1; + else if(set.setName.contains("plaster")) tool = 2; } regularBlocks(set.blockSet, tool); } @@ -238,6 +240,7 @@ public static void addBlocksToLists(Block block, Block base, Block origin, int t switch(tool) { case 0 -> MineableAxe.blocks.add(block); case 1 -> MineablePickaxe.blocks.add(block); + case 2 -> MineableShovel.blocks.add(block); case 3 -> MineableHoe.blocks.add(block); } @@ -319,7 +322,8 @@ public static void addBlocksToLists(Block block, Block base, Block origin, int t SimplePressurePlateModel.pressurePlates.add(new SimplePressurePlateModel.PressurePlate(base, pressurePlateBlock)); } case ButtonBlock buttonBlock -> { - Buttons.buttons.add(buttonBlock); + if(woodModel) Buttons.woodButtons.add(buttonBlock); + else Buttons.stoneButtons.add(buttonBlock); SimpleButtonModel.buttons.add(new SimpleButtonModel.Button(base, buttonBlock)); } case TrapdoorBlock trapdoorBlock -> { @@ -374,10 +378,11 @@ public static void mainStoneBlocks(BlockRecordTypes.BaseStoneSet set){ BlockRecordTypes.BaseStoneSet.getAllBlocks(set).forEach(block -> addBlocksToLists(block, set.base(), set.slab(), 1)); } - public static void plankBlocks(BlockRecordTypes.PlanksSet set) { + public static void plankBlocks(BlockRecordTypes.PlanksSet set, boolean vanilla) { BlockRecordTypes.PlanksSet.getAllBlocks(set).forEach(block -> addBlocksToLists(block, set.base(), set.slab(), 0)); WoodenVerticalSlabs.woodenVericalSlabs.add(set.verticalSlab()); Planks.planks.add(set.base()); + if(!vanilla) Planks.moddedPlanks.add(set.base()); Planks.planksSlabs.add(set.slab()); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/TranslationEntries.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/TranslationEntries.java index bec75e49dc..bcaea43e7e 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/TranslationEntries.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/TranslationEntries.java @@ -42,6 +42,10 @@ public class TranslationEntries { public static List spawnEntries = new ArrayList<>() { }; + public static List inscriptionEntries = new ArrayList<>() { + + }; + public static Map manualEntries = new HashMap<>() { { put("itemGroup." + MiddleEarth.MOD_ID + ".stone_blocks", "Middle-earth Stone Blocks"); @@ -153,6 +157,7 @@ public class TranslationEntries { put("effect."+ MiddleEarth.MOD_ID +".restrained", "Restrained"); put("enchantment."+ MiddleEarth.MOD_ID +".ailment_protection", "Ailment Protection"); + put("enchantment."+ MiddleEarth.MOD_ID +".aule_blessing", "Aulë Blessing"); put("enchantment."+ MiddleEarth.MOD_ID +".bane_of_giants", "Bane of Giants"); put("enchantment."+ MiddleEarth.MOD_ID +".beheading", "Beheading"); put("enchantment."+ MiddleEarth.MOD_ID +".celerity", "Celerity"); @@ -311,6 +316,8 @@ public class TranslationEntries { put("block."+ MiddleEarth.MOD_ID +".faction_banner", "%s Banner"); + put(MiddleEarth.MOD_ID +".music.menu.swept_away", "Swept Away"); + put("sounds."+ MiddleEarth.MOD_ID +".bellows_push", "Bellows blowing"); put("sounds."+ MiddleEarth.MOD_ID +".chisel_hit", "Chisel hits"); put("sounds."+ MiddleEarth.MOD_ID +".chisel_enchant", "Chisel enchants"); @@ -769,7 +776,8 @@ public class TranslationEntries { put("screen."+ MiddleEarth.MOD_ID +".playerbook.mounts_desc", "The roads of middle earth are long and winding so consider a mount to assist with your travels.\n\n " + "Such companions come in all shapes and sizes, each having their own unique advantages and disadvantages."); - put("screen."+ MiddleEarth.MOD_ID +".playerbook.mounts_desc_right", "Many of those beasts can only be tamed by certain races."); + put("screen."+ MiddleEarth.MOD_ID +".playerbook.mounts_desc_right", "Many of those beasts can only be tamed by certain races.\n\n " + + "In Middle-earth, you cannot craft golden food such as golden apples to breed horses. Instead you must craft a Sack of Horsefeed, from a hay bale, a lettuce and an apple."); put("screen."+ MiddleEarth.MOD_ID +".playerbook.broadhoof_goat", "Broadhoof Goat"); put("screen."+ MiddleEarth.MOD_ID +".playerbook.mount_broadhoof_goat_desc", "The Broadhoof Goat is a great mount for Dwarves that can easily climb mountains.\n" + "You can find them in mountains where Dwarves live, but beware of these fluffy climbers; they can be aggressive if provoked. " + @@ -818,9 +826,9 @@ public class TranslationEntries { put("key."+ MiddleEarth.MOD_ID +".map_teleport", "Map Teleport"); put("key."+ MiddleEarth.MOD_ID +".map_fullscreen_toggle", "Toggle Map Fullscreen"); - put("modmenu.nameTranslation.me", "Middle-earth"); - put("modmenu.descriptionTranslation.me", "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!"); - put("modmenu.summaryTranslation.me", "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!"); + put("modmenu.nameTranslation."+ MiddleEarth.MOD_ID, "Middle-earth"); + put("modmenu.descriptionTranslation."+ MiddleEarth.MOD_ID, "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!"); + put("modmenu.summaryTranslation."+ MiddleEarth.MOD_ID, "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!"); put("emi.category."+ MiddleEarth.MOD_ID +".forge", "Forge"); put("emi.category."+ MiddleEarth.MOD_ID +".anvil_shaping", "Shaping Anvil"); @@ -878,6 +886,10 @@ public class TranslationEntries { put("attribute.modifiers.creative_mode_entity_range", "Creative Mode Entity Range"); put("npc_data."+ MiddleEarth.MOD_ID +".npc", "NPC"); + + put("inscription." + MiddleEarth.MOD_ID + ".linking_dash", "-"); + put("inscription." + MiddleEarth.MOD_ID + ".level", "%d Level"); + put("inscription." + MiddleEarth.MOD_ID + ".levels", "%d Levels"); } }; } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/loot_tables/BlockDrops.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/loot_tables/BlockDrops.java index 9dff7666db..33c74742c5 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/loot_tables/BlockDrops.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/loot_tables/BlockDrops.java @@ -56,9 +56,16 @@ public class BlockDrops { add(ModDecorativeBlocks.GOLDEN_CHALICE); + add(ModDecorativeBlocks.OLD_SKULL); + add(ModDecorativeBlocks.SKELETON); + add(ModDecorativeBlocks.CANDLE_HEAP); add(ModDecorativeBlocks.CANDLE_HOLDER); add(ModDecorativeBlocks.CERAMIC_LAMP); + add(ModDecorativeBlocks.SMALL_BRONZE_CHANDELIER); + add(ModDecorativeBlocks.BRONZE_CHANDELIER); + add(ModDecorativeBlocks.SMALL_CHANDELIER); + add(ModDecorativeBlocks.CHANDELIER); add(ModDecorativeBlocks.SCONCE); add(ModDecorativeBlocks.WALL_SCONCE); @@ -142,8 +149,6 @@ public class BlockDrops { add(ModNatureBlocks.SILVER_MAPLE_SAPLING); add(ModNatureBlocks.WHITE_PALM_SAPLING); - add(ModDecorativeBlocks.FORGE); - add(ModDecorativeBlocks.INSCRIPTION_TABLE); add(ModDecorativeBlocks.LARCH_COFFER); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/HotMetalsModel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/HotMetalsModel.java index 5a83e22f97..3774c56c3f 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/HotMetalsModel.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/HotMetalsModel.java @@ -41,7 +41,10 @@ public record ShapingItem(Item item, Item output, int amount) {} add(Items.GOLD_NUGGET); add(ResourceItemsME.BRONZE_NUGGET); add(ResourceItemsME.CRUDE_NUGGET); + add(ResourceItemsME.TIN_NUGGET); + add(ResourceItemsME.LEAD_NUGGET); add(ResourceItemsME.STEEL_NUGGET); + add(ResourceItemsME.SILVER_NUGGET); add(ResourceItemsME.KHAZAD_STEEL_NUGGET); add(ResourceItemsME.EDHEL_STEEL_NUGGET); add(ResourceItemsME.BURZUM_STEEL_NUGGET); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/SimpleItemModel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/SimpleItemModel.java index 67b761e450..902ca4e726 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/SimpleItemModel.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/models/SimpleItemModel.java @@ -126,10 +126,6 @@ public class SimpleItemModel { add(ResourceItemsME.RAW_SILVER); add(ResourceItemsME.RAW_MITHRIL); - add(ResourceItemsME.TIN_NUGGET); - add(ResourceItemsME.LEAD_NUGGET); - add(ResourceItemsME.SILVER_NUGGET); - add(ResourceItemsME.ADAMANT); add(ResourceItemsME.RUBY); add(ResourceItemsME.SAPPHIRE); @@ -140,6 +136,10 @@ public class SimpleItemModel { add(ModDecorativeBlocks.CANDLESTICK.asItem()); add(ModDecorativeBlocks.CERAMIC_LAMP.asItem()); + add(ModDecorativeBlocks.SMALL_BRONZE_CHANDELIER.asItem()); + add(ModDecorativeBlocks.BRONZE_CHANDELIER.asItem()); + add(ModDecorativeBlocks.SMALL_CHANDELIER.asItem()); + add(ModDecorativeBlocks.CHANDELIER.asItem()); add(ModDecorativeBlocks.SMALL_BLACK_CURTAIN.asItem()); add(ModDecorativeBlocks.SMALL_BLUE_CURTAIN.asItem()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/ArmorTags.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/ArmorTags.java index 1291ca0726..e939410cd3 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/ArmorTags.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/ArmorTags.java @@ -39,6 +39,7 @@ public static void registerRecipesTemplates() { add(new RecipeItem(DispositionType.GOOD, MetalTypes.EDHEL_STEEL, false, EquipmentItemsME.EGLADIL_SENTINEL_HELMET)); add(new RecipeItem(DispositionType.GOOD, MetalTypes.EDHEL_STEEL, true, EquipmentItemsME.EGLADIL_COMMANDER_HELMET)); add(new RecipeItem(DispositionType.GOOD, MetalTypes.EDHEL_STEEL, false, EquipmentItemsME.GALADHRIM_HELMET)); + add(new RecipeItem(DispositionType.GOOD, MetalTypes.EDHEL_STEEL, false, EquipmentItemsME.GALADHRIM_LORD_HELMET)); add(new RecipeItem(DispositionType.GOOD, MetalTypes.EDHEL_STEEL, false, EquipmentItemsME.WOODLAND_REALM_SOLDIER_HELMET)); add(new RecipeItem(DispositionType.GOOD, MetalTypes.EDHEL_STEEL, false, EquipmentItemsME.WARDEN_OF_THE_GLADE_HELMET)); add(new RecipeItem(DispositionType.GOOD, MetalTypes.EDHEL_STEEL, false, EquipmentItemsME.WARRIOR_OF_THE_NIGHTSHADE_HELMET)); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Buttons.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Buttons.java index 566fccea88..6bae23ed79 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Buttons.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Buttons.java @@ -6,7 +6,13 @@ import java.util.List; public class Buttons { - public static List buttons = new ArrayList<>() { + public static List stoneButtons = new ArrayList<>() { + { + + } + }; + + public static List woodButtons = new ArrayList<>() { { } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/MineableAxe.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/MineableAxe.java index 7f6f69cd1e..17bc4611ca 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/MineableAxe.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/MineableAxe.java @@ -44,6 +44,19 @@ public class MineableAxe { add(ModDecorativeBlocks.RUINED_DWARVEN_DOOR); add(ModDecorativeBlocks.GREAT_ELVEN_GATE); + add(ModDecorativeBlocks.THIN_BARREL); + add(ModDecorativeBlocks.SMALL_CRATE); + + add(ModDecorativeBlocks.BEECH_COFFER); + add(ModDecorativeBlocks.CHESTNUT_COFFER); + add(ModDecorativeBlocks.FIR_COFFER); + add(ModDecorativeBlocks.LARCH_COFFER); + add(ModDecorativeBlocks.OAK_COFFER); + add(ModDecorativeBlocks.PINE_COFFER); + add(ModDecorativeBlocks.SPRUCE_COFFER); + add(ModDecorativeBlocks.WILLOW_COFFER); + add(ModDecorativeBlocks.REINFORCED_CHEST); + add(ModBlocks.AGED_WOOD_TRAPDOOR); add(ModBlocks.BLACK_WATTLE_TRAPDOOR); add(ModBlocks.DARK_WATTLE_TRAPDOOR); @@ -61,9 +74,6 @@ public class MineableAxe { add(ModDecorativeBlocks.TREATED_WOOD_TABLE); add(ModDecorativeBlocks.TREATED_WOOD_BENCH); - add(ModDecorativeBlocks.THIN_BARREL); - add(ModDecorativeBlocks.SMALL_CRATE); - add(ModNatureBlocks.BROWN_BOLETE_BLOCK); add(ModNatureBlocks.CAVE_AMANITA_BLOCK); add(ModNatureBlocks.DEEP_FIRECAP_BLOCK); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/MineableShovel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/MineableShovel.java new file mode 100644 index 0000000000..27436e08bf --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/MineableShovel.java @@ -0,0 +1,123 @@ +package net.sevenstars.middleearth.datageneration.content.tags; + +import net.minecraft.block.Block; +import net.sevenstars.middleearth.block.registration.ModBlocks; +import net.sevenstars.middleearth.block.registration.ModNatureBlocks; + +import java.util.ArrayList; +import java.util.List; + +public class MineableShovel { + public static List blocks = new ArrayList<>() { + { + add(ModBlocks.ASH_BLOCK); + add(ModBlocks.RIVER_SAND); + add(ModBlocks.BLACK_SAND); + add(ModBlocks.WHITE_SAND); + add(ModBlocks.SNOWY_GRASS_BLOCK); + add(ModNatureBlocks.OLD_PODZOL); + add(ModNatureBlocks.LORIEN_PODZOL); + + add(ModBlocks.GRASSY_DIRT); + add(ModBlocks.GRASSY_DIRT_SLAB); + add(ModBlocks.GRASSY_DIRT_STAIRS); + + add(ModBlocks.CHALKSOIL_GRASS_BLOCK); + add(ModBlocks.CHALKSOIL); + add(ModBlocks.CHALKSOIL_SLAB); + add(ModBlocks.CHALKSOIL_STAIRS); + add(ModBlocks.GRASSY_CHALKSOIL); + add(ModBlocks.GRASSY_CHALKSOIL_SLAB); + add(ModBlocks.GRASSY_CHALKSOIL_STAIRS); + add(ModBlocks.COARSE_CHALKSOIL); + add(ModBlocks.COARSE_CHALKSOIL_SLAB); + add(ModBlocks.COARSE_CHALKSOIL_STAIRS); + add(ModBlocks.CHALKSOIL_PATH); + add(ModBlocks.CHALKSOIL_FARMLAND); + + add(ModBlocks.LOAM_GRASS_BLOCK); + add(ModBlocks.LOAM); + add(ModBlocks.LOAM_SLAB); + add(ModBlocks.LOAM_STAIRS); + add(ModBlocks.GRASSY_LOAM); + add(ModBlocks.GRASSY_LOAM_SLAB); + add(ModBlocks.GRASSY_LOAM_STAIRS); + add(ModBlocks.COARSE_LOAM); + add(ModBlocks.COARSE_LOAM_SLAB); + add(ModBlocks.COARSE_LOAM_STAIRS); + add(ModBlocks.LOAM_PATH); + add(ModBlocks.LOAM_FARMLAND); + + add(ModBlocks.PEAT_GRASS_BLOCK); + add(ModBlocks.PEAT); + add(ModBlocks.PEAT_SLAB); + add(ModBlocks.PEAT_STAIRS); + add(ModBlocks.GRASSY_PEAT); + add(ModBlocks.GRASSY_PEAT_SLAB); + add(ModBlocks.GRASSY_PEAT_STAIRS); + add(ModBlocks.COARSE_PEAT); + add(ModBlocks.COARSE_PEAT_SLAB); + add(ModBlocks.COARSE_PEAT_STAIRS); + add(ModBlocks.PEAT_PATH); + add(ModBlocks.PEAT_FARMLAND); + + add(ModBlocks.SILT_GRASS_BLOCK); + add(ModBlocks.SILT); + add(ModBlocks.SILT_SLAB); + add(ModBlocks.SILT_STAIRS); + add(ModBlocks.GRASSY_SILT); + add(ModBlocks.GRASSY_SILT_SLAB); + add(ModBlocks.GRASSY_SILT_STAIRS); + add(ModBlocks.COARSE_SILT); + add(ModBlocks.COARSE_SILT_SLAB); + add(ModBlocks.COARSE_SILT_STAIRS); + add(ModBlocks.SILT_PATH); + add(ModBlocks.SILT_FARMLAND); + + add(ModBlocks.TURF); + add(ModBlocks.TURF_SLAB); + add(ModBlocks.TURF_STAIRS); + add(ModBlocks.TURF_VERTICAL_SLAB); + + add(ModBlocks.MIRE); + add(ModBlocks.MIRE_SLAB); + add(ModBlocks.MIRE_STAIRS); + + add(ModBlocks.ASHEN_SAND); + add(ModBlocks.ASHEN_SAND_LAYER); + + add(ModBlocks.ASHEN_GRAVEL); + add(ModBlocks.ASHEN_GRAVEL_LAYER); + + add(ModBlocks.WASTE_PILE); + add(ModBlocks.WASTE_PILE_LAYER); + + add(ModBlocks.DRY_DIRT); + add(ModBlocks.DRY_DIRT_SLAB); + add(ModBlocks.DRY_DIRT_STAIRS); + + add(ModBlocks.FOUL_DIRT); + add(ModBlocks.FOUL_DIRT_SLAB); + add(ModBlocks.FOUL_DIRT_STAIRS); + + add(ModBlocks.DIRTY_ROOTS); + add(ModBlocks.DIRTY_ROOTS_SLAB); + add(ModBlocks.DIRTY_ROOTS_STAIRS); + + add(ModBlocks.ASHEN_DIRT); + add(ModBlocks.ASHEN_DIRT_SLAB); + add(ModBlocks.ASHEN_DIRT_STAIRS); + + add(ModBlocks.COBBLY_ASHEN_DIRT); + add(ModBlocks.COBBLY_ASHEN_DIRT_SLAB); + add(ModBlocks.COBBLY_ASHEN_DIRT_STAIRS); + + add(ModBlocks.COBBLY_DIRT); + add(ModBlocks.COBBLY_DIRT_SLAB); + add(ModBlocks.COBBLY_DIRT_STAIRS); + + add(ModBlocks.SNOWY_DIRT); + add(ModBlocks.SNOWY_DIRT_SLAB); + add(ModBlocks.SNOWY_DIRT_STAIRS); + }}; +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Planks.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Planks.java index fda7895cc6..47d5e1c3ef 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Planks.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/Planks.java @@ -13,6 +13,12 @@ public class Planks { } }; + public static List moddedPlanks = new ArrayList<>() { + { + + } + }; + public static List getItemPlanks() { ArrayList newList = new ArrayList<>(); for(Block block : planks) { @@ -21,6 +27,14 @@ public static List getItemPlanks() { return newList; } + public static List getItemPlanksWithoutVanilla() { + ArrayList newList = new ArrayList<>(); + for(Block block : moddedPlanks) { + newList.add(block.asItem()); + } + return newList; + } + public static List planksSlabs = new ArrayList<>() { { diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/WeaponEnchants.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/WeaponEnchants.java index c624f75284..1ab41c143a 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/WeaponEnchants.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/content/tags/WeaponEnchants.java @@ -17,7 +17,7 @@ public class WeaponEnchants { add(ToolItemsME.BRONZE_AXE.asItem()); add(ToolItemsME.CRUDE_AXE.asItem()); add(ToolItemsME.BURZUM_STEEL_AXE.asItem()); - add(ToolItemsME.EDHEL_STEEL_PICKAXE.asItem()); + add(ToolItemsME.EDHEL_STEEL_AXE.asItem()); add(ToolItemsME.KHAZAD_STEEL_AXE.asItem()); add(ToolItemsME.STEEL_AXE.asItem()); add(ToolItemsME.MITHRIL_AXE.asItem()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/BlockLootTableProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/BlockLootTableProvider.java index aa41d6b5f4..7ab560a38c 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/BlockLootTableProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/BlockLootTableProvider.java @@ -57,7 +57,7 @@ public void generate() { cobbleDrops(block, StoneBlockSets.NURGON_SET.cobblestoneBlocks.base()); } else if (Registries.BLOCK.getId(block).getPath().equals("medgon")) { cobbleDrops(block, StoneBlockSets.MEDGON_SET.cobblestoneBlocks.base()); - } else if (Registries.BLOCK.getId(block).getPath().equals("gonluin")) { + } else if (Registries.BLOCK.getId(block).getPath().equals("khagalaban")) { cobbleDrops(block, StoneBlockSets.KHAGALABAN_SET.cobblestoneBlocks.base()); } else if (Registries.BLOCK.getId(block).getPath().equals("limestone")) { cobbleDrops(block, StoneBlockSets.LIMESTONE_SET.cobblestoneBlocks.base()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/LanguageProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/LanguageProvider.java index e7c704e911..8e426886aa 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/LanguageProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/LanguageProvider.java @@ -118,6 +118,10 @@ public void generateTranslations(RegistryWrapper.WrapperLookup wrapperLookup, Tr createTranslation(translationBuilder, "spawn", faction); }); + TranslationEntries.inscriptionEntries.forEach(inscription -> { + createTranslation(translationBuilder, "inscription", inscription); + }); + TranslationEntries.manualEntries.forEach(translationBuilder::add); createBannerTranslation(translationBuilder, "item", "round_shield"); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableGenericArmorRecipeProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableGenericArmorRecipeProvider.java index f307e1dca6..3c77988466 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableGenericArmorRecipeProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableGenericArmorRecipeProvider.java @@ -22,7 +22,6 @@ import net.sevenstars.middleearth.MiddleEarth; import net.sevenstars.middleearth.block.registration.WoodBlockSets; import net.sevenstars.middleearth.block.special.forge.MetalTypes; -import net.sevenstars.middleearth.datageneration.content.tags.ArmorTags; import net.sevenstars.middleearth.datageneration.custom.ArtisanTableRecipeJsonBuilder; import net.sevenstars.middleearth.item.EquipmentItemsME; import net.sevenstars.middleearth.item.ResourceItemsME; @@ -186,6 +185,44 @@ public void generate() { //region GENERIC //T1 + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.BAGGY_HAT.getDefaultStack(), "hat", DispositionType.NEUTRAL) + .input(Items.LEATHER) + .input(Items.LEATHER) + .input(Items.LEATHER) + .input(Items.LEATHER) + .input(Items.LEATHER) + .criterion(hasItem(Items.LEATHER), + conditionsFromItem(Items.LEATHER)) + .offerTo(exporter); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.CHAPERON.getDefaultStack(), "hat", DispositionType.NEUTRAL) + .input(ResourceItemsME.FABRIC) + .input(ResourceItemsME.FABRIC) + .input(ResourceItemsME.FABRIC) + .input(ResourceItemsME.FABRIC) + .input(ResourceItemsME.FABRIC) + .criterion(hasItem(ResourceItemsME.FABRIC), + conditionsFromItem(ResourceItemsME.FABRIC)) + .offerTo(exporter); + + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.GLASSES.getDefaultStack(), "hat", DispositionType.NEUTRAL) + .input(ResourceItemsME.BRONZE_NUGGET) + .input(ResourceItemsME.BRONZE_INGOT) + .input(ResourceItemsME.BRONZE_NUGGET) + .input(Items.GLASS) + .input(Items.GLASS) + .criterion(hasItem(ResourceItemsME.BRONZE_INGOT), + conditionsFromItem(ResourceItemsME.BRONZE_INGOT)) + .offerTo(exporter); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.DWARVEN_MONOCLE.getDefaultStack(), "hat", DispositionType.GOOD) + .input(ResourceItemsME.BRONZE_NUGGET) + .input(ResourceItemsME.BRONZE_INGOT) + .input(Items.LEATHER) + .input(Items.GLASS) + .input(Items.LEATHER) + .criterion(hasItem(ResourceItemsME.BRONZE_INGOT), + conditionsFromItem(ResourceItemsME.BRONZE_INGOT)) + .offerTo(exporter); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.STRAW_HAT.getDefaultStack(), "hat", DispositionType.NEUTRAL) .input(Items.STRING) .input(ResourceItemsME.STRAW) @@ -216,6 +253,16 @@ public void generate() { conditionsFromItem(Items.WHITE_WOOL)) .offerTo(exporter); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.BEEKEEPER_MASK.getDefaultStack(), "hat", DispositionType.NEUTRAL) + .input(ResourceItemsME.FABRIC) + .input(ResourceItemsME.STRAW) + .input(ResourceItemsME.FABRIC) + .input(ResourceItemsME.FABRIC) + .input(ResourceItemsME.FABRIC) + .criterion(hasItem(ResourceItemsME.FABRIC), + conditionsFromItem(ResourceItemsME.FABRIC)) + .offerTo(exporter); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.WANDERER_HAT.getDefaultStack(), "hat", DispositionType.NEUTRAL) .input(ResourceItemsME.FABRIC) .input(Items.LEATHER) @@ -323,6 +370,19 @@ public void generate() { conditionsFromItem(Items.LEATHER)) .offerTo(exporter); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.BLACKSMITH_APRON.getDefaultStack(), "chestplate", DispositionType.NEUTRAL) + .input(Items.STRING) + .input(Items.STRING) + .input(ResourceItemsME.TIN_NUGGET) + .input(Items.LEATHER) + .input(ResourceItemsME.TIN_NUGGET) + .input(Items.LEATHER) + .input(Items.LEATHER) + .input(Items.LEATHER) + .criterion(hasItem(Items.LEATHER), + conditionsFromItem(Items.LEATHER)) + .offerTo(exporter); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, EquipmentItemsME.LEATHER_VEST.getDefaultStack(), "chestplate", DispositionType.NEUTRAL) .input(Items.LEATHER) .input(Items.LEATHER) diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableHandheldRecipeProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableHandheldRecipeProvider.java index fe52ecde31..eeed8a416f 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableHandheldRecipeProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/ArtisanTableHandheldRecipeProvider.java @@ -23,6 +23,7 @@ import net.minecraft.registry.tag.TagKey; import net.minecraft.util.Identifier; import net.sevenstars.middleearth.MiddleEarth; +import net.sevenstars.middleearth.block.registration.ModDecorativeBlocks; import net.sevenstars.middleearth.block.special.forge.MetalTypes; import net.sevenstars.middleearth.datageneration.custom.ArtisanTableRecipeJsonBuilder; import net.sevenstars.middleearth.item.ResourceItemsME; @@ -1291,6 +1292,45 @@ public void generate() { .criterion(hasItem(ResourceItemsME.SHIELD_PLATE), conditionsFromItem(ResourceItemsME.SHIELD_PLATE)) .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.DOL_GULDUR_PAVISE).getPath() + "_artisan"); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.DOL_GULDUR_ARMRUST_SHIELD.getDefaultStack(), "heavy_shield", DispositionType.EVIL, XP_HEAVY_SHIELD) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) + .componentInput(new ComponentsIngredient(Ingredient.ofItems(burzumSteelShieldPlate.getItem()), burzumSteelShieldPlate.getComponentChanges())) + .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(Items.LEATHER) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .criterion(hasItem(ResourceItemsME.SHIELD_PLATE), + conditionsFromItem(ResourceItemsME.SHIELD_PLATE)) + .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.DOL_GULDUR_ARMRUST_SHIELD).getPath() + "_artisan"); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.DOL_GULDUR_HEAVY_SHIELD.getDefaultStack(), "heavy_shield", DispositionType.EVIL, XP_HEAVY_SHIELD) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) + .componentInput(new ComponentsIngredient(Ingredient.ofItems(burzumSteelShieldPlate.getItem()), burzumSteelShieldPlate.getComponentChanges())) + .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(Items.LEATHER) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .criterion(hasItem(ResourceItemsME.SHIELD_PLATE), + conditionsFromItem(ResourceItemsME.SHIELD_PLATE)) + .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.DOL_GULDUR_HEAVY_SHIELD).getPath() + "_artisan"); + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.DOL_GULDUR_HEAVY_SKULL_SHIELD.getDefaultStack(), "heavy_shield", DispositionType.EVIL, XP_HEAVY_SHIELD) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(ModDecorativeBlocks.OLD_SKULL.asItem()) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) + .componentInput(new ComponentsIngredient(Ingredient.ofItems(burzumSteelShieldPlate.getItem()), burzumSteelShieldPlate.getComponentChanges())) + .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .input(Items.LEATHER) + .input(ResourceItemsME.BURZUM_STEEL_NUGGET) + .criterion(hasItem(ResourceItemsME.SHIELD_PLATE), + conditionsFromItem(ResourceItemsME.SHIELD_PLATE)) + .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.DOL_GULDUR_HEAVY_SKULL_SHIELD).getPath() + "_artisan"); ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.GONDORIAN_CONVERTED_SHIELD.getDefaultStack(), "medium_shield", DispositionType.EVIL, XP_MEDIUM_SHIELD) @@ -1485,7 +1525,7 @@ public void generate() { conditionsFromItem(ResourceItemsME.SHIELD_PLATE)) .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.MORIA_GOBLINS_HEAVY_SHIELD).getPath() + "_artisan"); - ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_SHIELD.getDefaultStack(), "medium_shield", DispositionType.GOOD, XP_MEDIUM_SHIELD) + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_SHIELD.getDefaultStack(), "medium_shield", DispositionType.EVIL, XP_MEDIUM_SHIELD) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) .input(ResourceItemsME.CRUDE_NUGGET) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) @@ -1496,7 +1536,7 @@ public void generate() { .criterion(hasItem(ResourceItemsME.SHIELD_BORDER), conditionsFromItem(ResourceItemsME.SHIELD_BORDER)) .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.RUINED_DWARVEN_SHIELD).getPath() + "_artisan"); - ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_CROSS_SHIELD.getDefaultStack(), "medium_shield", DispositionType.GOOD, XP_MEDIUM_SHIELD) + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_CROSS_SHIELD.getDefaultStack(), "medium_shield", DispositionType.EVIL, XP_MEDIUM_SHIELD) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) .input(ResourceItemsME.CRUDE_NUGGET) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) @@ -1507,7 +1547,7 @@ public void generate() { .criterion(hasItem(ResourceItemsME.SHIELD_BORDER), conditionsFromItem(ResourceItemsME.SHIELD_BORDER)) .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.RUINED_DWARVEN_CROSS_SHIELD).getPath() + "_artisan"); - ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_ORNAMENTED_SHIELD.getDefaultStack(), "medium_shield", DispositionType.GOOD, XP_MEDIUM_SHIELD) + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_ORNAMENTED_SHIELD.getDefaultStack(), "medium_shield", DispositionType.EVIL, XP_MEDIUM_SHIELD) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) .input(ResourceItemsME.CRUDE_NUGGET) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) @@ -1518,7 +1558,7 @@ public void generate() { .criterion(hasItem(ResourceItemsME.SHIELD_BORDER), conditionsFromItem(ResourceItemsME.SHIELD_BORDER)) .offerTo(exporter, Registries.ITEM.getId(WeaponItemsME.RUINED_DWARVEN_ORNAMENTED_SHIELD).getPath() + "_artisan"); - ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_REINFORCED_SHIELD.getDefaultStack(), "medium_shield", DispositionType.GOOD, XP_MEDIUM_SHIELD) + ArtisanTableRecipeJsonBuilder.createArtisanRecipe(itemLookup, RecipeCategory.COMBAT, WeaponItemsME.RUINED_DWARVEN_REINFORCED_SHIELD.getDefaultStack(), "medium_shield", DispositionType.EVIL, XP_MEDIUM_SHIELD) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) .input(ResourceItemsME.CRUDE_NUGGET) .input(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))) diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/InscriptionRecipeProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/InscriptionRecipeProvider.java index 174fc78c7f..25aedf8b6e 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/InscriptionRecipeProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/InscriptionRecipeProvider.java @@ -835,6 +835,35 @@ public void generate() { .offerTo(exporter, String.valueOf(Identifier.of(MiddleEarth.MOD_ID, "inscription_ailment_protection_4"))); //endregion + //region AULE BLESSING + InscriptionRecipeJsonBuilder.createInscriptionRecipe(itemLookup, RecipeCategory.MISC, + getEnchantment(EnchantmentsME.AULE_BLESSING), 1, 4) + .chisel(ItemTagsME.EARLY_CHISELS) + .addWord("gifted") + .addWord("core") + .criterion(hasItem(Items.EMERALD), + conditionsFromItem(Items.EMERALD)) + .offerTo(exporter, String.valueOf(Identifier.of(MiddleEarth.MOD_ID, "inscription_aule_blessing_1"))); + + InscriptionRecipeJsonBuilder.createInscriptionRecipe(itemLookup, RecipeCategory.MISC, + getEnchantment(EnchantmentsME.AILMENT_PROTECTION), 2, 6) + .chisel(ItemTagsME.MID_CHISELS) + .addWord("gifted") + .addWord("core") + .criterion(hasItem(Items.EMERALD), + conditionsFromItem(Items.EMERALD)) + .offerTo(exporter, String.valueOf(Identifier.of(MiddleEarth.MOD_ID, "inscription_aule_blessing_2"))); + + InscriptionRecipeJsonBuilder.createInscriptionRecipe(itemLookup, RecipeCategory.MISC, + getEnchantment(EnchantmentsME.AILMENT_PROTECTION), 3, 8) + .chisel(ItemTagsME.MID_CHISELS) + .addWord("gifted") + .addWord("core") + .criterion(hasItem(Items.EMERALD), + conditionsFromItem(Items.EMERALD)) + .offerTo(exporter, String.valueOf(Identifier.of(MiddleEarth.MOD_ID, "inscription_aule_blessing_3"))); + //endregion + //region BANE OF GIANTS InscriptionRecipeJsonBuilder.createInscriptionRecipe(itemLookup, RecipeCategory.MISC, getEnchantment(EnchantmentsME.BANE_OF_GIANTS), 1, 3) @@ -969,7 +998,6 @@ public void generate() { .offerTo(exporter, String.valueOf(Identifier.of(MiddleEarth.MOD_ID, "inscription_hewing_3"))); //endregion - //region TREE_FELLER InscriptionRecipeJsonBuilder.createInscriptionRecipe(itemLookup, RecipeCategory.MISC, getEnchantment(EnchantmentsME.TREE_FELLER), 1, 5) diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/RecipeProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/RecipeProvider.java index 661a3b76d3..e7e07833b1 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/RecipeProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/recipes/RecipeProvider.java @@ -19,6 +19,7 @@ import net.sevenstars.middleearth.block.registration.*; import net.sevenstars.middleearth.block.utils.BlockRecordTypes; import net.sevenstars.middleearth.block.utils.setBuilders.GenericBlockSetBuilder; +import net.sevenstars.middleearth.block.utils.setBuilders.SimpleBlockSetBuilder; import net.sevenstars.middleearth.block.utils.setBuilders.StoneBlockSetBuilder; import net.sevenstars.middleearth.block.utils.setBuilders.WoodBlockSetBuilder; import net.sevenstars.middleearth.datageneration.content.models.*; @@ -104,16 +105,21 @@ public void generate() { } if(record.cobblestoneBlocks != null && record.baseBlocks != null) { - offerStonecuttingRecipe(RecipeCategory.BUILDING_BLOCKS, record.cobblestoneBlocks.base(), record.baseBlocks.base(), 1); - offerSmelting(List.of(record.cobblestoneBlocks.base()), RecipeCategory.BUILDING_BLOCKS, - record.baseBlocks.base(), 0.1f, 200, "blocks"); - + if(!record.hasVanillaCobble) { + offerStonecuttingRecipe(RecipeCategory.BUILDING_BLOCKS, record.cobblestoneBlocks.base(), record.baseBlocks.base(), 1); + offerSmelting(List.of(record.cobblestoneBlocks.base()), RecipeCategory.BUILDING_BLOCKS, + record.baseBlocks.base(), 0.1f, 200, "blocks"); + } if(record.brickworkBlocks != null) { createBrickworkBlockRecipe(exporter, record.cobblestoneBlocks.base(), GenericBlockSets.STUCCO.blockSet.base(), record.brickworkBlocks.base()); } } + if(record.smoothBlocks != null && record.tileBlocks != null) { + createBrickRecipe(exporter, record.smoothBlocks.base().asItem(), record.tileBlocks.base(), 4); + } + if (record.baseBlocks != null) { if(record.brickBlocks != null) { createBrickRecipe(exporter, record.baseBlocks.base().asItem(), record.brickBlocks.base(), 4); @@ -123,7 +129,7 @@ public void generate() { createPillarRecipe(exporter, record.baseBlocks.base(), record.pillarBlocks.base(), 3); offerStonecuttingRecipe(RecipeCategory.BUILDING_BLOCKS, record.pillarBlocks.base(), record.baseBlocks.base(), 1); } - if(record.polishedBlocks != null) { + if(record.polishedBlocks != null && !record.hasVanillaPolished) { createBrickRecipe(exporter, record.baseBlocks.base().asItem(), record.polishedBlocks.base(), 4); offerStonecuttingRecipe(RecipeCategory.BUILDING_BLOCKS, record.polishedBlocks.base(), record.baseBlocks.base(), 1); } @@ -165,39 +171,64 @@ public void generate() { createStoneChairRecipe(exporter, record.baseBlocks.base().asItem(), record.baseBlocks.chair()); } - createStoneSetRecipes(record.baseBlocks); - createStoneSetRecipes(record.cobblestoneBlocks); + if(!record.isVanilla) createStoneSetRecipes(record.baseBlocks); + if(!record.hasVanillaCobble) createStoneSetRecipes(record.cobblestoneBlocks); createStoneSetRecipes(record.brickBlocks); createStoneSetRecipes(record.tileBlocks); createStoneSetRecipes(record.smoothBlocks); - createStoneSetRecipes(record.polishedBlocks); + if(!record.hasVanillaPolished) createStoneSetRecipes(record.polishedBlocks); + createStoneSetRecipes(record.chiseledBlocks); + createStoneSetRecipes(record.chiseledBricksBlocks); + createStoneSetRecipes(record.chiseledTilesBlocks); + createStoneSetRecipes(record.chiseledPolishedBlocks); + createStoneSetRecipes(record.chiseledSmoothBlocks); createStoneSetRecipes(record.brickworkBlocks); createStoneSetRecipes(record.pillarBlocks); createStoneSetRecipes(record.oldBlocks); + + if(record.carvedWindows != null && record.baseBlocks != null) { + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.carvedWindows.block(), 4) + .pattern("EEE") + .pattern("EGE") + .pattern("EEE") + .input('E', record.baseBlocks.base()) + .input('G', Items.GLASS) + .criterion(hasItem(record.baseBlocks.base()), + conditionsFromItem(record.baseBlocks.base())) + .offerTo(exporter); + createPaneRecipe(exporter, record.carvedWindows.block().asItem(), record.carvedWindows.verticalSlab(), 12); + } } //endregion //region WOOD RECIPES for (WoodBlockSetBuilder record : WoodBlockSets.woodSetsList) { if(record.logBlocks != null) { - createBrickRecipe(exporter, record.logBlocks.log().asItem(), record.logBlocks.wood(), 3); offerWallRecipe(RecipeCategory.BUILDING_BLOCKS, record.logBlocks.wall(), record.logBlocks.wood()); createFenceRecipe(exporter, record.logBlocks.wood().asItem(), record.logBlocks.fence()); offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, record.logBlocks.slab(), record.logBlocks.wood()); - createSlabsFromVerticalRecipe(exporter, record.logBlocks.slab(), record.logBlocks.slab()); createStairsRecipe(exporter, record.logBlocks.wood(), record.logBlocks.stairs()); - ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.planksBlocks.base(), 4) - .input(record.logBlocks.log()) - .criterion(hasItem(record.logBlocks.log()), - conditionsFromItem(record.planksBlocks.base())) - .offerTo(exporter); + createSlabsFromVerticalRecipe(exporter, record.logBlocks.verticalSlab(), record.logBlocks.slab()); + createVerticalSlabsRecipe(exporter, record.logBlocks.slab(), record.logBlocks.verticalSlab()); + createSlabsFromVerticalRecipe(exporter, record.planksBlocks.verticalSlab(), record.planksBlocks.slab()); + createVerticalSlabsRecipe(exporter, record.planksBlocks.slab(), record.planksBlocks.verticalSlab()); + + if(!record.vanilla) { + createBrickRecipe(exporter, record.logBlocks.log().asItem(), record.logBlocks.wood(), 3); + ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.planksBlocks.base(), 4) + .input(record.logBlocks.log()) + .criterion(hasItem(record.logBlocks.log()), + conditionsFromItem(record.planksBlocks.base())) + .offerTo(exporter); + + ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.planksBlocks.base(), 4) + .input(record.logBlocks.wood()) + .criterion(hasItem(record.logBlocks.wood()), + conditionsFromItem(record.planksBlocks.base())) + .offerTo(exporter, String.valueOf(Identifier.of(MiddleEarth.MOD_ID, Registries.BLOCK.getId(record.planksBlocks.base()).getPath() + "_from_wood"))); + } - ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.planksBlocks.base(), 4) - .input(record.logBlocks.wood()) - .criterion(hasItem(record.logBlocks.wood()), - conditionsFromItem(record.planksBlocks.base())) - .offerTo(exporter, String.valueOf(Identifier.of(MiddleEarth.MOD_ID, Registries.BLOCK.getId(record.planksBlocks.base()).getPath() + "_from_wood"))); } else if(record.mushroomStemBlocks != null) { ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.planksBlocks.base(), 4) .input(record.mushroomStemBlocks.stem()) @@ -218,10 +249,16 @@ public void generate() { offerWallRecipe(RecipeCategory.BUILDING_BLOCKS, record.strippedLogBlocks.wall(), record.strippedLogBlocks.wood()); createFenceRecipe(exporter, record.strippedLogBlocks.wood().asItem(), record.strippedLogBlocks.fence()); offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, record.strippedLogBlocks.slab(), record.strippedLogBlocks.wood()); - if(!record.vanilla)createVerticalSlabsRecipe(exporter, record.strippedLogBlocks.slab(), record.strippedLogBlocks.verticalSlab()); - createSlabsFromVerticalRecipe(exporter, record.strippedLogBlocks.verticalSlab(), record.strippedLogBlocks.slab()); createStairsRecipe(exporter, record.strippedLogBlocks.wood(), record.strippedLogBlocks.stairs()); + createSlabsFromVerticalRecipe(exporter, record.strippedLogBlocks.verticalSlab(), record.strippedLogBlocks.slab()); + createVerticalSlabsRecipe(exporter, record.strippedLogBlocks.slab(), record.strippedLogBlocks.verticalSlab()); + // if(!record.vanilla) + //createSlabsFromVerticalRecipe(exporter, record.strippedLogBlocks.verticalSlab(), record.strippedLogBlocks.slab()); + //createVerticalSlabsRecipe(exporter, record.strippedLogBlocks.slab(), record.strippedLogBlocks.verticalSlab()); + //createSlabsFromVerticalRecipe(exporter, record.strippedLogBlocks.verticalSlab(), record.strippedLogBlocks.slab()); + //createStairsRecipe(exporter, record.strippedLogBlocks.wood(), record.strippedLogBlocks.stairs()); + ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.planksBlocks.base(), 4) .input(record.strippedLogBlocks.log()) .criterion(hasItem(record.strippedLogBlocks.log()), @@ -247,10 +284,6 @@ public void generate() { createRegularSetRecipes(record.roofingBlocks); } - if(!record.vanilla)createVerticalSlabsRecipe(exporter, record.planksBlocks.slab(), record.planksBlocks.verticalSlab()); - createSlabsFromVerticalRecipe(exporter, record.planksBlocks.verticalSlab(), record.planksBlocks.slab()); - if(!record.vanilla && record.logBlocks != null)createVerticalSlabsRecipe(exporter, record.logBlocks.slab(), record.logBlocks.verticalSlab()); - createStairsRecipe(exporter, record.planksBlocks.base(), record.planksBlocks.stairs()); if(record.redstoneBlocks != null) { @@ -283,52 +316,16 @@ public void generate() { //endregion for(GenericBlockSetBuilder set : GenericBlockSets.genericSetsList) { - if(!set.setName.contains("wood") && !set.setName.contains("thatch") && !set.setName.contains("reed") && !set.setName.contains("canvas")) { + if(!set.setName.contains("wood") && !set.setName.contains("thatch") && !set.setName.contains("reed")) { createStoneSetRecipes(set.blockSet); } else if (set.setName.contains("thatch") || set.setName.contains("reed")) { createRegularSetRecipes(set.blockSet); } } - - //region ROOF RECIPES - /*for (GenericBlockSets.RoofBlockSet record : GenericBlockSets.sets) { - - if (record.origin() != null) { - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.block(), 7) - .pattern(" l ") - .pattern("lll") - .pattern("lll") - .input('l', record.origin()) - .criterion(hasItem(record.origin()), - conditionsFromItem(record.origin())) - .offerTo(exporter); - } - offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, record.slab(), record.block()); - createVerticalSlabsRecipe(exporter, record.slab(), record.verticalSlab()); - createSlabsFromVerticalRecipe(exporter, record.verticalSlab(), record.slab()); - createStairsRecipe(exporter, record.block(), record.stairs()); - offerWallRecipe(RecipeCategory.BUILDING_BLOCKS, record.wall(), record.block()); + for(SimpleBlockSetBuilder set : GenericBlockSets.simpleSetsList) { + createGenericRecipes(set); } - for (GenericBlockSets.MiscBlockSet record : GenericBlockSets.specialWoodSets) { - if (record.origin() != null) { - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, record.block(), 7) - .pattern(" l ") - .pattern("lll") - .pattern("lll") - .input('l', record.origin()) - .criterion(hasItem(record.origin()), - conditionsFromItem(record.origin())) - .offerTo(exporter); - } - offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, record.slab(), record.block()); - createVerticalSlabsRecipe(exporter, record.slab(), record.verticalSlab()); - createSlabsFromVerticalRecipe(exporter, record.verticalSlab(), record.slab()); - createStairsRecipe(exporter, record.block(), record.stairs()); - offerWallRecipe(RecipeCategory.BUILDING_BLOCKS, record.wall(), record.block()); - }*/ - //endregion - //region BLOCK LIST SPECIFIC RECIPES for (SimpleVerticalSlabModel.VerticalSlab verticalSlab : SimpleVerticalSlabModel.vanillaVerticalSlabs) { createVerticalSlabsRecipe(exporter, verticalSlab.slab(), verticalSlab.verticalSlab()); @@ -503,6 +500,7 @@ public void generate() { createStairsRecipe(exporter, ModBlocks.TURF, ModBlocks.TURF_STAIRS); offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, ModBlocks.TURF_SLAB, ModBlocks.TURF); createVerticalSlabsRecipe(exporter, ModBlocks.TURF, ModBlocks.TURF_VERTICAL_SLAB); + createSlabsFromVerticalRecipe(exporter, ModBlocks.TURF_VERTICAL_SLAB, ModBlocks.TURF_SLAB); createStairsRecipe(exporter, ModBlocks.MIRE, ModBlocks.MIRE_STAIRS); offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, ModBlocks.MIRE_SLAB, ModBlocks.MIRE); @@ -628,61 +626,6 @@ public void generate() { .offerTo(exporter); createPaneRecipe(exporter, StoneBlockSets.DRYSTONE_SET.carvedWindows.block().asItem(), StoneBlockSets.DRYSTONE_SET.carvedWindows.verticalSlab(), 12); - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.MEDGON_SET.carvedWindows.block(), 2) - .pattern("EEE") - .pattern("EGE") - .pattern("EEE") - .input('E', StoneBlockSets.MEDGON_SET.baseBlocks.base()) - .input('G', Items.GLASS) - .criterion(hasItem(StoneBlockSets.MEDGON_SET.baseBlocks.base()), - conditionsFromItem(StoneBlockSets.MEDGON_SET.baseBlocks.base())) - .offerTo(exporter); - createPaneRecipe(exporter, StoneBlockSets.MEDGON_SET.carvedWindows.block().asItem(), StoneBlockSets.MEDGON_SET.carvedWindows.verticalSlab(), 12); - - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.KHAGALABAN_SET.carvedWindows.block(), 2) - .pattern("EEE") - .pattern("EGE") - .pattern("EEE") - .input('E', StoneBlockSets.KHAGALABAN_SET.baseBlocks.base()) - .input('G', Items.GLASS) - .criterion(hasItem(StoneBlockSets.KHAGALABAN_SET.baseBlocks.base()), - conditionsFromItem(StoneBlockSets.KHAGALABAN_SET.baseBlocks.base())) - .offerTo(exporter); - createPaneRecipe(exporter, StoneBlockSets.KHAGALABAN_SET.carvedWindows.block().asItem(), StoneBlockSets.KHAGALABAN_SET.carvedWindows.verticalSlab(), 12); - - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.TUFF_SET.carvedWindows.block(), 2) - .pattern("EEE") - .pattern("EGE") - .pattern("EEE") - .input('E', Blocks.TUFF) - .input('G', Items.GLASS) - .criterion(hasItem(Blocks.TUFF), - conditionsFromItem(Blocks.TUFF)) - .offerTo(exporter); - createPaneRecipe(exporter, StoneBlockSets.TUFF_SET.carvedWindows.block().asItem(), StoneBlockSets.TUFF_SET.carvedWindows.verticalSlab(), 12); - - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.BLACKSTONE_SET.carvedWindows.block(), 2) - .pattern("EEE") - .pattern("EGE") - .pattern("EEE") - .input('E', Blocks.BLACKSTONE) - .input('G', Items.GLASS) - .criterion(hasItem(Blocks.BLACKSTONE), - conditionsFromItem(Blocks.BLACKSTONE)) - .offerTo(exporter); - createPaneRecipe(exporter, StoneBlockSets.BLACKSTONE_SET.carvedWindows.block().asItem(), StoneBlockSets.BLACKSTONE_SET.carvedWindows.verticalSlab(), 12); - - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.IZHERABAN_SET.carvedWindows.block(), 2) - .pattern("EEE") - .pattern("EGE") - .pattern("EEE") - .input('E', StoneBlockSets.IZHERABAN_SET.baseBlocks.base()) - .input('G', Items.GLASS) - .criterion(hasItem(StoneBlockSets.IZHERABAN_SET.baseBlocks.base()), - conditionsFromItem(StoneBlockSets.IZHERABAN_SET.baseBlocks.base())) - .offerTo(exporter); - createPaneRecipe(exporter, StoneBlockSets.IZHERABAN_SET.carvedWindows.block().asItem(), StoneBlockSets.IZHERABAN_SET.carvedWindows.verticalSlab(), 12); - ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.LEAD_GLASS, 4) .pattern("LGL") .pattern("GLG") @@ -723,6 +666,42 @@ public void generate() { .criterion(hasItem(StoneBlockSets.GREEN_TUFF_SET.baseBlocks.base()), conditionsFromItem(StoneBlockSets.GREEN_TUFF_SET.baseBlocks.base())) .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.GILDED_GREEN_TUFF_SET.chiseledBricksBlocks.base(), 5) + .pattern("TNT") + .pattern("NTN") + .pattern("TNT") + .input('T', StoneBlockSets.GREEN_TUFF_SET.chiseledBricksBlocks.base()) + .input('N', Items.GOLD_NUGGET) + .criterion(hasItem(StoneBlockSets.GREEN_TUFF_SET.chiseledBricksBlocks.base()), + conditionsFromItem(StoneBlockSets.GREEN_TUFF_SET.chiseledBricksBlocks.base())) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.GILDED_GREEN_TUFF_SET.chiseledTilesBlocks.base(), 5) + .pattern("TNT") + .pattern("NTN") + .pattern("TNT") + .input('T', StoneBlockSets.GREEN_TUFF_SET.chiseledTilesBlocks.base()) + .input('N', Items.GOLD_NUGGET) + .criterion(hasItem(StoneBlockSets.GREEN_TUFF_SET.chiseledTilesBlocks.base()), + conditionsFromItem(StoneBlockSets.GREEN_TUFF_SET.chiseledTilesBlocks.base())) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.GILDED_GREEN_TUFF_SET.chiseledSmoothBlocks.base(), 5) + .pattern("TNT") + .pattern("NTN") + .pattern("TNT") + .input('T', StoneBlockSets.GREEN_TUFF_SET.chiseledSmoothBlocks.base()) + .input('N', Items.GOLD_NUGGET) + .criterion(hasItem(StoneBlockSets.GREEN_TUFF_SET.chiseledSmoothBlocks.base()), + conditionsFromItem(StoneBlockSets.GREEN_TUFF_SET.chiseledSmoothBlocks.base())) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.GILDED_GREEN_TUFF_SET.chiseledPolishedBlocks.base(), 5) + .pattern("TNT") + .pattern("NTN") + .pattern("TNT") + .input('T', StoneBlockSets.GREEN_TUFF_SET.chiseledPolishedBlocks.base()) + .input('N', Items.GOLD_NUGGET) + .criterion(hasItem(StoneBlockSets.GREEN_TUFF_SET.chiseledPolishedBlocks.base()), + conditionsFromItem(StoneBlockSets.GREEN_TUFF_SET.chiseledPolishedBlocks.base())) + .offerTo(exporter); ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.BURZUM_GABBRO_SET.chiseledBlocks.base(), 5) .pattern("TNT") @@ -733,10 +712,10 @@ public void generate() { .criterion(hasItem(StoneBlockSets.GABBRO_SET.baseBlocks.base()), conditionsFromItem(StoneBlockSets.GABBRO_SET.baseBlocks.base())) .offerTo(exporter); - createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledBlocks); + //createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledBlocks); createBrickRecipe(exporter, StoneBlockSets.BURZUM_GABBRO_SET.chiseledBlocks.base().asItem(), StoneBlockSets.BURZUM_GABBRO_SET.chiseledBricksBlocks.base(), 4); - createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledBricksBlocks); + //createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledBricksBlocks); ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.BURZUM_GABBRO_SET.chiseledSmoothBlocks.base(), 5) .pattern("TNT") @@ -747,7 +726,7 @@ public void generate() { .criterion(hasItem(StoneBlockSets.GABBRO_SET.smoothBlocks.base()), conditionsFromItem(StoneBlockSets.GABBRO_SET.smoothBlocks.base())) .offerTo(exporter); - createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledSmoothBlocks); + //createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledSmoothBlocks); ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.BURZUM_GABBRO_SET.chiseledPolishedBlocks.base(), 5) .pattern("TNT") @@ -758,7 +737,7 @@ public void generate() { .criterion(hasItem(StoneBlockSets.GABBRO_SET.polishedBlocks.base()), conditionsFromItem(StoneBlockSets.GABBRO_SET.polishedBlocks.base())) .offerTo(exporter); - createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledPolishedBlocks); + //createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledPolishedBlocks); ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.BURZUM_GABBRO_SET.chiseledTilesBlocks.base(), 5) .pattern("TNT") @@ -769,7 +748,7 @@ public void generate() { .criterion(hasItem(StoneBlockSets.GABBRO_SET.tileBlocks.base()), conditionsFromItem(StoneBlockSets.GABBRO_SET.tileBlocks.base())) .offerTo(exporter); - createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledTilesBlocks); + //createStoneSetRecipes(StoneBlockSets.BURZUM_GABBRO_SET.chiseledTilesBlocks); ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModBlocks.WATTLE_TRAPDOOR, 2) .pattern("PLP") @@ -793,6 +772,13 @@ public void generate() { //createBrickworkBlockRecipe(exporter, StoneBlockSets.DIORITE_SET.tileBlocks.base(), GenericBlockSets.STUCCO.blockSet.base(), StoneBlockSets.DIORITE_SET.brickworkBlocks.base()); //createBrickworkBlockRecipe(exporter, StoneBlockSets.GRANITE_SET.tileBlocks.base(), GenericBlockSets.STUCCO.blockSet.base(), StoneBlockSets.GRANITE_SET.brickworkBlocks.base()); + createBrickRecipe(exporter, StoneBlockSets.QUARTZITE_SET.brickBlocks.base().asItem(), StoneBlockSets.QUARTZITE_SET.tileBlocks.base(), 4); + createBrickRecipe(exporter, GenericBlockSets.PACKED_MIRE.blockSet.base().asItem(), GenericBlockSets.MIRE_BRICKS.blockSet.base(), 4); + + createMossyRecipe(exporter, GenericBlockSets.MIXED_STONES.blockSet.base(), GenericBlockSets.MOSSY_MIXED_STONES.blockSet.base()); + offerSmelting(List.of(GenericBlockSets.MIXED_STONES.blockSet.base()), RecipeCategory.BUILDING_BLOCKS, + GenericBlockSets.CRACKED_MIXED_STONES.blockSet.base(), 0.1f, 200, "cracked_bricks"); + createBrickRecipe(exporter, Blocks.BRICKS.asItem(), GenericBlockSets.CLAY_TILING.blockSet.base(), 4); createCenterSurroundRecipe(exporter, GenericBlockSets.CLAY_TILING.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.BLACK_CLAY_TILING.blockSet.base().asItem(), 8); createCenterSurroundRecipe(exporter, GenericBlockSets.CLAY_TILING.blockSet.base().asItem(), Items.BLUE_DYE, GenericBlockSets.BLUE_CLAY_TILING.blockSet.base().asItem(), 8); @@ -825,43 +811,43 @@ public void generate() { //createBrickworkBlockRecipe(exporter, StoneBlockSets.MEDGON_SET.baseBlocks.base(), GenericBlockSets.STUCCO.blockSet.base(), StoneBlockSets.MEDGON_SET.brickworkBlocks.base()); createCenterSurroundRecipe(exporter, Items.BRICK, Items.BLUE_DYE, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_BLUE_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_BLUE_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_BLUE_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_BLUE_ROOF_TILES.blockSet.base().asItem(), 2); + createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_BLUE_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_BLUE_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_BLUE_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.BLUE_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_BLUE_ROOF_TILES.blockSet.base().asItem(), 8); createCenterSurroundRecipe(exporter, Items.BRICK, Items.BROWN_DYE, GenericBlockSets.BROWN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.BROWN_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_BROWN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.BROWN_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_BROWN_ROOF_TILES.blockSet.base().asItem(), 2); + createCenterSurroundRecipe(exporter, GenericBlockSets.BROWN_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_BROWN_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.BROWN_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_BROWN_ROOF_TILES.blockSet.base().asItem(), 8); createCenterSurroundRecipe(exporter, Items.BRICK, Items.CYAN_DYE, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_CYAN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_CYAN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_CYAN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_CYAN_ROOF_TILES.blockSet.base().asItem(), 2); + createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_CYAN_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_CYAN_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_CYAN_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.CYAN_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_CYAN_ROOF_TILES.blockSet.base().asItem(), 8); createCenterSurroundRecipe(exporter, Items.BRICK, Items.GRAY_DYE, GenericBlockSets.GRAY_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.GRAY_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_GRAY_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.GRAY_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_GRAY_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.GRAY_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_GRAY_ROOF_TILES.blockSet.base().asItem(), 2); + createCenterSurroundRecipe(exporter, GenericBlockSets.GRAY_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_GRAY_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.GRAY_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_GRAY_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.GRAY_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_GRAY_ROOF_TILES.blockSet.base().asItem(), 8); createCenterSurroundRecipe(exporter, Items.BRICK, Items.GREEN_DYE, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_GREEN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_GREEN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_GREEN_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_GREEN_ROOF_TILES.blockSet.base().asItem(), 2); + createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_GREEN_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_GREEN_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_GREEN_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.GREEN_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_GREEN_ROOF_TILES.blockSet.base().asItem(), 8); createCenterSurroundRecipe(exporter, Items.BRICK, Items.RED_DYE, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_RED_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_RED_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_RED_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_RED_ROOF_TILES.blockSet.base().asItem(), 2); + createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_RED_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_RED_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_RED_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.RED_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_RED_ROOF_TILES.blockSet.base().asItem(), 8); createCenterSurroundRecipe(exporter, Items.BRICK, Items.YELLOW_DYE, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_YELLOW_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_YELLOW_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_YELLOW_ROOF_TILES.blockSet.base().asItem(), 2); - createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_YELLOW_ROOF_TILES.blockSet.base().asItem(), 2); + createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.WHITE_DYE, GenericBlockSets.LIGHT_YELLOW_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.LIGHT_GRAY_DYE, GenericBlockSets.BRIGHT_YELLOW_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.GRAY_DYE, GenericBlockSets.OFF_YELLOW_ROOF_TILES.blockSet.base().asItem(), 8); + createCenterSurroundRecipe(exporter, GenericBlockSets.YELLOW_ROOF_TILES.blockSet.base().asItem(), Items.BLACK_DYE, GenericBlockSets.DARK_YELLOW_ROOF_TILES.blockSet.base().asItem(), 8); ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, StoneBlockSets.TAN_CLAY.brickBlocks.base(), 5) .pattern(" B ") @@ -1181,6 +1167,14 @@ public void generate() { conditionsFromItem(ResourceItemsME.STEEL_INGOT)) .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModBlocks.BURZUM_BARS, 16) + .pattern("SSS") + .pattern("SSS") + .input('S', ResourceItemsME.BURZUM_STEEL_INGOT) + .criterion(hasItem(ResourceItemsME.BURZUM_STEEL_INGOT), + conditionsFromItem(ResourceItemsME.BURZUM_STEEL_INGOT)) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.AGED_WOOD_WINDOW, 4) .pattern("AAA") @@ -1281,6 +1275,7 @@ public void generate() { .offerTo(exporter); createBrickRecipe(exporter, GenericBlockSets.TREATED_WOOD.blockSet.base().asItem(), GenericBlockSets.TREATED_WOOD_BEAM.blockSet.base(), 3); + createBrickRecipe(exporter, GenericBlockSets.TREATED_WOOD_BEAM.blockSet.base().asItem(), GenericBlockSets.TREATED_WOOD_TILING.blockSet.base(), 4); ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, GenericBlockSets.TREATED_WOOD_PLANKS.blockSet.base(), 4) .input(GenericBlockSets.TREATED_WOOD.blockSet.base()) @@ -1352,6 +1347,7 @@ public void generate() { .criterion(hasItem(GenericBlockSets.AGED_WOOD_BEAM.blockSet.slab()), conditionsFromItem(GenericBlockSets.AGED_WOOD_BEAM.blockSet.slab())) .offerTo(exporter); + createGenericRecipes(GenericBlockSets.AGED_WOOD_CARVING); createBrickRecipe(exporter, GenericBlockSets.AGED_WOOD_PANELS.blockSet.base().asItem(), GenericBlockSets.AGED_WOOD_BOARDS.blockSet.base(), 4); @@ -1453,6 +1449,22 @@ public void generate() { createGenericRecipes(GenericBlockSets.AGED_WOOD_GILDED_TRIM); //endregion + ShapelessRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.OLD_SKULL, 1) + .input(Items.SKELETON_SKULL) + .input(ResourceItemsME.ASH) + .criterion(hasItem(Items.SKELETON_SKULL), + conditionsFromItem(Items.SKELETON_SKULL)) + .offerTo(exporter); + + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.SKELETON, 1) + .pattern("BSB") + .pattern(" B ") + .pattern("B B") + .input('B', TagKey.of(RegistryKeys.ITEM, MiddleEarth.of("bones"))) + .input('S', ModDecorativeBlocks.OLD_SKULL.asItem()) + .criterion(hasItem(ModDecorativeBlocks.OLD_SKULL.asItem()), + conditionsFromItem(ModDecorativeBlocks.OLD_SKULL.asItem())) + .offerTo(exporter); createCombinedItemRecipe(exporter, Blocks.SKELETON_SKULL, ItemTags.CANDLES, ModDecorativeBlocks.SKULL_CANDLE); @@ -1465,6 +1477,7 @@ public void generate() { .criterion(hasItem(Items.CANDLE), conditionsFromItem(Items.CANDLE)) .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.CANDLE_HOLDER, 1) .pattern("C ") .pattern("SS") @@ -1491,6 +1504,46 @@ public void generate() { conditionsFromItem(Items.CANDLE)) .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.SMALL_CHANDELIER, 1) + .pattern(" N ") + .pattern("CNC") + .pattern("N N") + .input('C', TagKey.of(RegistryKeys.ITEM, Identifier.of("candles"))) + .input('N', TagKey.of(RegistryKeys.ITEM, Identifier.of(MiddleEarth.MOD_ID, "steel_nuggets"))) + .criterion(hasItem(Items.CANDLE), + conditionsFromItem(Items.CANDLE)) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.CHANDELIER, 1) + .pattern(" N ") + .pattern("CHC") + .pattern("N N") + .input('C', TagKey.of(RegistryKeys.ITEM, Identifier.of("candles"))) + .input('H', ModDecorativeBlocks.SMALL_CHANDELIER) + .input('N', TagKey.of(RegistryKeys.ITEM, Identifier.of(MiddleEarth.MOD_ID, "steel_nuggets"))) + .criterion(hasItem(Items.CANDLE), + conditionsFromItem(Items.CANDLE)) + .offerTo(exporter); + + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.SMALL_BRONZE_CHANDELIER, 1) + .pattern(" N ") + .pattern("CNC") + .pattern("N N") + .input('C', TagKey.of(RegistryKeys.ITEM, Identifier.of("candles"))) + .input('N', ResourceItemsME.BRONZE_NUGGET) + .criterion(hasItem(Items.CANDLE), + conditionsFromItem(Items.CANDLE)) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.BRONZE_CHANDELIER, 1) + .pattern(" N ") + .pattern("CHC") + .pattern("N N") + .input('C', TagKey.of(RegistryKeys.ITEM, Identifier.of("candles"))) + .input('H', ModDecorativeBlocks.SMALL_BRONZE_CHANDELIER) + .input('N', ResourceItemsME.BRONZE_NUGGET) + .criterion(hasItem(Items.CANDLE), + conditionsFromItem(Items.CANDLE)) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModDecorativeBlocks.STONE_LECTERN.asItem(), 1) .pattern("SSS") .pattern(" B ") @@ -2033,6 +2086,20 @@ public void generate() { conditionsFromItem(Items.MOSS_BLOCK)) .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModNatureBlocks.CORRUPTED_MOSS_CARPET, 3) + .pattern("MM") + .input('M', ModNatureBlocks.CORRUPTED_MOSS_BLOCK) + .criterion(hasItem(ModNatureBlocks.CORRUPTED_MOSS_BLOCK), + conditionsFromItem(ModNatureBlocks.CORRUPTED_MOSS_BLOCK)) + .offerTo(exporter); + + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModNatureBlocks.FOREST_MOSS_CARPET, 3) + .pattern("MM") + .input('M', ModNatureBlocks.FOREST_MOSS_BLOCK) + .criterion(hasItem(ModNatureBlocks.FOREST_MOSS_BLOCK), + conditionsFromItem(ModNatureBlocks.FOREST_MOSS_BLOCK)) + .offerTo(exporter); + ShapedRecipeJsonBuilder.create(itemLookup, RecipeCategory.BUILDING_BLOCKS, ModBlocks.GRASSY_DIRT, 4) .pattern("DM") .pattern("MD") @@ -3107,6 +3174,12 @@ private void createGenericRecipes(GenericBlockSetBuilder set) { createStairsRecipe(exporter, set.blockSet.base(), set.blockSet.stairs()); offerWallRecipe(RecipeCategory.BUILDING_BLOCKS, set.blockSet.wall(), set.blockSet.base()); } + private void createGenericRecipes(SimpleBlockSetBuilder set) { + offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, set.blockSet.slab().asItem(), set.blockSet.base().asItem()); + createVerticalSlabsRecipe(exporter, set.blockSet.slab(), set.blockSet.verticalSlab()); + createSlabsFromVerticalRecipe(exporter, set.blockSet.verticalSlab(), set.blockSet.slab()); + createStairsRecipe(exporter, set.blockSet.base(), set.blockSet.stairs()); + } private void createRegularSetRecipes(BlockRecordTypes.RegularSet set) { offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, set.slab().asItem(), set.base().asItem()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/BlockTagProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/BlockTagProvider.java index de4d3f9287..e26ab9b625 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/BlockTagProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/BlockTagProvider.java @@ -14,7 +14,6 @@ import net.sevenstars.middleearth.datageneration.content.models.*; import net.sevenstars.middleearth.datageneration.content.tags.*; -import java.util.ArrayList; import java.util.concurrent.CompletableFuture; public class BlockTagProvider extends FabricTagProvider.BlockTagProvider { @@ -54,18 +53,20 @@ protected void configure(RegistryWrapper.WrapperLookup arg) { mineableAxe.add(MineableAxe.blocks.toArray(new Block[0])); mineablePickaxe.add(MineablePickaxe.blocks.toArray(new Block[0])); + mineableHoe.add(MineableHoe.blocks.toArray(new Block[0])); + mineableShovel.add(MineableShovel.blocks.toArray(new Block[0])); wool.add(Wool.blocks.toArray(new Block[0])); leaves.add(LeavesSets.leaves.toArray(new Block[0])); - mineableHoe.add(MineableHoe.blocks.toArray(new Block[0])); swordEfficient.add(LeavesSets.leaves.toArray(new Block[0])); valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "saplings"))).add(Saplings.saplings.toArray(new Block[0])); valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "doors"))).add(Doors.doors.toArray(new Block[0])); valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "trapdoors"))).add(Trapdoors.trapdoors.toArray(new Block[0])); - valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "buttons"))).add(Buttons.buttons.toArray(new Block[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "stone_buttons"))).add(Buttons.stoneButtons.toArray(new Block[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "wooden_buttons"))).add(Buttons.woodButtons.toArray(new Block[0])); valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "fences"))).add(Fences.fences.toArray(new Block[0])); valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "wooden_fences"))).add(Fences.fences.toArray(new Block[0])); valueLookupBuilder(TagKey.of(RegistryKeys.BLOCK, Identifier.of( "fence_gates"))).add(FenceGates.fenceGates.toArray(new Block[0])); @@ -345,14 +346,6 @@ protected void configure(RegistryWrapper.WrapperLookup arg) { needsIronTools.add(ModBlocks.SAPPHIRE_BLOCK); mineablePickaxe.add(ModBlocks.STONE_MYCELIUM); - mineableShovel.add(ModBlocks.ASH_BLOCK); - mineableShovel.add(ModBlocks.RIVER_SAND); - mineableShovel.add(ModBlocks.BLACK_SAND); - mineableShovel.add(ModBlocks.WHITE_SAND); - - mineableShovel.add(ModBlocks.SNOWY_GRASS_BLOCK); - mineableShovel.add(ModNatureBlocks.OLD_PODZOL); - mineableShovel.add(ModNatureBlocks.LORIEN_PODZOL); mineablePickaxe.add(ModDecorativeBlocks.FIRE_OF_ORTHANC); @@ -377,139 +370,15 @@ protected void configure(RegistryWrapper.WrapperLookup arg) { mineablePickaxe.add(ModDecorativeBlocks.COPPER_COIN_PILE); mineablePickaxe.add(ModDecorativeBlocks.SILVER_COIN_PILE); mineablePickaxe.add(ModDecorativeBlocks.GOLD_COIN_PILE); - - - mineableShovel.add(ModBlocks.GRASSY_DIRT); - mineableShovel.add(ModBlocks.GRASSY_DIRT_SLAB); - mineableShovel.add(ModBlocks.GRASSY_DIRT_STAIRS); - - mineableShovel.add(ModBlocks.CHALKSOIL_GRASS_BLOCK); - - mineableShovel.add(ModBlocks.CHALKSOIL); - mineableShovel.add(ModBlocks.CHALKSOIL_SLAB); - mineableShovel.add(ModBlocks.CHALKSOIL_STAIRS); - - mineableShovel.add(ModBlocks.GRASSY_CHALKSOIL); - mineableShovel.add(ModBlocks.GRASSY_CHALKSOIL_SLAB); - mineableShovel.add(ModBlocks.GRASSY_CHALKSOIL_STAIRS); - - mineableShovel.add(ModBlocks.COARSE_CHALKSOIL); - mineableShovel.add(ModBlocks.COARSE_CHALKSOIL_SLAB); - mineableShovel.add(ModBlocks.COARSE_CHALKSOIL_STAIRS); - - mineableShovel.add(ModBlocks.CHALKSOIL_PATH); - mineableShovel.add(ModBlocks.CHALKSOIL_FARMLAND); - - mineableShovel.add(ModBlocks.LOAM_GRASS_BLOCK); - - mineableShovel.add(ModBlocks.LOAM); - mineableShovel.add(ModBlocks.LOAM_SLAB); - mineableShovel.add(ModBlocks.LOAM_STAIRS); - - mineableShovel.add(ModBlocks.GRASSY_LOAM); - mineableShovel.add(ModBlocks.GRASSY_LOAM_SLAB); - mineableShovel.add(ModBlocks.GRASSY_LOAM_STAIRS); - - mineableShovel.add(ModBlocks.COARSE_LOAM); - mineableShovel.add(ModBlocks.COARSE_LOAM_SLAB); - mineableShovel.add(ModBlocks.COARSE_LOAM_STAIRS); - - mineableShovel.add(ModBlocks.LOAM_PATH); - mineableShovel.add(ModBlocks.LOAM_FARMLAND); - - mineableShovel.add(ModBlocks.PEAT_GRASS_BLOCK); - - mineableShovel.add(ModBlocks.PEAT); - mineableShovel.add(ModBlocks.PEAT_SLAB); - mineableShovel.add(ModBlocks.PEAT_STAIRS); - - mineableShovel.add(ModBlocks.GRASSY_PEAT); - mineableShovel.add(ModBlocks.GRASSY_PEAT_SLAB); - mineableShovel.add(ModBlocks.GRASSY_PEAT_STAIRS); - - mineableShovel.add(ModBlocks.COARSE_PEAT); - mineableShovel.add(ModBlocks.COARSE_PEAT_SLAB); - mineableShovel.add(ModBlocks.COARSE_PEAT_STAIRS); - - mineableShovel.add(ModBlocks.PEAT_PATH); - mineableShovel.add(ModBlocks.PEAT_FARMLAND); - - mineableShovel.add(ModBlocks.SILT_GRASS_BLOCK); - - mineableShovel.add(ModBlocks.SILT); - mineableShovel.add(ModBlocks.SILT_SLAB); - mineableShovel.add(ModBlocks.SILT_STAIRS); - - mineableShovel.add(ModBlocks.GRASSY_SILT); - mineableShovel.add(ModBlocks.GRASSY_SILT_SLAB); - mineableShovel.add(ModBlocks.GRASSY_SILT_STAIRS); - - mineableShovel.add(ModBlocks.COARSE_SILT); - mineableShovel.add(ModBlocks.COARSE_SILT_SLAB); - mineableShovel.add(ModBlocks.COARSE_SILT_STAIRS); - - mineableShovel.add(ModBlocks.SILT_PATH); - mineableShovel.add(ModBlocks.SILT_FARMLAND); mineablePickaxe.add(ModBlocks.PEBBLED_GRASS); mineablePickaxe.add(ModBlocks.PEBBLED_GRASS_SLAB); mineablePickaxe.add(ModBlocks.PEBBLED_GRASS_STAIRS); - - mineableShovel.add(ModBlocks.TURF); - mineableShovel.add(ModBlocks.TURF_SLAB); - mineableShovel.add(ModBlocks.TURF_STAIRS); - mineableShovel.add(ModBlocks.TURF_VERTICAL_SLAB); - - mineableShovel.add(ModBlocks.MIRE); - mineableShovel.add(ModBlocks.MIRE_SLAB); - mineableShovel.add(ModBlocks.MIRE_STAIRS); - - mineablePickaxe.add(ModBlocks.EMBERS); - - mineableShovel.add(ModBlocks.ASHEN_SAND); - mineableShovel.add(ModBlocks.ASHEN_SAND_LAYER); - - mineableShovel.add(ModBlocks.ASHEN_GRAVEL); - mineableShovel.add(ModBlocks.ASHEN_GRAVEL_LAYER); mineablePickaxe.add(ModBlocks.SKELETAL_PILE); mineablePickaxe.add(ModBlocks.SKELETAL_PILE_LAYER); - mineableShovel.add(ModBlocks.WASTE_PILE); - mineableShovel.add(ModBlocks.WASTE_PILE_LAYER); - - - mineableShovel.add(ModBlocks.DRY_DIRT); - mineableShovel.add(ModBlocks.DRY_DIRT_SLAB); - mineableShovel.add(ModBlocks.DRY_DIRT_STAIRS); - - mineableShovel.add(ModBlocks.FOUL_DIRT); - mineableShovel.add(ModBlocks.FOUL_DIRT_SLAB); - mineableShovel.add(ModBlocks.FOUL_DIRT_STAIRS); - - mineableShovel.add(ModBlocks.DIRTY_ROOTS); - mineableShovel.add(ModBlocks.DIRTY_ROOTS_SLAB); - mineableShovel.add(ModBlocks.DIRTY_ROOTS_STAIRS); - - mineableShovel.add(ModBlocks.ASHEN_DIRT); - mineableShovel.add(ModBlocks.ASHEN_DIRT_SLAB); - mineableShovel.add(ModBlocks.ASHEN_DIRT_STAIRS); - - mineableShovel.add(ModBlocks.COBBLY_ASHEN_DIRT); - mineableShovel.add(ModBlocks.COBBLY_ASHEN_DIRT_SLAB); - mineableShovel.add(ModBlocks.COBBLY_ASHEN_DIRT_STAIRS); - - mineableShovel.add(ModBlocks.COBBLY_DIRT); - mineableShovel.add(ModBlocks.COBBLY_DIRT_SLAB); - mineableShovel.add(ModBlocks.COBBLY_DIRT_STAIRS); - - mineableShovel.add(ModBlocks.SNOWY_DIRT); - mineableShovel.add(ModBlocks.SNOWY_DIRT_SLAB); - mineableShovel.add(ModBlocks.SNOWY_DIRT_STAIRS); - - mineableShovel.add(ModBlocks.SNOWY_GRASS_BLOCK); - - mineableShovel.add(ModNatureBlocks.LORIEN_PODZOL); + mineablePickaxe.add(ModBlocks.EMBERS); mineableAxe.add(ModDecorativeBlocks.WOOD_PILE); mineableAxe.add(ModDecorativeBlocks.ARTISAN_TABLE); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/ItemTagProvider.java b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/ItemTagProvider.java index 6fb9f4e8fe..53a8007f6a 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/ItemTagProvider.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/datageneration/providers/tags/ItemTagProvider.java @@ -16,10 +16,7 @@ import net.sevenstars.middleearth.datageneration.content.models.HotMetalsModel; import net.sevenstars.middleearth.datageneration.content.models.SimpleDyeableItemModel; import net.sevenstars.middleearth.datageneration.content.tags.*; -import net.sevenstars.middleearth.item.EquipmentItemsME; -import net.sevenstars.middleearth.item.FoodItemsME; -import net.sevenstars.middleearth.item.ResourceItemsME; -import net.sevenstars.middleearth.item.WeaponItemsME; +import net.sevenstars.middleearth.item.*; import net.sevenstars.middleearth.utils.ItemTagsME; import net.sevenstars.of_beasts_and_wild_things.item.ItemsWT; @@ -76,7 +73,7 @@ protected void configure(RegistryWrapper.WrapperLookup arg) { TagKey mod_stripped_logs = TagKey.of(RegistryKeys.ITEM, MiddleEarth.of("mod_stripped_logs")); TagKey stripped_logs = TagKey.of(RegistryKeys.ITEM, Identifier.of("c", "stripped_logs")); - valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, MiddleEarth.of("mod_planks"))).add(Planks.getItemPlanks().toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, MiddleEarth.of("mod_planks"))).add(Planks.getItemPlanksWithoutVanilla().toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("planks"))).add(Planks.getItemPlanks().toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("wooden_slabs"))).add(Planks.getItemPlanksSlabs().toArray(new Item[0])); @@ -90,12 +87,23 @@ protected void configure(RegistryWrapper.WrapperLookup arg) { valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, MiddleEarth.of("spears"))).add(WeaponItemsME.spears.toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/weapon"))).add(WeaponEnchants.weapons.toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/sword"))).add(WeaponEnchants.sharpWeapons.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/bow"))).add(Bows.bows.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("c", "tools/ranged_weapon"))).add(Bows.bows.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("c", "tools/bow"))).add(Bows.bows.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("c", "tools/bows"))).add(Bows.bows.toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/crossbow"))).add(Crossbows.crossbows.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/durability"))).add(ArmorTags.armors.toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/durability"))).add(WeaponEnchants.weapons.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/durability"))).add(ToolItemsME.smithingHammers.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/durability"))).add(Crossbows.crossbows.toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/vanishing"))).add(ArmorTags.armors.toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/vanishing"))).add(WeaponEnchants.weapons.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/vanishing"))).add(ToolItemsME.smithingHammers.toArray(new Item[0])); + + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("c", "tools/shields"))).add(WeaponItemsME.shields.toArray(new Item[0])); + valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("c", "tools/shield"))).add(WeaponItemsME.shields.toArray(new Item[0])); valueLookupBuilder(TagKey.of(RegistryKeys.ITEM, Identifier.of("minecraft", "enchantable/equippable"))).add(ArmorTags.armors.toArray(new Item[0])); ArmorTags.basicArmors.addAll(List.of(new Item[]{Items.LEATHER_HELMET, Items.LEATHER_CHESTPLATE, Items.LEATHER_LEGGINGS, Items.LEATHER_BOOTS})); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/enchantments/EnchantmentsME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/enchantments/EnchantmentsME.java index 4049e35284..ca0566fba0 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/enchantments/EnchantmentsME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/enchantments/EnchantmentsME.java @@ -27,6 +27,7 @@ */ public class EnchantmentsME { public static final RegistryKey AILMENT_PROTECTION = of("ailment_protection"); + public static final RegistryKey AULE_BLESSING = of("aule_blessing"); public static final RegistryKey BANE_OF_GIANTS = of("bane_of_giants"); public static final RegistryKey BEHEADING = of("beheading"); public static final RegistryKey CELERITY = of("celerity"); @@ -58,6 +59,13 @@ public static void bootstrap(Registerable registry) { AttributeModifierSlot.ARMOR)) .exclusiveSet(registryEntryLookup2.getOrThrow(EnchantmentTags.ARMOR_EXCLUSIVE_SET))); + register(registry, AULE_BLESSING, Enchantment.builder( + Enchantment.definition(registryEntryLookup3.getOrThrow(ItemTags.ARMOR_ENCHANTABLE), 5, 3, + Enchantment.leveledCost(12, 7), + Enchantment.leveledCost(5, 7), 2, + AttributeModifierSlot.MAINHAND)) + .exclusiveSet(registryEntryLookup2.getOrThrow(EnchantmentTags.MINING_EXCLUSIVE_SET))); + register(registry, BANE_OF_GIANTS, Enchantment.builder( Enchantment.definition(registryEntryLookup3.getOrThrow(ItemTags.WEAPON_ENCHANTABLE), registryEntryLookup3.getOrThrow(ItemTags.SWORD_ENCHANTABLE), 5, 5, diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelLayersME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelLayersME.java index 3a4cc1fa93..dbfedd86d1 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelLayersME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelLayersME.java @@ -5,12 +5,16 @@ import net.fabricmc.fabric.api.client.rendering.v1.EntityModelLayerRegistry; import net.minecraft.client.model.Dilation; import net.minecraft.client.model.TexturedModelData; +import net.minecraft.client.render.entity.model.BipedEntityModel; +import net.minecraft.client.render.block.entity.SkullBlockEntityModel; +import net.minecraft.client.render.block.entity.SkullBlockEntityRenderer; import net.minecraft.client.render.entity.model.EntityModelLayer; import net.minecraft.util.Identifier; import net.sevenstars.middleearth.MiddleEarth; import net.sevenstars.middleearth.block.special.bellows.BellowsBlockEntityRenderer; import net.sevenstars.middleearth.block.special.coffers.*; import net.sevenstars.middleearth.block.special.reinforcedChest.ReinforcedChestEntityRenderer; +import net.sevenstars.middleearth.block.special.skull.OldSkullBlockEntityRenderer; import net.sevenstars.middleearth.entity.barrel.BarrelEntityModel; import net.sevenstars.middleearth.entity.beasts.broadhoof.BroadhoofGoatModel; import net.sevenstars.middleearth.entity.beasts.broadhoof.features.BroadhoofGoatArmorModel; @@ -82,6 +86,7 @@ public final class EntityModelLayersME { public static final EntityModelLayer OAK_COFFER = EntityModelLayersME.registerEntityModelLayer("oak_coffer", OakCofferEntityRenderer.getTexturedModelData()); public static final EntityModelLayer WILLOW_COFFER = EntityModelLayersME.registerEntityModelLayer("willow_coffer", WillowCofferEntityRenderer.getTexturedModelData()); public static final EntityModelLayer REINFORCED_CHEST = EntityModelLayersME.registerEntityModelLayer("reinforced_chest", ReinforcedChestEntityRenderer.getTexturedModelData()); + public static final EntityModelLayer OLD_SKULL = EntityModelLayersME.registerEntityModelLayer("old_skull", OldSkullBlockEntityRenderer.getTexturedModelData()); public static final EntityModelLayer REINFORCED_BARREL = EntityModelLayersME.registerEntityModelLayer("reinforced_barrel", BarrelEntityModel.getTexturedModelData()); public static final EntityModelLayer REINFORCED_BARREL_WATER_MASK = EntityModelLayersME.registerEntityModelLayer("reinforced_barrel_water_mask", BarrelEntityModel.getBaseTexturedModelData()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelsME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelsME.java index 40c6caf7a5..ccddd45541 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelsME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/EntityModelsME.java @@ -3,9 +3,11 @@ import com.google.common.collect.ImmutableMap; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; +import net.minecraft.client.render.entity.model.BipedEntityModel; import net.sevenstars.middleearth.block.special.bellows.BellowsBlockEntityRenderer; import net.sevenstars.middleearth.block.special.coffers.*; import net.sevenstars.middleearth.block.special.reinforcedChest.ReinforcedChestEntityRenderer; +import net.sevenstars.middleearth.block.special.skull.OldSkullBlockEntityRenderer; import net.sevenstars.middleearth.entity.barrel.BarrelEntityModel; import net.sevenstars.middleearth.entity.beasts.trolls.snow.SnowTrollModel; import net.sevenstars.middleearth.entity.npcs.renderer.NpcEntityModel; @@ -51,6 +53,7 @@ public static Map getModels() { builder.put(EntityModelLayersME.CHESTNUT_COFFER, ChestnutCofferEntityRenderer.getTexturedModelData()); builder.put(EntityModelLayersME.OAK_COFFER, OakCofferEntityRenderer.getTexturedModelData()); builder.put(EntityModelLayersME.WILLOW_COFFER, WillowCofferEntityRenderer.getTexturedModelData()); + builder.put(EntityModelLayersME.OLD_SKULL, OldSkullBlockEntityRenderer.getTexturedModelData()); builder.put(EntityModelLayersME.REINFORCED_BARREL, BarrelEntityModel.getTexturedModelData()); builder.put(EntityModelLayersME.REINFORCED_BARREL_WATER_MASK, BarrelEntityModel.getBaseTexturedModelData()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/beasts/broadhoof/BroadhoofGoatEntity.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/beasts/broadhoof/BroadhoofGoatEntity.java index d4536c8193..ebc9fc629c 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/beasts/broadhoof/BroadhoofGoatEntity.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/beasts/broadhoof/BroadhoofGoatEntity.java @@ -43,6 +43,7 @@ import net.sevenstars.middleearth.MiddleEarth; import net.sevenstars.middleearth.config.ModServerConfigs; import net.sevenstars.middleearth.entity.EntitiesME; +import net.sevenstars.middleearth.entity.EntityAttributesME; import net.sevenstars.middleearth.entity.beasts.AbstractBeastEntity; import net.sevenstars.middleearth.entity.goals.BeastRevengeGoal; import net.sevenstars.middleearth.entity.goals.ChargeAttackGoal; @@ -89,6 +90,7 @@ public static DefaultAttributeContainer.Builder setAttributes() { .add(EntityAttributes.ATTACK_DAMAGE, 4.0d) .add(EntityAttributes.STEP_HEIGHT, 1.15d) .add(EntityAttributes.SAFE_FALL_DISTANCE, 10.0d) + .add(EntityAttributesME.POWDERED_SNOW_IMMUNITY, 1.0f) .add(EntityAttributes.JUMP_STRENGTH, 1); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/NpcEntity.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/NpcEntity.java index 5e1edcb7c4..e9eb123923 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/NpcEntity.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/NpcEntity.java @@ -804,6 +804,7 @@ private void shootAt(LivingEntity target, float pullProgress, float powerModifie ItemStack weapon = this.getMainHandStack(); ItemStack projectileStack = this.getProjectileType(weapon); + if(projectileStack.isEmpty()) projectileStack = new ItemStack(Items.ARROW, 1); PersistentProjectileEntity projectile = this.createArrowProjectile(projectileStack, pullProgress, weapon); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/initializer/NpcEntityInitializer.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/initializer/NpcEntityInitializer.java index c6d49b9f82..aad679a1da 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/initializer/NpcEntityInitializer.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/initializer/NpcEntityInitializer.java @@ -32,8 +32,6 @@ import java.util.Optional; public class NpcEntityInitializer { - public static final Identifier RANDOM = MiddleEarth.of("full_random"); - public static void initializeNpcEntity(ServerWorld serverWorld, NpcEntity npcEntity){ initializeForServer(serverWorld, npcEntity); } @@ -83,7 +81,6 @@ private static BiomeEventData.ContextualizedBiomeData findContextualizedNpcData( return BiomeEventDataLookup.findNpcDataForBiome(world, biome, npcEntity); } - public static boolean shouldInitialize(ServerWorld serverWorld, NpcEntity npcEntity){ Identifier currentNpcDataId = npcEntity.getNpcTypeIdentifier(); if(currentNpcDataId == null) @@ -97,14 +94,4 @@ public static boolean shouldInitialize(ServerWorld serverWorld, NpcEntity npcEnt return true; return optionalEntry.isEmpty(); } - - public static boolean assignBedToNpc(NpcEntity npcEntity, BedBlock bedBlock){ - return true; - } - - public static void initializeNpcForCurrentData(NpcEntity npcEntity, ServerWorld serverWorld) { - boolean shouldRefreshVisuals = npcEntity.shouldRefreshVisuals(); - if(shouldRefreshVisuals) - NpcGenerator.generateCharacterTextures(serverWorld, npcEntity); - } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarFeatureRenderer.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarFeatureRenderer.java index 95bc505208..95f05a3044 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarFeatureRenderer.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarFeatureRenderer.java @@ -24,7 +24,7 @@ @Environment(EnvType.CLIENT) public class EarFeatureRenderer extends FeatureRenderer { - private final EntityModel earModel; + private final EarModel earModel; private final SpriteAtlasTexture characterTexturesAtlas; public EarFeatureRenderer(FeatureRendererContext context, LoadedEntityModels loader) { diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarModel.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarModel.java index 657376ac60..b363632949 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarModel.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/npcs/renderer/features/ear/EarModel.java @@ -1,6 +1,7 @@ package net.sevenstars.middleearth.entity.npcs.renderer.features.ear; import net.minecraft.client.model.*; +import net.minecraft.client.render.entity.model.BipedEntityModel; import net.minecraft.client.render.entity.model.EntityModel; import net.minecraft.util.math.MathHelper; import net.sevenstars.middleearth.entity.npcs.renderer.NpcEntityRenderState; @@ -14,28 +15,24 @@ public EarModel(ModelPart modelPart) { super(modelPart); this.ears = modelPart.getChild("ears"); - this.planeFlatLeft = this.ears.getChild("leftFlatEarPlane"); - this.planeFlatRight = this.ears.getChild("rightFlatEarPlane"); + + this.planeFlatLeft = this.ears.getChild("ear_left"); + this.planeFlatRight = this.ears.getChild("ear_right"); } public static TexturedModelData getTexturedModelData() { ModelData modelData = new ModelData(); - ModelPartData modelPartData = modelData.getRoot(); + ModelPartData root = modelData.getRoot(); + + ModelPartData ears = root.addChild("ears", ModelPartBuilder.create(), ModelTransform.origin(0.0F, 0.0F, 0.0F)); - ModelPartData planeFlatSides = modelPartData.addChild("ears", ModelPartBuilder.create(), ModelTransform.origin(0.0F, -3f, -1.0f)); - planeFlatSides.addChild("leftFlatEarPlane", - ModelPartBuilder.create() - .uv(0, 6) - .cuboid(0, 0, 0.0F, 6.0F, 7.0F, 0.0F, Dilation.NONE), - ModelTransform.rotation(0.0F, -0.35F, 0.0F) - .moveOrigin(4F, -5F, 0.0F)); - planeFlatSides.addChild("rightFlatEarPlane", - ModelPartBuilder.create() - .uv(0, 6) - .cuboid(0, 0, 0.0F, 6.0F, 7.0F, 0.0F, Dilation.NONE) - .mirrored(), - ModelTransform.rotation(0.0F, 0.35F, 0.0F) - .moveOrigin(-4F, -5F, 0.0F)); + ears.addChild("ear_right", + ModelPartBuilder.create().uv(0, 6).cuboid(3.5F, -8.0F, 2F, 7.0F, 6.0F, 0.0F, Dilation.NONE), + ModelTransform.NONE); + + ears.addChild("ear_left", + ModelPartBuilder.create().uv(0, 6).cuboid(3.5F, -8.0F, -2F, 7.0F, 6.0F, 0.0F, Dilation.NONE), + ModelTransform.NONE); return TexturedModelData.of(modelData, 16, 16); } @@ -47,18 +44,15 @@ public void setAngles(NpcEntityRenderState state) { // Taken from BipedEntityModel.class float f = state.leaningPitch; boolean bl = state.isGliding; + this.ears.pitch = state.pitch * 0.017453292F; + this.ears.yaw = state.relativeHeadYaw * 0.017453292F; - this.ears.pitch = state.pitch * ((float)Math.PI / 180); - this.ears.yaw = state.relativeHeadYaw * ((float)Math.PI / 180); if (bl) { - this.ears.pitch = -0.7853982f; - } else if (f > 0.0f) { - this.ears.pitch = MathHelper.lerpAngleRadians(f, this.ears.pitch, -0.7853982f); + this.ears.pitch = -0.7853982F; + } else if (f > 0.0F) { + this.ears.pitch = MathHelper.lerpAngleRadians(f, this.ears.pitch, -0.7853982F); } - this.ears.yaw = state.relativeHeadYaw * 0.017453292F; - this.ears.pitch = state.pitch * 0.017453292F; - this.planeFlatLeft.yaw = (float)Math.toRadians(-20); this.planeFlatRight.yaw = (float)Math.toRadians(-160); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/spider/scuttler/ShelobiteScuttlerEntity.java b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/spider/scuttler/ShelobiteScuttlerEntity.java index 21fbdcbe18..9ea1ca495c 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/entity/spider/scuttler/ShelobiteScuttlerEntity.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/entity/spider/scuttler/ShelobiteScuttlerEntity.java @@ -139,7 +139,7 @@ public static boolean canSpawn(EntityType type, WorldAccess worldAcce boolean isOnSolidGround = worldAccess.getBlockState(below).isSolidBlock(worldAccess, below); boolean isNotOnTopOfLogs = !worldAccess.getBlockState(below).isIn(BlockTags.LOGS); - if (spawnReason == SpawnReason.NATURAL && worldAccess instanceof World world) { + if (spawnReason == SpawnReason.NATURAL && worldAccess instanceof ServerWorld world) { RegistryEntry biome = world.getBiome(pos); boolean canSpawn = BiomeEventDataLookup.canEntitySpawn(world, biome, pos, type, random); return isOnSolidGround && isNotOnTopOfLogs && canSpawn; diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/event/ModEvents.java b/middle-earth/src/main/java/net/sevenstars/middleearth/event/ModEvents.java index 3f39d7f318..3e9d33a102 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/event/ModEvents.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/event/ModEvents.java @@ -4,7 +4,9 @@ import net.fabricmc.fabric.api.entity.event.v1.ServerPlayerEvents; import net.fabricmc.fabric.api.event.player.PlayerBlockBreakEvents; import net.fabricmc.fabric.api.networking.v1.ServerPlayConnectionEvents; +import net.minecraft.block.Block; import net.minecraft.block.BlockState; +import net.minecraft.block.entity.BlockEntity; import net.minecraft.component.DataComponentTypes; import net.minecraft.component.type.ProfileComponent; import net.minecraft.component.type.ToolComponent; @@ -17,6 +19,7 @@ import net.minecraft.registry.entry.RegistryEntry; import net.minecraft.registry.tag.BlockTags; import net.minecraft.server.network.ServerPlayerEntity; +import net.minecraft.server.world.ServerWorld; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Direction; import net.minecraft.world.World; @@ -226,11 +229,17 @@ private static void level3Break(World world, PlayerEntity player, BlockPos block private static void breakAndDamage(World world, PlayerEntity player, BlockPos blockpos, ItemStack stack, float hardness){ ToolComponent toolComponent = stack.get(DataComponentTypes.TOOL); BlockState blockState = world.getBlockState(blockpos); - if (!blockState.isAir()) { - if (toolComponent.isCorrectForDrops(blockState)){ - if (blockState.getBlock().getHardness() <= hardness){ - world.breakBlock(blockpos, true, player); - player.getStackInHand(player.getActiveHand()).damage(1, player); + + if (!blockState.isAir() && toolComponent != null) { + if (toolComponent.isCorrectForDrops(blockState)) { + if (blockState.getBlock().getHardness() <= hardness) { + BlockEntity blockEntity = blockState.hasBlockEntity() + ? world.getBlockEntity(blockpos) + : null; + + Block.dropStacks(blockState, world, blockpos, blockEntity, player, stack); + world.breakBlock(blockpos, false, player); + stack.postMine(world, blockState, blockpos, player); } } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/gui/inscriptiontable/InscriptionTableScreen.java b/middle-earth/src/main/java/net/sevenstars/middleearth/gui/inscriptiontable/InscriptionTableScreen.java index b7620d1195..3a55c16175 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/gui/inscriptiontable/InscriptionTableScreen.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/gui/inscriptiontable/InscriptionTableScreen.java @@ -183,7 +183,8 @@ protected void drawBackground(DrawContext context, float delta, int mouseX, int int l = this.handler.getPlayerLevels(); int color; - Text text = Text.of(k + " Levels"); + String levelKey = (k == 1) ? ".level" : ".levels"; + Text text = Text.translatable("inscription." + MiddleEarth.MOD_ID + levelKey, k); if (this.client.player.isInCreativeMode() || (l >= k && k != 0)){ color = -8323296; @@ -216,12 +217,11 @@ protected void drawBackground(DrawContext context, float delta, int mouseX, int int m = 0; for(String word : this.selectedWords){ if (m != 0){ - stringBuilder.append("-"); + stringBuilder.append(Text.translatable("inscription." + MiddleEarth.MOD_ID + ".linking_dash").getString()); } - stringBuilder.append(StringUtils.capitalize(word)); + stringBuilder.append(Text.translatable("inscription." + MiddleEarth.MOD_ID + "." + word).getString()); m++; } - StringVisitable stringVisitable = textRenderer.getTextHandler().trimToWidth(Text.literal(stringBuilder.toString()), 159, Style.EMPTY); context.drawCenteredTextWithShadow(this.textRenderer, stringVisitable.getString(), i + 186, j + 11, Colors.WHITE); } @@ -255,13 +255,14 @@ public void render(DrawContext context, int mouseX, int mouseY, float delta) { if(index - indexStartOffset >= 0 && index - indexStartOffset < this.words.length) { WidgetInscriptionButtonPage widgetButtonPage = this.words[index - indexStartOffset]; if(widgetButtonPage.hidden) { - Text text = Text.literal(StringUtils.capitalize(word)).setStyle(Style.EMPTY.withStrikethrough(widgetButtonPage.hidden)); +// Text text = Text.literal(StringUtils.capitalize(word)).setStyle(Style.EMPTY.withStrikethrough(widgetButtonPage.hidden)); + Text text = Text.translatable("inscription." + MiddleEarth.MOD_ID + "." + word).setStyle(Style.EMPTY.withStrikethrough(widgetButtonPage.hidden)); context.drawText(this.textRenderer, text, i + 11, n, Colors.LIGHT_GRAY, false); } else { - context.drawText(this.textRenderer, StringUtils.capitalize(word), i + 11, n, Colors.WHITE, false); + context.drawText(this.textRenderer, Text.translatable("inscription." + MiddleEarth.MOD_ID + "." + word), i + 11, n, Colors.WHITE, false); } } else { - context.drawText(this.textRenderer, StringUtils.capitalize(word), i + 11, n, Colors.WHITE, false); + context.drawText(this.textRenderer, Text.translatable("inscription." + MiddleEarth.MOD_ID + "." + word), i + 11, n, Colors.WHITE, false); } n += 14; } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/item/EquipmentItemsME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/item/EquipmentItemsME.java index 1cb3ec3727..468a51ca0b 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/item/EquipmentItemsME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/item/EquipmentItemsME.java @@ -160,6 +160,16 @@ public class EquipmentItemsME { (settings) -> new BackAttachmentItem(settings, ArmorMaterialsME.FUR_T0), new Item.Settings() .component(DataComponentTypesME.BACK_ATTACHMENT_DATA, BackAttachmentDataComponent.newBackAttachment(BackAttachmentsME.WHITE_FUR))); + public static final Item BAGGY_HAT = registerCustomModelArmorPiece("baggy_hat", + (settings) -> new CustomHelmetItem(ArmorMaterialsME.LEATHER_T1, settings), new Item.Settings()); + public static final Item CHAPERON = registerCustomModelArmorPiece("chaperon", + (settings) -> new CustomHelmetItem(ArmorMaterialsME.FABRIC_T1, settings), new Item.Settings()); + + public static final Item GLASSES = registerCustomModelArmorPiece("glasses", + (settings) -> new CustomHelmetItem(ArmorMaterialsME.BRONZE_T1, settings), new Item.Settings()); + public static final Item DWARVEN_MONOCLE = registerCustomModelArmorPiece("dwarven_monocle", + (settings) -> new CustomHelmetItem(ArmorMaterialsME.BRONZE_T1, settings), new Item.Settings()); + public static final Item STRAW_HAT = registerCustomModelArmorPiece("straw_hat", (settings) -> new CustomHelmetItem(ArmorMaterialsME.STRAW_T1, settings), new Item.Settings()); @@ -170,6 +180,10 @@ public class EquipmentItemsME { (settings) -> new CustomHelmetItem(ArmorMaterialsME.WOOL_T1, settings), new Item.Settings() .component(DataComponentTypes.DYED_COLOR, new DyedColorComponent(-6265536))); + public static final Item BEEKEEPER_MASK = registerDyeableArmorPiece("beekeeper_mask", + (settings) -> new CustomHelmetItem(ArmorMaterialsME.STRAW_T1, settings), new Item.Settings() + .component(DataComponentTypes.DYED_COLOR, new DyedColorComponent(11246676))); + public static final Item WANDERER_HAT = registerDyeableCustomModelArmorPiece("wanderer_hat", (settings) -> new CustomHelmetItem(ArmorMaterialsME.FABRIC_T1, settings), new Item.Settings() .component(DataComponentTypes.DYED_COLOR, new DyedColorComponent(5394247))); @@ -201,6 +215,10 @@ public class EquipmentItemsME { public static final Item KETTLE_HAT = registerCustomModelArmorPiece("kettle_hat", (settings) -> new CustomHelmetItem(ArmorMaterialsME.IRON_T2, settings), new Item.Settings()); + + public static final Item BLACKSMITH_APRON = registerArmorPiece("blacksmith_apron", + (settings) -> new CustomChestplateItem(ArmorMaterialsME.LEATHER_T2, settings), new Item.Settings()); + public static final Item GAMBESON = registerDyeableArmorPiece("gambeson", (settings) -> new CustomChestplateItem(ArmorMaterialsME.LEATHER_T2, settings), new Item.Settings() .component(DataComponentTypes.DYED_COLOR, new DyedColorComponent(15256475))); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/item/ToolItemsME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/item/ToolItemsME.java index f360040ace..e2ad8b9c2f 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/item/ToolItemsME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/item/ToolItemsME.java @@ -17,10 +17,11 @@ import net.sevenstars.middleearth.item.utils.ToolMaterialsME; import net.sevenstars.middleearth.registries.RegistryAliasesME; +import java.util.ArrayList; +import java.util.List; import java.util.function.Function; public class ToolItemsME { - /** * Middle-earth mod Tool Items registry */ @@ -33,35 +34,37 @@ public class ToolItemsME { private static final float IRON_AXE_ATTACK_SPEED = -3.1f; private static final float IRON_HOE_ATTACK_SPEED = -2f; - public static final Item COPPER_SMITHING_HAMMER = registerItemHandheld("copper_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.COPPER_HAMMER, -3.5f), new Item.Settings()); - public static final Item BRONZE_SMITHING_HAMMER = registerItemHandheld("bronze_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.BRONZE_HAMMER, -3.35f), new Item.Settings()); - public static final Item CRUDE_SMITHING_HAMMER = registerItemHandheld("crude_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.CRUDE_HAMMER, -3.35f), new Item.Settings()); - - public static final Item SMITHING_HAMMER = registerItemHandheld("smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.STEEL_HAMMER, -3.2f), new Item.Settings()); - public static final Item NOBLE_SMITHING_HAMMER = registerItemHandheld("noble_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings()); - - public static final Item DWARVEN_SMITHING_HAMMER = registerItemHandheld("dwarven_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.KHAZAD_STEEL_HAMMER, -3.2f), new Item.Settings()); - public static final Item DWARVEN_NOBLE_SMITHING_HAMMER = registerItemHandheld("dwarven_noble_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.KHAZAD_NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings()); - - public static final Item ELVEN_SMITHING_HAMMER = registerItemHandheld("elven_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.EDHEL_STEEL_HAMMER, -3.2f), new Item.Settings()); - public static final Item ELVEN_NOBLE_SMITHING_HAMMER = registerItemHandheld("elven_noble_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.EDHEL_NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings()); - - public static final Item ORCISH_SMITHING_HAMMER = registerItemHandheld("orcish_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.BURZUM_STEEL_HAMMER, -3.2f), new Item.Settings()); - public static final Item ORCISH_ELITE_SMITHING_HAMMER = registerItemHandheld("orcish_elite_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.BURZUM_NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings()); - - public static final Item MITHRIL_SMITHING_HAMMER = registerItemHandheld("mithril_smithing_hammer", - (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.MITHRIL_HAMMER, -2.5f), new Item.Settings() + public static List smithingHammers = new ArrayList<>(); + + public static final Item COPPER_SMITHING_HAMMER = registerSmithingHammerItem("copper_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.COPPER_HAMMER, -3.5f), new Item.Settings().enchantable(8)); + public static final Item BRONZE_SMITHING_HAMMER = registerSmithingHammerItem("bronze_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.BRONZE_HAMMER, -3.35f), new Item.Settings().enchantable(10)); + public static final Item CRUDE_SMITHING_HAMMER = registerSmithingHammerItem("crude_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.CRUDE_HAMMER, -3.35f), new Item.Settings().enchantable(10)); + + public static final Item SMITHING_HAMMER = registerSmithingHammerItem("smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.STEEL_HAMMER, -3.2f), new Item.Settings().enchantable(12)); + public static final Item NOBLE_SMITHING_HAMMER = registerSmithingHammerItem("noble_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings().enchantable(15)); + + public static final Item DWARVEN_SMITHING_HAMMER = registerSmithingHammerItem("dwarven_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.KHAZAD_STEEL_HAMMER, -3.2f), new Item.Settings().enchantable(12)); + public static final Item DWARVEN_NOBLE_SMITHING_HAMMER = registerSmithingHammerItem("dwarven_noble_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.KHAZAD_NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings().enchantable(15)); + + public static final Item ELVEN_SMITHING_HAMMER = registerSmithingHammerItem("elven_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.EDHEL_STEEL_HAMMER, -3.2f), new Item.Settings().enchantable(12)); + public static final Item ELVEN_NOBLE_SMITHING_HAMMER = registerSmithingHammerItem("elven_noble_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.EDHEL_NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings().enchantable(15)); + + public static final Item ORCISH_SMITHING_HAMMER = registerSmithingHammerItem("orcish_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.BURZUM_STEEL_HAMMER, -3.2f), new Item.Settings().enchantable(12)); + public static final Item ORCISH_ELITE_SMITHING_HAMMER = registerSmithingHammerItem("orcish_elite_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.BURZUM_NOBLE_STEEL_HAMMER, -3.0f), new Item.Settings().enchantable(15)); + + public static final Item MITHRIL_SMITHING_HAMMER = registerSmithingHammerItem("mithril_smithing_hammer", + (settings) -> new SmithingHammerItem(settings, ToolMaterialsME.MITHRIL_HAMMER, -2.5f), new Item.Settings().enchantable(20) .component(DataComponentTypes.UNBREAKABLE, Unit.INSTANCE)); public static final Item IRON_CHISEL = registerItemHandheld("iron_chisel", @@ -158,6 +161,12 @@ private static Item registerItemHandheld(String name, Function factory, Item.Settings settings) { + Item item = registerItemHandheld(name, factory, settings); + smithingHammers.add(item); + return item; + } + private static Item registerItemDualModel(String name, Function factory, Item.Settings settings) { Item item = (Item)factory.apply(settings.registryKey(ModBlocks.keyOfItem(name))); ItemGroupsME.TOOLS_CONTENTS.add(item.getDefaultStack()); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/item/WeaponItemsME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/item/WeaponItemsME.java index 46440829c0..13ee0c7d2d 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/item/WeaponItemsME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/item/WeaponItemsME.java @@ -1,6 +1,7 @@ package net.sevenstars.middleearth.item; import net.minecraft.component.DataComponentTypes; +import net.minecraft.component.type.ChargedProjectilesComponent; import net.minecraft.item.Item; import net.minecraft.item.ToolMaterial; import net.minecraft.registry.Registries; @@ -753,11 +754,27 @@ public class WeaponItemsME { (settings) -> new CustomAxeWeaponItem(ToolMaterialsME.BURZUM_STEEL, settings), new Item.Settings() .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR)), true); - public static final Item DOL_GULDUR_PAVISE = registerShield("dol_guldur_pavise", + public static final Item DOL_GULDUR_SHIELD = registerShield("dol_guldur_shield", (settings) -> new CustomShieldItem(ShieldTypesME.MEDIUM_SHIELD, settings), new Item.Settings() .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR))); - public static final Item DOL_GULDUR_SHIELD = registerShield("dol_guldur_shield", + public static final Item DOL_GULDUR_ANCIENT_FLANGED_SHIELD = registerShield("dol_guldur_ancient_flanged_shield", + (settings) -> new CustomShieldItem(ShieldTypesME.HEAVY_SHIELD, settings), new Item.Settings() + .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR))); + public static final Item RUSTED_DOL_GULDUR_ANCIENT_FLANGED_SHIELD = registerShield("rusted_dol_guldur_ancient_flanged_shield", + (settings) -> new CustomShieldItem(ShieldTypesME.HEAVY_SHIELD, settings), new Item.Settings() + .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR))); + + public static final Item DOL_GULDUR_ARMRUST_SHIELD = registerShield("dol_guldur_armrust_shield", + (settings) -> new CustomShieldItem(ShieldTypesME.HEAVY_SHIELD, settings), new Item.Settings() + .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR))); + public static final Item DOL_GULDUR_HEAVY_SHIELD = registerShield("dol_guldur_heavy_shield", + (settings) -> new CustomShieldItem(ShieldTypesME.HEAVY_SHIELD, settings), new Item.Settings() + .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR))); + public static final Item DOL_GULDUR_HEAVY_SKULL_SHIELD = registerShield("dol_guldur_heavy_skull_shield", + (settings) -> new CustomShieldItem(ShieldTypesME.HEAVY_SHIELD, settings), new Item.Settings() + .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR))); + public static final Item DOL_GULDUR_PAVISE = registerShield("dol_guldur_pavise", (settings) -> new CustomShieldItem(ShieldTypesME.HEAVY_SHIELD, settings), new Item.Settings() .component(DataComponentTypesME.FACTION_DATA, new FactionDataComponent(FactionRegistry.MORDOR))); //endregion @@ -1073,7 +1090,7 @@ private static Item registerItemWithSpearModel(String name, Function factory, Item.Settings settings) { - Item item = (Item)factory.apply(settings.registryKey(ModBlocks.keyOfItem(name))); + Item item = (Item)factory.apply(settings.enchantable(2).registryKey(ModBlocks.keyOfItem(name))); ItemGroupsME.WEAPONS_CONTENTS.add(item.getDefaultStack()); SimpleBowItemModel.items.add(item); Bows.bows.add(item); @@ -1081,7 +1098,7 @@ private static Item registerBowItem(String name, Function f } private static Item registerBigBowItem(String name, Function factory, Item.Settings settings) { - Item item = (Item)factory.apply(settings.registryKey(ModBlocks.keyOfItem(name))); + Item item = (Item)factory.apply(settings.enchantable(2).registryKey(ModBlocks.keyOfItem(name))); ItemGroupsME.WEAPONS_CONTENTS.add(item.getDefaultStack()); SimpleBigItemModel.bigBows.add(item); Bows.bows.add(item); @@ -1089,7 +1106,9 @@ private static Item registerBigBowItem(String name, Function factory, Item.Settings settings) { - Item item = (Item)factory.apply(settings.registryKey(ModBlocks.keyOfItem(name))); + Item item = (Item)factory.apply(settings.maxCount(1).maxDamage(465) + .component(DataComponentTypes.CHARGED_PROJECTILES, ChargedProjectilesComponent.DEFAULT).enchantable(1) + .registryKey(ModBlocks.keyOfItem(name))); ItemGroupsME.WEAPONS_CONTENTS.add(item.getDefaultStack()); SimpleCrossbowItemModel.items.add(item); Crossbows.crossbows.add(item); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/ArmorModelsME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/ArmorModelsME.java index d3c40b9e6b..9d04ca0cd1 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/ArmorModelsME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/ArmorModelsME.java @@ -41,6 +41,10 @@ public class ArmorModelsME { public enum ModHelmetModels{ + BAGGY_HAT(EquipmentItemsME.BAGGY_HAT, new BaggyHatModel(BaggyHatModel.getTexturedModelData().createModel())), + CHAPERON(EquipmentItemsME.CHAPERON, new ChaperonModel(ChaperonModel.getTexturedModelData().createModel())), + GLASSES(EquipmentItemsME.GLASSES, new GlassesWearableModel(GlassesWearableModel.getTexturedModelData().createModel())), + MONOCLE(EquipmentItemsME.DWARVEN_MONOCLE, new MonocleModel(MonocleModel.getTexturedModelData().createModel())), STRAW_HAT(EquipmentItemsME.STRAW_HAT, new HatHelmetModel(HatHelmetModel.getTexturedModelData().createModel())), WOVEN_HAT(EquipmentItemsME.WOVEN_HAT, new HatHelmetModel(HatHelmetModel.getTexturedModelData().createModel())), WANDERER_HAT(EquipmentItemsME.WANDERER_HAT, new WizardHatModel(WizardHatModel.getTexturedModelData().createModel())), diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/DyeablePiecesME.java b/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/DyeablePiecesME.java index c7f290467a..e86098bebb 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/DyeablePiecesME.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/item/utils/armor/DyeablePiecesME.java @@ -15,6 +15,7 @@ public class DyeablePiecesME { public static void addDyeablePieces() { dyeablePieces.put(EquipmentItemsME.BYCOCKET, false); + dyeablePieces.put(EquipmentItemsME.BEEKEEPER_MASK, true); dyeablePieces.put(EquipmentItemsME.WANDERER_HAT, true); dyeablePieces.put(EquipmentItemsME.ARMING_COAT, true); dyeablePieces.put(EquipmentItemsME.ARMING_SKIRT, true); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/BeehiveBlockMixin.java b/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/BeehiveBlockMixin.java new file mode 100644 index 0000000000..36a7dcdb4a --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/BeehiveBlockMixin.java @@ -0,0 +1,26 @@ +package net.sevenstars.middleearth.mixin; + +import com.llamalad7.mixinextras.injector.ModifyExpressionValue; +import net.minecraft.block.BeehiveBlock; +import net.minecraft.block.BlockState; +import net.minecraft.entity.EquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ItemStack; +import net.minecraft.util.Hand; +import net.minecraft.util.hit.BlockHitResult; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; +import net.sevenstars.middleearth.item.EquipmentItemsME; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; + +@Mixin(BeehiveBlock.class) +public class BeehiveBlockMixin { + + @ModifyExpressionValue(method = "onUseWithItem",at = @At(value = "INVOKE", + target = "Lnet/minecraft/block/CampfireBlock;isLitCampfireInRange(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)Z")) + private boolean preventBeeAnger(boolean original, ItemStack stack, BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) { + return original || player.getEquippedStack(EquipmentSlot.HEAD).isOf(EquipmentItemsME.BEEKEEPER_MASK); + + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/LivingEntityMixin.java b/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/LivingEntityMixin.java index 387cdf7c0c..bb60492e24 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/LivingEntityMixin.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/LivingEntityMixin.java @@ -28,6 +28,7 @@ import net.sevenstars.middleearth.item.items.weapons.ReachWeaponItem; import net.sevenstars.middleearth.item.items.weapons.ranged.CustomLongbowWeaponItem; import net.sevenstars.middleearth.network.packets.S2C.PacketLivingEntityData; +import net.sevenstars.middleearth.resources.datas.biome_events.BiomeEventDataLookup; import org.jetbrains.annotations.NotNull; import org.spongepowered.asm.mixin.Final; import org.spongepowered.asm.mixin.Mixin; @@ -176,4 +177,12 @@ private boolean ScaffoldingDescendLogic(BlockState state, Block block, Operation return original.call(state, block) || block == Blocks.SCAFFOLDING && state.isOf(ModDecorativeBlocks.REINFORCED_SCAFFOLDING); } + + @Inject(method = "remove", at = @At("TAIL")) + private void onRemove(Entity.RemovalReason reason, CallbackInfo ci) { + if (!(((Entity)this) instanceof LivingEntity livingEntity)) { + return; + } + BiomeEventDataLookup.removeEntity(livingEntity.getType(), livingEntity.getUuid()); + } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/ServerWorldMixin.java b/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/ServerWorldMixin.java index 7124cd2649..20a109e39f 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/ServerWorldMixin.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/mixin/ServerWorldMixin.java @@ -1,15 +1,19 @@ package net.sevenstars.middleearth.mixin; +import net.minecraft.entity.Entity; +import net.minecraft.entity.LivingEntity; import net.minecraft.server.MinecraftServer; import net.minecraft.server.world.ServerWorld; import net.minecraft.world.GameRules; import net.minecraft.world.World; +import net.sevenstars.middleearth.resources.datas.biome_events.BiomeEventDataLookup; import org.spongepowered.asm.mixin.Final; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Shadow; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; @Mixin(ServerWorld.class) public class ServerWorldMixin { @@ -44,4 +48,11 @@ private void wakeSleepingPlayers(CallbackInfo ci) { server.getWorld(World.OVERWORLD).setTimeOfDay(currentTimeOfDay - currentTimeOfDay % 24000L); } } + + @Inject(method = "spawnEntity", at = @At("TAIL")) + private void onSpawn(Entity entity, CallbackInfoReturnable cir) { + if (!cir.getReturnValue() || !(entity instanceof LivingEntity living)) + return; + BiomeEventDataLookup.addEntity(living); + } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/AnvilShapingRecipe.java b/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/AnvilShapingRecipe.java index 90a89431fe..d67252f022 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/AnvilShapingRecipe.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/AnvilShapingRecipe.java @@ -40,9 +40,7 @@ public ItemStack createIcon() { @Override public boolean matches(SingleStackRecipeInput input, World world) { if(input.item().isEmpty()) return false; - - if(input.item().get(DataComponentTypesME.TEMPERATURE_DATA) == null) return false; - + //if(input.item().get(DataComponentTypesME.TEMPERATURE_DATA) == null) return false; return this.input.test(input.item()); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/inscription/InscriptionWordBank.java b/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/inscription/InscriptionWordBank.java index 56fbddaa2d..e03d71cba9 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/inscription/InscriptionWordBank.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/recipe/inscription/InscriptionWordBank.java @@ -3,6 +3,7 @@ import com.google.common.collect.ArrayListMultimap; import net.minecraft.item.Item; import net.minecraft.item.Items; +import net.sevenstars.middleearth.datageneration.content.TranslationEntries; import net.sevenstars.middleearth.item.ResourceItemsME; public class InscriptionWordBank { @@ -42,5 +43,7 @@ public static void addWordsToBank(){ wordBank.put(Items.EMERALD, "gifted"); wordBank.put(ResourceItemsME.ADAMANT, "swift"); + + TranslationEntries.inscriptionEntries.addAll(wordBank.values()); } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/biomevents/BiomeEventRegistry.java b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/biomevents/BiomeEventRegistry.java index d8e6a2b35a..cc29911ce0 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/biomevents/BiomeEventRegistry.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/biomevents/BiomeEventRegistry.java @@ -8,8 +8,12 @@ import net.sevenstars.middleearth.registries.DynamicRegistriesME; import net.sevenstars.middleearth.registries.content.biomevents.pools.*; import net.sevenstars.middleearth.resources.datas.biome_events.BiomeEventData; +import net.sevenstars.middleearth.resources.datas.npc_types.data.GearSlotPool; import net.sevenstars.middleearth.world.biomes.MEBiomeKeys; +import java.util.ArrayList; +import java.util.List; + public class BiomeEventRegistry { private static final RegistryKey> BIOME_EVENT_KEY = DynamicRegistriesME.BIOME_EVENT; private static final RegistryKey> STRUCTURE_EVENT_KEY = DynamicRegistriesME.STRUCTURE_EVENT; @@ -160,10 +164,6 @@ public class BiomeEventRegistry { public final static RegistryKey SHIRE = of(MEBiomeKeys.SHIRE); public final static RegistryKey SHIRE_EDGE = of(MEBiomeKeys.SHIRE_EDGE); - private static RegistryKey of(RegistryKey key){ - return DynamicRegistriesME.of(BIOME_EVENT_KEY, key.getValue()); - } - public static void bootstrapStructureEvents(Registerable context) { RegistryEntryLookup registryEntryLookup = context.getRegistryLookup(STRUCTURE_EVENT_KEY); @@ -287,15 +287,20 @@ public static void bootstrap(Registerable context) { register(context, registryEntryLookup, SHIRE , ShireBiomeEventPool.DEFAULT); register(context, registryEntryLookup, SHIRE_EDGE , ShireBiomeEventPool.DEFAULT); + + + BiomeEventRegistryUtil.registerDefaults(context, registryEntryLookup); + } + + private static void register(Registerable context, RegistryEntryLookup registryEntryLookup, RegistryKey registryKey, BiomeEventData element) { + BiomeEventRegistryUtil.register(context, registryEntryLookup, registryKey, element); } - private static void register(Registerable context, RegistryEntryLookup registryEntryLookup, RegistryKey registryKey, BiomeEventData element){ - DynamicRegistriesME.register(context, registryEntryLookup, registryKey, element); - // [LANG datagen] - // None + public static RegistryKey of(RegistryKey key) { + return BiomeEventRegistryUtil.of(key); } - private static RegistryKey register(String name) { - return RegistryKey.of(RegistryKeys.STRUCTURE, Identifier.of(MiddleEarth.MOD_ID, name)); + public static RegistryKey register(String name) { + return BiomeEventRegistryUtil.register(name); } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/biomevents/BiomeEventRegistryUtil.java b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/biomevents/BiomeEventRegistryUtil.java new file mode 100644 index 0000000000..ced5d8c1de --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/biomevents/BiomeEventRegistryUtil.java @@ -0,0 +1,62 @@ +package net.sevenstars.middleearth.registries.content.biomevents; + +import net.minecraft.registry.*; +import net.minecraft.util.Identifier; +import net.minecraft.world.biome.Biome; +import net.minecraft.world.gen.structure.Structure; +import net.sevenstars.middleearth.MiddleEarth; +import net.sevenstars.middleearth.registries.DynamicRegistriesME; +import net.sevenstars.middleearth.registries.content.biomevents.pools.GenericHostilesBiomeEventPool; +import net.sevenstars.middleearth.resources.datas.biome_events.BiomeEventData; + +import java.util.ArrayList; +import java.util.List; + +public class BiomeEventRegistryUtil { + private static final RegistryKey> BIOME_EVENT_KEY = DynamicRegistriesME.BIOME_EVENT; + + public static List> biomeEntries = new ArrayList<>(); + + + public static void addBiomeEntry(RegistryKey biome) { + if(biomeEntries == null) { + biomeEntries = new ArrayList<>(); + } + if(biomeEntries.contains(biome)) { + return; + } + biomeEntries.add(biome); + } + + + public static void removeBiomeEntry(Identifier biomeId) { + if (biomeEntries != null) { + biomeEntries.removeIf(entry -> entry.getValue().equals(biomeId)); + } + } + + public static void registerDefaults(Registerable context, RegistryEntryLookup registryEntryLookup) { + if(biomeEntries == null) + return; + + for(RegistryKey key : biomeEntries){ + DynamicRegistriesME.register(context, registryEntryLookup, of(key), GenericHostilesBiomeEventPool.EMPTY); + } + } + + public static RegistryKey of(RegistryKey key){ + return DynamicRegistriesME.of(BIOME_EVENT_KEY, key.getValue()); + } + + + public static void register(Registerable context, RegistryEntryLookup registryEntryLookup, RegistryKey registryKey, BiomeEventData element){ + DynamicRegistriesME.register(context, registryEntryLookup, registryKey, element); + BiomeEventRegistryUtil.removeBiomeEntry(registryKey.getValue()); + // [LANG datagen] + // None + } + + public static RegistryKey register(String name) { + return RegistryKey.of(RegistryKeys.STRUCTURE, Identifier.of(MiddleEarth.MOD_ID, name)); + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/DalishNpcTypePool.java b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/DalishNpcTypePool.java index 2b1c5cb8b3..ad85375a74 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/DalishNpcTypePool.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/DalishNpcTypePool.java @@ -52,6 +52,7 @@ public static List fetchAll() { PEASANT = new NpcType(NpcRegistry.DALE_PEASANT.getValue(), RaceRegistry.HUMAN, FACTION, TexturePresetsRegistry.DALE_PEASANT, List.of( WeightedGearData.create() .add(EquipmentSlot.HEAD, GearSlotPool.create() + .add(WeightedItemData.create(EquipmentItemsME.BAGGY_HAT).withWeight(2)) .add(WeightedItemData.create(EquipmentItemsME.STRAW_HAT).withWeight(1)) .add(WeightedItemData.create(EquipmentItemsME.LEATHER_SKULLCAP).withWeight(1)) .add(WeightedItemData.create().withWeight(10)) diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/EreborNpcTypePool.java b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/EreborNpcTypePool.java index 779d665ce4..db42f4ef2a 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/EreborNpcTypePool.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/EreborNpcTypePool.java @@ -64,9 +64,14 @@ public static List fetchAll() { .add(WeightedItemData.create(EquipmentItemsME.DWARVEN_MINER_HELMET)) .add(WeightedItemData.create().withWeight(21)) ) + .add(EquipmentSlot.CHEST, GearSlotPool.create() + .add(WeightedItemData.create(EquipmentItemsME.BLACKSMITH_APRON)) + .add(WeightedItemData.create().withWeight(10)) + ) .add(EquipmentSlot.MAINHAND, GearSlotPool.create() .add(WeightedItemData.create(ToolItemsME.BRONZE_PICKAXE)) .add(WeightedItemData.create(ToolItemsME.BRONZE_AXE)) + .add(WeightedItemData.create(ToolItemsME.DWARVEN_SMITHING_HAMMER)) .add(WeightedItemData.create(Items.IRON_PICKAXE)) .add(WeightedItemData.create(WeaponItemsME.EREBOR_DAGGER)) .add(WeightedItemData.create(Items.AIR).withWeight(3)) diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/MordorNpcTypePool.java b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/MordorNpcTypePool.java index 9f4d4bb213..f4e0a314c0 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/MordorNpcTypePool.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/MordorNpcTypePool.java @@ -443,6 +443,8 @@ public static List fetchAll() { .add(EquipmentSlot.OFFHAND, GearSlotPool.create() .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_PAVISE)) .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_SHIELD)) + .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_ARMRUST_SHIELD)) + .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_HEAVY_SHIELD)) .add(WeightedItemData.create(Items.AIR)) ), WeightedGearData.create() @@ -468,6 +470,8 @@ public static List fetchAll() { .add(EquipmentSlot.OFFHAND, GearSlotPool.create() .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_PAVISE)) .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_SHIELD)) + .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_ARMRUST_SHIELD)) + .add(WeightedItemData.create(WeaponItemsME.DOL_GULDUR_HEAVY_SHIELD)) .add(WeightedItemData.create(Items.AIR)) ) ), NpcRegistry.COMMON_NPC_ATTRIBUTES , CombatArchetypePool.DEFAULT, NpcLoot.FROM_6_TO_10); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/ShireNpcTypePool.java b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/ShireNpcTypePool.java index 30b7efdfe0..b32f86a1e9 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/ShireNpcTypePool.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/registries/content/npctypes/pools/ShireNpcTypePool.java @@ -47,9 +47,10 @@ public static List fetchAll() { PEASANT = new NpcType(NpcRegistry.SHIRE_PEASANT.getValue(), RaceRegistry.HOBBIT, FACTION, TexturePresetsRegistry.SHIRE_PEASANT, List.of( WeightedGearData.create() .add(EquipmentSlot.HEAD, GearSlotPool.create() + .add(WeightedItemData.create(EquipmentItemsME.CHAPERON).withWeight(2)) .add(WeightedItemData.create(EquipmentItemsME.STRAW_HAT).withWeight(2)) .add(WeightedItemData.create(EquipmentItemsME.WOVEN_HAT).withWeight(2)) - .add(WeightedItemData.create().withWeight(10)) + .add(WeightedItemData.create().withWeight(12)) ) ), NpcRegistry.COMMON_NPC_ATTRIBUTES , CombatArchetypePool.DEFAULT, NpcLoot.FROM_1_TO_4); diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventData.java b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventData.java index 41f8009f8c..26515c0e5a 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventData.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventData.java @@ -7,10 +7,13 @@ import net.minecraft.registry.DynamicRegistryManager; import net.minecraft.registry.Registries; import net.minecraft.registry.Registry; +import net.minecraft.server.world.ServerWorld; import net.minecraft.util.Identifier; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.ChunkPos; import net.minecraft.util.math.random.Random; import net.minecraft.world.World; +import net.minecraft.world.chunk.Chunk; import net.sevenstars.middleearth.MiddleEarth; import net.sevenstars.middleearth.entity.EntitiesME; import net.sevenstars.middleearth.entity.npcs.NpcEntity; @@ -19,7 +22,9 @@ import net.sevenstars.middleearth.resources.datas.biome_events.data.WildSpawnEventData; import net.sevenstars.middleearth.resources.datas.npc_types.NpcType; +import java.time.LocalTime; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; public class BiomeEventData { @@ -36,6 +41,7 @@ public static class Fields { private Boolean shouldSpawnDefaultWhenUnmet; private List wildSpawnEventDatas; + private static HashMap disabledChunkSpawningCache = new HashMap<>(); public BiomeEventData(boolean shouldSpawnDefaultWhenUnmet, List wildNpcs){ this(wildNpcs); @@ -91,7 +97,18 @@ public ContextualizedBiomeData findNpcData(World world, NpcEntity entity) { return new ContextualizedBiomeData(foundNpcType); } - public boolean canSpawn(EntityType type, World world, BlockPos pos, Random random) { + public boolean canSpawn(EntityType type, ServerWorld world, BlockPos pos, Random random) { + ChunkPos chunkPos = world.getChunk(pos).getPos(); + + Long expiredTick = disabledChunkSpawningCache.get(chunkPos); + + if (expiredTick != null) { + if(world.getTime() >= expiredTick) + disabledChunkSpawningCache.remove(chunkPos); + else + return false; + } + List weightedData = new ArrayList<>(); boolean containEntityType = false; for(WildSpawnEventData data : getWildSpawnEventDatas()){ @@ -108,11 +125,24 @@ public boolean canSpawn(EntityType type, World world, BlockPos pos, Random ra } if(!containEntityType) return true; - if(weightedData.isEmpty()) + if(weightedData.isEmpty()){ + disableChunk(world, chunkPos); return false; - + } WildSpawnEventData spawningData = weightedData.get(Random.create().nextInt(weightedData.size())); - return !spawningData.isDiscarded(random); + if(spawningData.isDiscarded(random)){ + disableChunk(world, chunkPos); + return false; + } + spawningData.broadcastMessage(world, pos); + return true; + } + + private void disableChunk(ServerWorld world, ChunkPos chunkPos) { + if(disabledChunkSpawningCache == null) + disabledChunkSpawningCache = new HashMap<>(); + disabledChunkSpawningCache.remove(chunkPos); + disabledChunkSpawningCache.put(chunkPos, world.getTime() + 20 * 5); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventDataLookup.java b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventDataLookup.java index 015729bab8..d2cf3e6938 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventDataLookup.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/BiomeEventDataLookup.java @@ -1,19 +1,31 @@ package net.sevenstars.middleearth.resources.datas.biome_events; +import net.minecraft.entity.Entity; import net.minecraft.entity.EntityType; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.SpawnGroup; +import net.minecraft.entity.mob.MobEntity; +import net.minecraft.registry.RegistryKey; import net.minecraft.registry.entry.RegistryEntry; +import net.minecraft.server.world.ServerWorld; import net.minecraft.util.Identifier; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.random.Random; import net.minecraft.world.World; import net.minecraft.world.biome.Biome; import net.sevenstars.middleearth.MiddleEarth; +import net.sevenstars.middleearth.config.ModServerConfigs; import net.sevenstars.middleearth.entity.npcs.NpcEntity; import net.sevenstars.middleearth.registries.DynamicRegistriesME; import net.sevenstars.middleearth.registries.content.biomevents.BiomeEventRegistry; +import net.sevenstars.middleearth.world.dimension.ModDimensions; + +import java.util.*; public class BiomeEventDataLookup { + public static HashMap, Set> entities = new HashMap<>(); + public static BiomeEventData.ContextualizedBiomeData findNpcDataForBiome(World world, RegistryEntry biome, NpcEntity entity) { Identifier biomeEventId = Identifier.of(biome.getIdAsString()); BiomeEventData eventData = world.getRegistryManager().getOrThrow(DynamicRegistriesME.BIOME_EVENT).get(biomeEventId); @@ -51,11 +63,48 @@ public static BiomeEventData.ContextualizedBiomeData findNpcDataForStructure(Wor return null; } - public static boolean canEntitySpawn(World world, RegistryEntry biome, BlockPos pos, EntityType type, Random random) { + public static boolean canEntitySpawn(ServerWorld world, RegistryEntry biome, BlockPos pos, EntityType type, Random random) { RegistryEntry.Reference dataRef = world.getRegistryManager().getOrThrow(DynamicRegistriesME.BIOME_EVENT).getEntry(MiddleEarth.fetchId(biome.getIdAsString())).orElse(null); if(dataRef == null) return true; BiomeEventData data = dataRef.value(); - return data.canSpawn(type, world, pos, random); + boolean canSpawn = data.canSpawn(type, world, pos, random); + + if(!canSpawn) + return false; + if(type.getSpawnGroup() != SpawnGroup.MONSTER) + return true; + + if(!entities.containsKey(type)){ + entities.put(type, new HashSet<>()); + } + return canSpawn(type); + } + + public static boolean canSpawn(EntityType type) { + return entities.getOrDefault(type, Collections.emptySet()).size() < ModServerConfigs.GLOBAL_MOB_CAP; + } + + public static void addEntity(LivingEntity entity){ + if (!entity.getWorld().getRegistryKey().equals(ModDimensions.ME_WORLD_KEY)) { + return; + } + + EntityType type = entity.getType(); + UUID uuid = entity.getUuid(); + if(type.getSpawnGroup() != SpawnGroup.MONSTER) + return; + if(entity instanceof MobEntity mobEntity && mobEntity.isPersistent()){ + return; + } + entities.computeIfAbsent(type, t -> new HashSet<>()).add(uuid); + } + + public static void removeEntity(EntityType type, UUID uuid){ + if(type.getSpawnGroup() != SpawnGroup.MONSTER) return; + Set set = entities.get(type); + if (set == null) return; + set.remove(uuid); + if (set.isEmpty()) entities.remove(type); } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/BroadcastData.java b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/BroadcastData.java new file mode 100644 index 0000000000..8d93eb7657 --- /dev/null +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/BroadcastData.java @@ -0,0 +1,73 @@ +package net.sevenstars.middleearth.resources.datas.biome_events.data; + +import com.mojang.serialization.Codec; +import com.mojang.serialization.codecs.RecordCodecBuilder; +import net.minecraft.server.network.ServerPlayerEntity; +import net.minecraft.server.world.ServerWorld; +import net.minecraft.text.Text; +import net.minecraft.util.Identifier; +import net.minecraft.util.math.BlockPos; + +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; + +public class BroadcastData { + public static class Fields { + public static final String DISTANCE = "distance"; + public static final String LANG_KEY = "lang_key"; + } + + public static final Codec CODEC = RecordCodecBuilder.create(instance -> instance.group( + Codec.INT.optionalFieldOf(BroadcastData.Fields.DISTANCE).forGetter(BroadcastData::getBroadcastMessageDistance), + Identifier.CODEC.optionalFieldOf(BroadcastData.Fields.LANG_KEY).forGetter(BroadcastData::getBroadcastMessageLangKey) + ).apply(instance, BroadcastData::new)); + + private Integer broadcastDistance = null; + private Identifier broadcastLangKey = null; + + private BroadcastData( + Optional broadcastDistance, + Optional broadcastLangKey) { + this.broadcastDistance = broadcastDistance.orElse(null); + this.broadcastLangKey = broadcastLangKey.orElse(null); + } + + public BroadcastData(Integer broadcastDistance, Identifier broadcastLangKey) { + this.broadcastDistance = broadcastDistance; + this.broadcastLangKey = broadcastLangKey; + } + + private Optional getBroadcastMessageDistance() { + return Optional.ofNullable(broadcastDistance); + } + + public BroadcastData withBroadcastMessageDistance(int distance) { + this.broadcastDistance = distance; + return this; + } + + + private Optional getBroadcastMessageLangKey() { + return Optional.ofNullable(broadcastLangKey); + } + + public BroadcastData withBroadcastMessageLangKey(Identifier langKey) { + this.broadcastLangKey = langKey; + return this; + } + + public void broadcastMessage(ServerWorld world, BlockPos pos){ + if(broadcastLangKey == null) + return; + int distanceToBroadcast = getBroadcastMessageDistance().orElse(200); + List playerNearby = new ArrayList<>(); + for(ServerPlayerEntity player : world.getPlayers()) { + if(pos.isWithinDistance(player.getPos(), distanceToBroadcast)) + playerNearby.add(player); + } + for(ServerPlayerEntity player : playerNearby){ + player.sendMessage(Text.translatable(broadcastLangKey.toTranslationKey("biome_event")) ,true); + } + } +} diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/SpawnEventDataUtil.java b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/SpawnEventDataUtil.java index e83a13bdbf..9a95414a1f 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/SpawnEventDataUtil.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/SpawnEventDataUtil.java @@ -14,6 +14,10 @@ import net.sevenstars.middleearth.entity.EntitiesME; import net.sevenstars.middleearth.entity.npcs.NpcEntity; +import java.util.HashMap; +import java.util.List; +import java.util.UUID; + public class SpawnEventDataUtil { // # Comparators static boolean compareId(NpcEntity entity, Identifier npcTypeToCompare) { diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/WildSpawnEventData.java b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/WildSpawnEventData.java index 0587fff15b..9a5649a1b1 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/WildSpawnEventData.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/resources/datas/biome_events/data/WildSpawnEventData.java @@ -5,14 +5,21 @@ import net.minecraft.entity.EntityType; import net.minecraft.registry.Registries; import net.minecraft.registry.RegistryKey; +import net.minecraft.server.network.ServerPlayerEntity; +import net.minecraft.server.world.ServerWorld; +import net.minecraft.text.Text; import net.minecraft.util.Identifier; +import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3i; import net.minecraft.util.math.random.Random; import net.sevenstars.middleearth.entity.EntitiesME; import net.sevenstars.middleearth.registries.content.npctypes.NpcRegistry; import net.sevenstars.middleearth.resources.datas.npc_types.NpcType; +import java.util.HashMap; +import java.util.List; import java.util.Optional; +import java.util.UUID; public class WildSpawnEventData { private final static WildSpawnEventData EXAMPLE = new WildSpawnEventData(NpcRegistry.BRIGAND_THUG) @@ -55,6 +62,7 @@ public static class Fields { public static final String REQUIRE_NIGHT = "require_night"; public static final String DISCARD_CHANCE = "discard_chance"; + public static final String BROADCAST = "broadcast"; } public static final Codec CODEC = RecordCodecBuilder.create(instance -> instance.group( @@ -78,8 +86,9 @@ public static class Fields { Codec.BOOL.optionalFieldOf(Fields.REQUIRE_UNDERGROUND).forGetter(WildSpawnEventData::getUndergroundRequirement), Codec.BOOL.optionalFieldOf(Fields.REQUIRE_NIGHT).forGetter(WildSpawnEventData::getNightRequirement), - Codec.DOUBLE.optionalFieldOf(Fields.DISCARD_CHANCE).forGetter(WildSpawnEventData::getDiscardChances) + Codec.DOUBLE.optionalFieldOf(Fields.DISCARD_CHANCE).forGetter(WildSpawnEventData::getDiscardChances), + BroadcastData.CODEC.optionalFieldOf(Fields.BROADCAST).forGetter(WildSpawnEventData::getBroadcast) ).apply(instance, WildSpawnEventData::new)); private final Identifier entityType; @@ -97,6 +106,8 @@ public static class Fields { private Boolean requireUnderground = null; private Boolean requireNight = null; private Double discardChance = null; + private BroadcastData broadcastData = null; + private WildSpawnEventData( Identifier entityType, @@ -113,7 +124,8 @@ private WildSpawnEventData( Optional requireSky, Optional requireUnderground, Optional requireNight, - Optional discardChance) { + Optional discardChance, + Optional broadcastData) { this.entityType = entityType; this.npcType = npcType.orElse(null); this.weight = weight.orElse(null); @@ -129,6 +141,7 @@ private WildSpawnEventData( this.requireUnderground = requireUnderground.orElse(null); this.requireNight = requireNight.orElse(null); this.discardChance = discardChance.orElse(null); + this.broadcastData = broadcastData.orElse(null); } public WildSpawnEventData(EntityType entityType){ @@ -407,4 +420,19 @@ public boolean isDiscarded(Random random) { double obtained = random.nextDouble(); return obtained <= discardChance; } + + private Optional getBroadcast() { + return Optional.ofNullable(broadcastData); + } + + public WildSpawnEventData withBroadcast(BroadcastData broadcast) { + this.broadcastData = broadcast; + return this; + } + + public void broadcastMessage(ServerWorld world, BlockPos pos){ + if(broadcastData == null) + return; + broadcastData.broadcastMessage(world, pos); + } } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/utils/SpawnUtil.java b/middle-earth/src/main/java/net/sevenstars/middleearth/utils/SpawnUtil.java index 1b78302963..bae4ebb523 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/utils/SpawnUtil.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/utils/SpawnUtil.java @@ -4,6 +4,7 @@ import net.minecraft.entity.SpawnReason; import net.minecraft.registry.entry.RegistryEntry; import net.minecraft.registry.tag.BlockTags; +import net.minecraft.server.world.ServerWorld; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.random.Random; import net.minecraft.world.ServerWorldAccess; @@ -13,7 +14,7 @@ public class SpawnUtil { public static boolean canCreatureSpawn(EntityType type, ServerWorldAccess serverWorldAccess, SpawnReason spawnReason, BlockPos blockPos, Random random) { - if (spawnReason == SpawnReason.NATURAL && serverWorldAccess instanceof World world) { + if (spawnReason == SpawnReason.NATURAL && serverWorldAccess instanceof ServerWorld world) { RegistryEntry biome = world.getBiome(blockPos); return BiomeEventDataLookup.canEntitySpawn(world, biome, blockPos, type, random); } diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/world/biomes/MEBiomeKeys.java b/middle-earth/src/main/java/net/sevenstars/middleearth/world/biomes/MEBiomeKeys.java index fafdc0cb1c..7fd29829e2 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/world/biomes/MEBiomeKeys.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/world/biomes/MEBiomeKeys.java @@ -7,6 +7,8 @@ import net.minecraft.world.biome.Biome; import net.minecraft.world.biome.BiomeKeys; import net.sevenstars.middleearth.datageneration.content.TranslationEntries; +import net.sevenstars.middleearth.registries.content.biomevents.BiomeEventRegistry; +import net.sevenstars.middleearth.registries.content.biomevents.BiomeEventRegistryUtil; public class MEBiomeKeys extends BiomeKeys { // region SURFACE @@ -290,7 +292,10 @@ public class MEBiomeKeys extends BiomeKeys { private static RegistryKey register(String name) { TranslationEntries.biomeEntries.add(name); - return RegistryKey.of(RegistryKeys.BIOME, Identifier.of(MiddleEarth.MOD_ID, name)); + Identifier biomeId = MiddleEarth.of(name); + RegistryKey biome = RegistryKey.of(RegistryKeys.BIOME, biomeId); + BiomeEventRegistryUtil.addBiomeEntry(biome); + return biome; } public static void registerModBiomes() { diff --git a/middle-earth/src/main/java/net/sevenstars/middleearth/world/chunkgen/MiddleEarthChunkGenerator.java b/middle-earth/src/main/java/net/sevenstars/middleearth/world/chunkgen/MiddleEarthChunkGenerator.java index b4190b7c90..033f1cd5ae 100644 --- a/middle-earth/src/main/java/net/sevenstars/middleearth/world/chunkgen/MiddleEarthChunkGenerator.java +++ b/middle-earth/src/main/java/net/sevenstars/middleearth/world/chunkgen/MiddleEarthChunkGenerator.java @@ -641,7 +641,7 @@ public int getMinimumY() { @Override public int getHeight(int x, int z, Heightmap.Type heightmap, HeightLimitView world, NoiseConfig noiseConfig) { float worldHeight = 1 + DIRT_HEIGHT + MiddleEarthHeightMap.getHeight(x, z); - return (int)worldHeight; + return Math.max(64, (int)worldHeight); } @Override diff --git a/middle-earth/src/main/resources/assets/middle-earth/blockstates/bronze_chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/blockstates/bronze_chandelier.json new file mode 100644 index 0000000000..38f084d067 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/blockstates/bronze_chandelier.json @@ -0,0 +1,16 @@ +{ + "variants": { + "variant=1,lit=false": { + "model": "middle-earth:block/bronze_chandelier" + }, + "variant=1,lit=true": { + "model": "middle-earth:block/bronze_chandelier" + }, + "variant=2,lit=false": { + "model": "middle-earth:block/bronze_chandelier_1" + }, + "variant=2,lit=true": { + "model": "middle-earth:block/bronze_chandelier_1" + } + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/blockstates/chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/blockstates/chandelier.json new file mode 100644 index 0000000000..77154f9b89 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/blockstates/chandelier.json @@ -0,0 +1,16 @@ +{ + "variants": { + "variant=1,lit=false": { + "model": "middle-earth:block/chandelier" + }, + "variant=1,lit=true": { + "model": "middle-earth:block/chandelier_lit" + }, + "variant=2,lit=false": { + "model": "middle-earth:block/chandelier_1" + }, + "variant=2,lit=true": { + "model": "middle-earth:block/chandelier_lit_1" + } + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/blockstates/old_skull.json b/middle-earth/src/main/resources/assets/middle-earth/blockstates/old_skull.json new file mode 100644 index 0000000000..3951e3eea5 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/blockstates/old_skull.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/skull" + } + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/blockstates/skeleton.json b/middle-earth/src/main/resources/assets/middle-earth/blockstates/skeleton.json new file mode 100644 index 0000000000..5c9d4186a9 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/blockstates/skeleton.json @@ -0,0 +1,147 @@ +{ + "variants": { + "pose=1,facing=east": { + "model": "middle-earth:block/skeleton1", + "y": 90 + }, + "pose=1,facing=north": { + "model": "middle-earth:block/skeleton1" + }, + "pose=1,facing=south": { + "model": "middle-earth:block/skeleton1", + "y": 180 + }, + "pose=1,facing=west": { + "model": "middle-earth:block/skeleton1", + "y": 270 + }, + + "pose=2,facing=east": { + "model": "middle-earth:block/skeleton2", + "y": 90 + }, + "pose=2,facing=north": { + "model": "middle-earth:block/skeleton2" + }, + "pose=2,facing=south": { + "model": "middle-earth:block/skeleton2", + "y": 180 + }, + "pose=2,facing=west": { + "model": "middle-earth:block/skeleton2", + "y": 270 + }, + + "pose=3,facing=east": { + "model": "middle-earth:block/skeleton3", + "y": 90 + }, + "pose=3,facing=north": { + "model": "middle-earth:block/skeleton3" + }, + "pose=3,facing=south": { + "model": "middle-earth:block/skeleton3", + "y": 180 + }, + "pose=3,facing=west": { + "model": "middle-earth:block/skeleton3", + "y": 270 + }, + + "pose=4,facing=east": { + "model": "middle-earth:block/skeleton4", + "y": 90 + }, + "pose=4,facing=north": { + "model": "middle-earth:block/skeleton4" + }, + "pose=4,facing=south": { + "model": "middle-earth:block/skeleton4", + "y": 180 + }, + "pose=4,facing=west": { + "model": "middle-earth:block/skeleton4", + "y": 270 + }, + + "pose=5,facing=east": { + "model": "middle-earth:block/skeleton5", + "y": 90 + }, + "pose=5,facing=north": { + "model": "middle-earth:block/skeleton5" + }, + "pose=5,facing=south": { + "model": "middle-earth:block/skeleton5", + "y": 180 + }, + "pose=5,facing=west": { + "model": "middle-earth:block/skeleton5", + "y": 270 + }, + + "pose=6,facing=east": { + "model": "middle-earth:block/skeleton6", + "y": 90 + }, + "pose=6,facing=north": { + "model": "middle-earth:block/skeleton6" + }, + "pose=6,facing=south": { + "model": "middle-earth:block/skeleton6", + "y": 180 + }, + "pose=6,facing=west": { + "model": "middle-earth:block/skeleton6", + "y": 270 + }, + + "pose=7,facing=east": { + "model": "middle-earth:block/skeleton7", + "y": 90 + }, + "pose=7,facing=north": { + "model": "middle-earth:block/skeleton7" + }, + "pose=7,facing=south": { + "model": "middle-earth:block/skeleton7", + "y": 180 + }, + "pose=7,facing=west": { + "model": "middle-earth:block/skeleton7", + "y": 270 + }, + + "pose=8,facing=east": { + "model": "middle-earth:block/skeleton8", + "y": 90 + }, + "pose=8,facing=north": { + "model": "middle-earth:block/skeleton8" + }, + "pose=8,facing=south": { + "model": "middle-earth:block/skeleton8", + "y": 180 + }, + "pose=8,facing=west": { + "model": "middle-earth:block/skeleton8", + "y": 270 + }, + + "pose=9,facing=east": { + "model": "middle-earth:block/skeleton9", + "y": 90 + }, + "pose=9,facing=north": { + "model": "middle-earth:block/skeleton9" + }, + "pose=9,facing=south": { + "model": "middle-earth:block/skeleton9", + "y": 180 + }, + "pose=9,facing=west": { + "model": "middle-earth:block/skeleton9", + "y": 270 + } + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/blockstates/small_bronze_chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/blockstates/small_bronze_chandelier.json new file mode 100644 index 0000000000..71a17b98ac --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/blockstates/small_bronze_chandelier.json @@ -0,0 +1,16 @@ +{ + "variants": { + "variant=1,lit=false": { + "model": "middle-earth:block/small_bronze_chandelier" + }, + "variant=1,lit=true": { + "model": "middle-earth:block/small_bronze_chandelier" + }, + "variant=2,lit=false": { + "model": "middle-earth:block/small_bronze_chandelier_1" + }, + "variant=2,lit=true": { + "model": "middle-earth:block/small_bronze_chandelier_1" + } + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/blockstates/small_chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/blockstates/small_chandelier.json new file mode 100644 index 0000000000..bf7f514b8a --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/blockstates/small_chandelier.json @@ -0,0 +1,16 @@ +{ + "variants": { + "variant=1,lit=false": { + "model": "middle-earth:block/small_chandelier" + }, + "variant=1,lit=true": { + "model": "middle-earth:block/small_chandelier" + }, + "variant=2,lit=false": { + "model": "middle-earth:block/small_chandelier_1" + }, + "variant=2,lit=true": { + "model": "middle-earth:block/small_chandelier_1" + } + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/items/old_skull.json b/middle-earth/src/main/resources/assets/middle-earth/items/old_skull.json new file mode 100644 index 0000000000..3472477080 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/items/old_skull.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "middle-earth:block/old_skull" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/items/skeleton.json b/middle-earth/src/main/resources/assets/middle-earth/items/skeleton.json new file mode 100644 index 0000000000..1fd118d0ce --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/items/skeleton.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "middle-earth:block/skeleton4" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/cs_cz.json b/middle-earth/src/main/resources/assets/middle-earth/lang/cs_cz.json index e55e8c5bce..dcd7fd368e 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/cs_cz.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/cs_cz.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/de_de.json b/middle-earth/src/main/resources/assets/middle-earth/lang/de_de.json index 626278ae43..3519b3a3ea 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/de_de.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/de_de.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/es_es.json b/middle-earth/src/main/resources/assets/middle-earth/lang/es_es.json index 1ccef34f74..63f88dcece 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/es_es.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/es_es.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/fr_fr.json b/middle-earth/src/main/resources/assets/middle-earth/lang/fr_fr.json index bb48829254..86cda7ef5b 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/fr_fr.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/fr_fr.json @@ -1,6798 +1,14793 @@ { - "#Comment:": "Interface de la carte de la Terre du Millieu", - "advancements.middle_earth.root.title": "Terre du Milieu", - "advancements.middle_earth.root.description": "Entrez dans la Terre du Milieu !", - "advancements.middle_earth.enter_mordor.title": "On n'entre pas si simplement...", - "advancements.middle_earth.enter_mordor.description": "Marcher au Mordor", - "advancements.middle_earth.enter_lothlorien.title": "Les arbres dorés", "advancements.middle_earth.enter_lothlorien.description": "Entrer en Lothlórien", - "advancements.middle_earth.enter_mirkwood.title": "Restez sur la voie !", + "advancements.middle_earth.enter_lothlorien.title": "Les arbres dorés", "advancements.middle_earth.enter_mirkwood.description": "Entrer dans la Forêt noire", + "advancements.middle_earth.enter_mirkwood.title": "Restez sur la voie !", + "advancements.middle_earth.enter_misty_mountains.description": "Entrer aux Monts Brumeux", "advancements.middle_earth.enter_misty_mountains.title": "Au-delà...", - "advancements.middle_earth.enter_misty_mountains.description": "Allez aux Monts Brumeux", + "advancements.middle_earth.enter_mordor.description": "Entrer au Mordor", + "advancements.middle_earth.enter_mordor.title": "On n'entre pas si simplement...", + "advancements.middle_earth.enter_shire.description": "Entrer en Comté", "advancements.middle_earth.enter_shire.title": "La campagne paisible", - "advancements.middle_earth.enter_shire.description": "Entrer au Comté", + "advancements.middle_earth.lembas.description": "Une bouchée suffit à nourrir l'estomac d'un adulte !", "advancements.middle_earth.lembas.title": "Pain elfique", - "advancements.middle_earth.lembas.description": "Une bouchée suffit à nourrir l'estomac d'un adulte!", - "advancements.middle_earth.strawberry.title": "Vous vous souvenez?", - "advancements.middle_earth.strawberry.description": "Le goût des fraises", - "advancements.middle_earth.mithril.title": "Aussi léger qu'une plume", "advancements.middle_earth.mithril.description": "Miner du Mithril !", - "advancements.smithing.root.title": "Forgeron", - "advancements.smithing.root.description": "Tout commence par la forge !", - "advancements.smithing.bellows.title": "Pas assez chaud ?", - "advancements.smithing.bellows.description": "Fabriquez des soufflets pour réchauffer votre forge", - "advancements.smithing.artisan_table.title": "Travail d'artisan", + "advancements.middle_earth.mithril.title": "Aussi léger qu'une plume", + "advancements.middle_earth.root.description": "Entrer dans la Terre du Milieu !", + "advancements.middle_earth.root.title": "Terre du Milieu", + "advancements.middle_earth.strawberry.description": "Le goût des fraises", + "advancements.middle_earth.strawberry.title": "Vous vous souvenez ?", "advancements.smithing.artisan_table.description": "Fabriquer la table d'artisan", - "advancements.smithing.bronze_ingot.title": "L'Âge du bronze", + "advancements.smithing.artisan_table.title": "Travail d'artisan", + "advancements.smithing.bellows.description": "Fabriquer des soufflets pour réchauffer votre forge", + "advancements.smithing.bellows.title": "Pas assez chaud ?", "advancements.smithing.bronze_ingot.description": "Un peu d'étain et un brin de cuivre", - "advancements.smithing.crude_ingot.title": "Artisanat Orque", - "advancements.smithing.crude_ingot.description": "Forge the malicious Crude Metal", - "advancements.smithing.khazad_steel.title": "Maîtrise des Nains", - "advancements.smithing.khazad_steel.description": "Forger le fameux acier de Khâzad", - "advancements.smithing.dwarven_treated_anvil.title": "Chant des Halls de la Montagne", - "advancements.smithing.dwarven_treated_anvil.description": "Fabriquez une enclume naine pour créer des objets Nains", - "advancements.smithing.edhel_steel.title": "L'art des premiers-née", - "advancements.smithing.edhel_steel.description": "Forgez le resplendissant acier d'Edhel", - "advancements.smithing.elven_treated_anvil.title": "Chronique de Fëanor", - "advancements.smithing.elven_treated_anvil.description": "Fabriquez une enclume elfique pour créer des objets elfiques", - "advancements.smithing.steel.title": "La forge des Hommes", - "advancements.smithing.steel.description": "Forger l'acier populaire des Hommes du milieu", - "advancements.smithing.treated_anvil.title": "Forgé dans le feu", - "advancements.smithing.treated_anvil.description": "Fabriquez une enclume basique pour forger", + "advancements.smithing.bronze_ingot.title": "L'Âge du bronze", + "advancements.smithing.burzum_steel.description": "Forger le puissant acier Uruk", "advancements.smithing.burzum_steel.title": "Métallurgie Uruk", - "advancements.smithing.burzum_steel.description": "Forgez le puissant acier Uruk", - "advancements.smithing.orcish_treated_anvil.title": "Touché par l'Ombre", - "advancements.smithing.orcish_treated_anvil.description": "Fabriquez une enclume orque pour créer des objets Orques", + "advancements.smithing.crude_ingot.description": "Forger le métal grossier des Orques", + "advancements.smithing.crude_ingot.title": "Artisanat orque", + "advancements.smithing.crystal_lamp.description": "Fabriquer une lampe en cristal", "advancements.smithing.crystal_lamp.title": "Lumière de Khazad-dûm", - "advancements.smithing.crystal_lamp.description": "Fabriquez une lampe en cristal", - "advancements.smithing.dwarven_lantern.title": "Une lumière dans le noir", "advancements.smithing.dwarven_lantern.description": "Fabriquer une lanterne naine", + "advancements.smithing.dwarven_lantern.title": "Une lumière dans le noir", + "advancements.smithing.dwarven_treated_anvil.description": "Fabriquer une enclume naine pour créer des objets nains", + "advancements.smithing.dwarven_treated_anvil.title": "Chant des Salles de la Montagne", + "advancements.smithing.edhel_steel.description": "Forger le resplendissant acier d'Edhel", + "advancements.smithing.edhel_steel.title": "L'art des premiers-nés", + "advancements.smithing.elven_lantern.description": "Éclairer votre chemin comme les Quendi", "advancements.smithing.elven_lantern.title": "La lumière des elfes", - "advancements.smithing.elven_lantern.description": "Éclairez votre chemin comme le Quendi", - "#Comment": "Tableaux", - "biome.me.anduin_vales": "Val d'Anduin", - "biome.me.anduin_vales_forest": "Forêt du Val d'Anduin", - "biome.me.anorien": "Anórien", - "biome.me.anorien_riverside": "Berge de L'Anorien", - "biome.me.anorien_foothills": "Piedmont de l'Anorien", - "biome.me.barrow_downs": "Hauts des Galgals", - "biome.me.beleriand_island": "Belariand Island", - "biome.me.belfalas": "Belfalas", - "biome.me.belfalas_forest": "Forêt du Belfalas", - "biome.me.belfalas_hills": "Collines de Belfalas", - "biome.me.belfalas_beach": "Plage du Belfalas", - "biome.me.blackroot_vale": "Val de Sourcenoire", - "biome.me.blackroot_forest": "Forêt de Sourcenoire", - "biome.me.blue_mountains": "Les Montagnes bleues", - "biome.me.blue_mountains_foothills": "Piémonts des Montagnes bleues", - "biome.me.blue_mountains_base": "Les Montagnes bleues", - "biome.me.blue_mountains_peaks": "Pics des Montagnes Bleues", - "biome.me.blue_mountains_woods": "Bois des Montagnes Bleues", - "biome.me.brown_lands": "Terres Brune", - "biome.me.caradhras_base": "Base du Caradhras", - "biome.me.caradhras": "Caradhras", - "biome.me.caradhras_peaks": "Pics du Caradhras", - "biome.me.celebdil_base": "Base du Celebdil", - "biome.me.celebdil": "Celebdil", - "biome.me.celebdil_peaks": "Pics du Celebdil", - "biome.me.corsair_coasts": "Côtes des Corsaires", - "biome.me.dale": "Le Val", - "biome.me.dale_forest": "Forêt du Val", - "biome.me.dale_meadow": "Prairies du Val", - "biome.me.dagorlad": "Dagorlad", - "biome.me.dead_marshes": "Marais des Morts", - "biome.me.dead_marshes_water": "Eau des marais morts", - "biome.me.desolated_lands": "Terres désolée", - "biome.me.dark_mirkwood": "Cœur de Grand'Peur", - "biome.me.dark_mirkwood_edge": "Bordure de la Forêt noire", - "biome.me.dark_anduin_vales": "Val d'Anduin obscure", - "biome.me.dol_guldur": "Dol Guldur", - "biome.me.dorwinion": "Dorwinion", - "biome.me.dorwinion_hills": "Les collines de Dorwinion", - "biome.me.dunland_foothills": "Piémonts du Dunlande", - "biome.me.east_bight": "Anse de l’Est", - "biome.me.eastern_nurn": "Nurn orientale", - "biome.me.eastern_rhovanion": "Rhovanion Oriental", - "biome.me.eastern_rhovanion_forest": "Forêt du Rhovanion oriental", - "biome.me.emyn_muil": "Emyn Muil", - "biome.me.emyn_muil_cliffs": "Falaises d'Emyn Muil", - "biome.me.emyn_muil_peaks": "Pics de l'Emyn Muil", - "biome.me.emyn_muil_pond": "Étang de l'Emyn Muil", - "biome.me.enedwaith": "Enedwaith", - "biome.me.ephel_duath": "Ephel Duath", - "biome.me.ephel_duath_base": "Base de l'Ephel Duath", - "biome.me.ephel_duath_peaks": "Pic de l'Ephel Duath", - "biome.me.ered_lithui": "Ered Lithui", - "biome.me.ered_lithui_base": "Base de l'Ered Lithui", - "biome.me.ered_lithui_peaks": "Pics de l'Ered Lithui", - "biome.me.eregion": "Eregion", - "biome.me.eregion_forest": "Forêt de l'Eregion", - "biome.me.eregion_glade": "Clairière d'Eregion", - "biome.me.eriador": "Eriador", - "biome.me.ethir_anduin": "Bouches de l'Anduin", - "biome.me.fangorn": "Fangorn", - "biome.me.fanuidhol": "Fanuidhol", - "biome.me.fanuidhol_base": "Fanuidhol Base", - "biome.me.fanuidhol_peaks": "Fanuidhol Peaks", - "biome.me.fanuidhol_foothills": "Fanuidhol Foothills", - "biome.me.forodwaith": "Forodwaith", - "biome.me.frozen_ocean": "Océan figé", - "biome.me.frozen_pond": "Étang gelé", - "biome.me.lindon_shores": "Lindon Shores", - "biome.me.lindon_shores_cliffs": "Lindon Cliffs", - "biome.me.gondor": "Gondor", - "biome.me.gondor_forest": "Gondor Forest", - "biome.me.gondor_hill": "Gondor Hill", - "biome.me.gorgoroth": "Gorgoroth", - "biome.me.gorgoroth_ashen_woods": "Gorgoroth Ashen Woods", - "biome.me.gorgoroth_delta": "Gorgoroth Delta", - "biome.me.grey_mountains": "Les Montagnes grises", - "biome.me.grey_mountains_base": "Grey Mountains Base", - "biome.me.grey_mountains_peaks": "Grey Mountains Peaks", - "biome.me.grey_ashen_woods": "Grey Ashen Woods", - "biome.me.grey_plains": "Les Plaines grises", - "biome.me.harad": "Le Harad", - "biome.me.harad_desert": "Le désert de Harad", - "biome.me.harondor": "Harondor", - "biome.me.high_moor": "High Moor", - "biome.me.high_moor_vale": "High Moor Vale", - "biome.me.high_moor_hills": "High Moor Hills", - "biome.me.hills_of_evendim": "Hills of Evendim", - "biome.me.iron_hills": "Les Collines de fer", - "biome.me.iron_foothills": "Iron Foothills", - "biome.me.iron_hills_base": "Iron Hills Base", - "biome.me.iron_hills_peaks": "Iron Hills Peaks", - "biome.me.iron_hills_frontier": "Piémonts des Monts de fer", - "biome.me.iron_hills_riverside": "Iron Hills Riverside", - "biome.me.ithilien": "Ithilien", - "biome.me.ithilien_glade": "Ithilien Glade", - "biome.me.ithilien_wastes": "Ithilien sinistre", - "biome.me.ithilien_wastes_glade": "Ithilien Wastes Glade", - "biome.me.lamedon": "Lamedon", - "biome.me.lamedon_hills": "Lamedon Hills", - "biome.me.lebennin": "Lebennin", - "biome.me.lebennin_hills": "Lebennin Hills", - "biome.me.lebennin_shores": "Lebennin Shores", - "biome.me.lindon": "Lindon", - "biome.me.lindon_forest": "Lindon Forest", - "biome.me.lindon_hidden_blossom": "Lindon Hidden Blossom", - "biome.me.lindon_meadow": "Lindon Meadow", - "biome.me.lonely_mountain_foothills": "Piémonts de la Montagne solitaire", - "biome.me.lonely_mountain": "La Montagne solitaire", - "biome.me.lonely_mountain_base": "Lonely Mountain Base", - "biome.me.lonely_mountain_peaks": "Sommets de la Montagne solitaire", - "biome.me.long_lake": "Le grand lac", - "biome.me.lorien_edge": "Lisière de la Lothlórien", - "biome.me.lossarnach": "Lossarnach", - "biome.me.lossarnach_cherry_blossom": "Lossarnach Cherry Blossom", - "biome.me.lossarnach_valley": "Lossarnach Valley", - "biome.me.lossarnach_valley_red": "Lossarnach Valley Red", - "biome.me.lossarnach_valley_orange": "Lossarnach Valley Orange", - "biome.me.lossarnach_valley_yellow": "Lossarnach Valley Yellow", - "biome.me.lossarnach_valley_green": "Lossarnach Valley Green", - "biome.me.lothlorien": "Lothlórien", - "biome.me.lothlorien_blossom": "Lothlórien Blossom", - "biome.me.lothlorien_glade": "Lothlórien Glade", - "biome.me.minhiriath": "Minhiriath", - "biome.me.mirkwood": "La Forêt noire", - "biome.me.mirkwood_edge": "Lisière de la Forêt noire", - "biome.me.mirkwood_foothills": "Piémonts de la Forêt noire", - "biome.me.mirkwood_mountains": "Les montagnes de la Forêt noire", - "biome.me.mirkwood_mountains_base": "Mirkwood Mountains Base", - "biome.me.mirkwood_mountains_peaks": "Mirkwood Mountains Peaks", - "biome.me.mirkwood_marshes": "Mirkwood Marshes", - "biome.me.mirkwood_swamp": "Marais de la Forêt noire", - "biome.me.mirkwood_river": "Mirkwood River", - "biome.me.misty_mountains": "Les Monts Brumeux", - "biome.me.misty_mountains_base": "Misty Mountains Base", - "biome.me.misty_mountains_peaks": "Misty Mountains Peaks", - "biome.me.mount_gundabad_base": "Mount Gundabad Base", - "biome.me.mount_gundabad": "Mount Gundabad", - "biome.me.mount_gundabad_peaks": "Mount Gundabad Peaks", - "biome.me.mount_doom": "Mount Doom", - "biome.me.mount_doom_pit": "Mount Doom Pit", - "biome.me.mordor": "Mordor", - "biome.me.mordor_ashen_forest": "Mordor Ashen Forest", - "biome.me.mordor_hill": "Mordor Hill", - "biome.me.morgul_vale": "Morgul Vale", - "biome.me.morgul_forest": "Morgul Forest", - "biome.me.mordor_mountains": "Les montagnes du Mordor", - "biome.me.mordor_mountains_foothills": "Piémonts des montagnes du Mordor", - "biome.me.mordor_wastes": "Les terres désolées du Mordor", - "biome.me.nan_curunir": "Nan Curunír", - "biome.me.nen_hithoel": "Nen Hithoel", - "biome.me.nen_hithoel_shores": "Nen Hithoel Shores", - "biome.me.nen_hithoel_forest": "Nen Hithoel Forest", - "biome.me.nindalf": "Nindalf", - "biome.me.north_downs": "Hauts du Nord", - "biome.me.northern_dunland": "Dunlande du nord", - "biome.me.northern_mirkwood_marshes": "Northern Mirkwood Marshes", - "biome.me.northern_mirkwood_swamp": "Northern Mirkwood Swamp", - "biome.me.northern_rhovanion_forest": "Northern Rhovanion Forest", - "biome.me.northern_rhovanion_hills": "Northern Rhovanion Hills", - "biome.me.northern_wastelands": "Les terres désolées du Nord", - "biome.me.nurn": "Núrn", - "biome.me.nurn_edge": "Núrn Edge", - "biome.me.nurn_edge_woods": "Núrn Edge Woods", - "biome.me.nurn_forest": "Núrn Forest", - "biome.me.nurn_hill": "Núrn Hill", - "biome.me.nurn_river": "Rivière de Núrn", - "biome.me.nurn_sea": "Mer de Núrn", - "biome.me.ocean": "Océan", - "biome.me.ocean_coast": "Côte océanique", - "biome.me.old_angmar": "Ancien Arnor", - "biome.me.old_angmar_forest": "Old Angmar Forest", - "biome.me.old_angmar_cold_hill": "Old Angmar Cold Hill", - "biome.me.old_angmar_frozen_hill": "Old Angmar Frozen Hill", - "biome.me.old_arthedain": "Old Arthedain", - "biome.me.old_arthedain_forest": "Old Arthedain Forest", - "biome.me.old_arthedain_meadow": "Old Arthedain Meadow", - "biome.me.old_arthedain_foothill": "Old Arthedain Foothill", - "biome.me.old_cardolan": "Ancien Cardolan", - "biome.me.old_cardolan_forest": "Old Cardolan Forest", - "biome.me.old_cardolan_hill": "Old Cardolan Hill", - "biome.me.old_rhudaur": "Ancien Rhudaur", - "biome.me.old_rhudaur_forest": "Old Rhudaur Forest", - "biome.me.old_rhudaur_hill": "Old Rhudaur Hill", - "biome.me.oasis": "Oasis", - "biome.me.osgiliath": "Osgiliath", - "biome.me.pelennor_fields": "Pelennor Fields", - "biome.me.pond": "Étang", - "biome.me.rhun": "Rhûn", - "biome.me.sea_of_rhun": "Mer de Rhûn", - "biome.me.river": "Rivière", - "biome.me.river_running": "River Running", - "biome.me.rohan": "Rohan", - "biome.me.rohan_forest": "Rohan Forest", - "biome.me.rohan_hills": "Rohan Hills", - "biome.me.sarn_gebir_shores": "Sarn Gebir Shores", - "biome.me.sarn_gebir_wildlands": "Sarn Gebir Wildlands", - "biome.me.shire": "Comté", - "biome.me.shire_edge": "Lisière de la Comté", - "biome.me.shire_forest": "Shire Forest", - "biome.me.shire_hills": "Shire Hills", - "biome.me.shire_woods": "Forêt de la Comté", - "biome.me.southeast_rhovanion": "Rhovanion sud-oriental", - "biome.me.southeast_rhovanion_fields": "Southeast Rhovanion Fields", - "biome.me.southern_dunland": "Dunlande méridional", - "biome.me.southern_forochel": "Forochel Sud", - "biome.me.the_angle": "L'Angle", - "biome.me.the_old_forest": "La vielle Forêt", - "biome.me.the_wold": "Le Wold", - "biome.me.tolfalas": "Tolfalas", - "biome.me.trollshaws": "Fourrés aux Trolls", - "biome.me.udun": "Udun", - "biome.me.umbar": "Umbar", - "biome.me.umbar_woods": "Umbar Woods", - "biome.me.webbed_dark_woods": "Webbed Dark Woods", - "biome.me.waste_pond": "Étang souillé", - "biome.me.white_mountains": "Les Montagnes blanches", - "biome.me.white_mountains_base": "White Mountains Base", - "biome.me.white_mountains_peaks": "White Mountains Peaks", - "biome.me.woodland_realm": "Royaume Sylvestre", - "biome.me.woodland_foothills": "Woodland Foothills", - "biome.me.woodland_hills": "Woodland Hills", - "biome.me.basic_cave": "Caverne basique", - "biome.me.lush_cave": "Caverne luxuriante", - "biome.me.dripstone_cave": "Caverne de spéléothèmes", - "biome.me.dolomite_cave": "Dolomite Cave", - "biome.me.galonn_cave": "Galonn Cave", - "biome.me.gilded_cave": "Gilded Cave", - "biome.me.izher_aban_cave": "Izhêr Aban Cave", - "biome.me.limestone_cave": "Limestone Cave", - "biome.me.mountain_cave": "Mountain Cave", - "biome.me.mud_cave": "Caverne de boue", - "biome.me.fungus_cave": "Caverne aux champignons", - "biome.me.basalt_cave": "Caverne de basalte", - "biome.me.magma_cave": "Caverne de magma", - "biome.me.mithril_cave": "Caverne de Mithril", - "biome.me.dry_cave": "Caverne aride", - "biome.me.ice_cave": "Caverne de glace", - "itemGroup.me.stone_blocks": "Middle-earth Stone Blocks", - "itemGroup.me.wood_blocks": "Middle-earth Wood Blocks", - "itemGroup.me.misc_blocks": "Middle-earth Misc Blocks", - "itemGroup.me.nature_blocks": "Middle-earth Nature Blocks", - "itemGroup.me.decorative_blocks": "Middle-earth Decorative Blocks", - "itemGroup.me.food_items": "Middle-earth Food", - "itemGroup.me.weapon_items": "Middle-earth Weapons", - "itemGroup.me.equipment_items": "Middle-earth Equipment", - "itemGroup.me.tool_items": "Middle-earth Tools", - "itemGroup.me.resource_items": "Middle-earth Resources", - "itemGroup.me.spawn_egg_items": "Middle-earth Spawn Eggs", - "effect.me.hallucination": "Hallucination", - "item.me.copper_rod": "Baguette de cuivre", - "item.me.raw_tin": "Étain brut", - "item.me.tin_ingot": "Lingot d'étain", - "item.me.tin_nugget": "Pépite d'étain", - "item.me.tin_rod": "Baguette d'étain", - "item.me.raw_lead": "Plomb brut", - "item.me.lead_ingot": "Lingot de plomb", - "item.me.lead_nugget": "Pépite de plomb", - "item.me.lead_rod": "Barre de plomb", - "item.me.bronze_ingot": "Lingot de bronze", - "item.me.bronze_nugget": "Pépite de bronze", - "item.me.bronze_rod": "Barre de bronze", - "block.me.bronze_block": "Bloc de bronze", - "item.me.raw_silver": "Argent brut", - "item.me.silver_ingot": "Lingot d'argent", - "item.me.silver_nugget": "Pépite d'argent", - "item.me.silver_rod": "Barre d'argent", - "item.me.gold_rod": "Barre d'or", - "item.me.iron_rod": "Barre de fer", - "item.me.crude_ingot": "Crude Ingot", - "item.me.crude_nugget": "Crude Nugget", - "item.me.crude_rod": "Crude Rod", - "block.me.crude_block": "Crude Block", - "item.me.steel_ingot": "Lingot d'acier", - "item.me.steel_nugget": "Pépite d'acier", - "item.me.steel_rod": "Barre d'acier", - "block.me.steel_block": "Bloc d'acier", - "item.me.burzum_steel_ingot": "Búrzum-Steel Ingot", - "item.me.burzum_steel_nugget": "Búrzum-Steel Nugget", - "item.me.burzum_steel_rod": "Búrzum-Steel Rod", - "block.me.burzum_steel_block": "Búrzum-Steel Block", - "item.me.edhel_steel_ingot": "Edhel-Steel Ingot", - "item.me.edhel_steel_nugget": "Edhel-Steel Nugget", - "item.me.edhel_steel_rod": "Edhel-Steel Rod", - "block.me.edhel_steel_block": "Edhel-Steel Block", - "item.me.khazad_steel_ingot": "Khazâd-Steel Ingot", - "item.me.khazad_steel_nugget": "Khazâd-Steel Nugget", - "item.me.khazad_steel_rod": "Khazâd-Steel Rod", - "block.me.khazad_steel_block": "Khazâd-Steel Block", - "item.me.morgul_steel_ingot": "Lingot d'acier de Morgul", - "item.me.morgul_steel_nugget": "Pépite d'acier de Morgul", - "item.me.morgul_steel_rod": "Baguette d'acier de Morgul", - "block.me.morgul_steel_block": "Bloc d'acier de Morgul", - "item.me.raw_mithril": "Mithril brut", - "item.me.mithril_ingot": "Lingot de mithril", - "item.me.mithril_nugget": "Pépite de mithril", - "item.me.mithril_rod": "Barre de mithril", - "item.me.gold_ring": "Anneau d'or", - "item.me.middle_earth_map": "Middle-earth Map", - "item.me.ash": "Cendre", - "item.me.dirty_bone": "Dirty Bone", - "item.me.fang": "Fang", - "item.me.empty_phial": "Fiole vide", - "item.me.water_phial": "Fiole d'eau", - "item.me.starlight_phial": "Fiole d'étoiles", - "item.me.bronze_pickaxe": "Pioche en bronze", - "item.me.bronze_axe": "Hache en bronze", - "item.me.bronze_shovel": "Pelle en bronze", - "item.me.bronze_hoe": "Houe en bronze", - "item.me.crude_pickaxe": "Crude Pickaxe", - "item.me.crude_axe": "Crude Axe", - "item.me.crude_shovel": "Crude Shovel", - "item.me.crude_hoe": "Crude Hoe", - "item.me.steel_pickaxe": "Pioche en acier", - "item.me.steel_axe": "Hache en acier", - "item.me.steel_shovel": "Pelle en acier", - "item.me.steel_hoe": "Houe en acier", - "item.me.burzum_steel_pickaxe": "Búrzum-Steel Pickaxe", - "item.me.burzum_steel_axe": "Búrzum-Steel Axe", - "item.me.burzum_steel_shovel": "Búrzum-Steel Shovel", - "item.me.burzum_steel_hoe": "Búrzum-Steel Hoe", - "item.me.edhel_steel_pickaxe": "Edhel-Steel Pickaxe", - "item.me.edhel_steel_axe": "Edhel-Steel Axe", - "item.me.edhel_steel_shovel": "Edhel-Steel Shovel", - "item.me.edhel_steel_hoe": "Edhel-Steel Hoe", - "item.me.khazad_steel_pickaxe": "Khazâd-Steel Pickaxe", - "item.me.khazad_steel_axe": "Khazâd-Steel Axe", - "item.me.khazad_steel_shovel": "Khazâd-Steel Shovel", - "item.me.khazad_steel_hoe": "Khazâd-Steel Hoe", - "item.me.mithril_pickaxe": "Pioche en Mithril", - "item.me.mithril_axe": "Hache en Mithril", - "item.me.mithril_shovel": "Pelle en Mithril", - "item.me.mithril_hoe": "Houe en Mithril", - "item.me.pipe": "Pipe", - "item.me.clay_pipe": "Clay Pipe", - "item.me.riverbend_pipe": "Riverbend Pipe", - "item.me.brimmingbend_pipe": "Brimmingbend Pipe", - "item.me.longbottom_pipe": "Longbottom Pipe", - "item.me.bronze_bucket": "Seau en bronze", - "item.me.broken_bronze_bucket": "Seau en bronze cassé", - "item.me.bronze_water_bucket": "Seau d’eau en bronze", - "item.me.bronze_powder_snow_bucket": "Seau de neige poudreuse en bronze", - "item.me.bronze_milk_bucket": "Seau de lait en bronze", - "item.me.bronze_pufferfish_bucket": "Poisson-globe dans un seau en bronze", - "item.me.bronze_salmon_bucket": "Saumon dans un seau en bronze", - "item.me.bronze_cod_bucket": "Morue dans un seau en bronze", - "item.me.bronze_tropical_fish_bucket": "Poisson tropical dans un seau en bronze", - "item.me.bronze_axolotl_bucket": "Axolotl dans un seau en bronze", - "item.me.bronze_tadpole_bucket": "Têtard dans un seau en bronze", - "item.me.copper_smithing_hammer": "Copper Smithing Hammer", - "item.me.smithing_hammer": "Smithing Hammer", - "item.me.noble_smithing_hammer": "Noble Smithing Hammer", - "item.me.dwarven_smithing_hammer": "Dwarven Smithing Hammer", - "item.me.dwarven_noble_smithing_hammer": "Dwarven Noble Smithing Hammer", - "item.me.elven_smithing_hammer": "Elven Smithing Hammer", - "item.me.elven_noble_smithing_hammer": "Elven Noble Smithing Hammer", - "item.me.orcish_smithing_hammer": "Orcish Smithing Hammer", - "item.me.orcish_elite_smithing_hammer": "Orcish Elite Smithing Hammer", - "item.me.mithril_smithing_hammer": "Mithril Smithing Hammer", - "item.me.fur": "Fur", - "item.me.fabric": "Fabric", - "item.me.rod": "Rod", - "item.me.large_rod": "Large Rod", - "item.me.pickaxe_head": "Pickaxe Head", - "item.me.axe_head": "Axe Head", - "item.me.shovel_head": "Shovel Head", - "item.me.hoe_head": "Hoe Head", - "item.me.blade": "Blade", - "item.me.short_blade": "Short Blade", - "item.me.long_blade": "Long Blade", - "item.me.great_axe_head": "Great Axe Head", - "item.me.sword_hilt": "Sword Hilt", - "item.me.mail_ring": "Mail Ring", - "item.me.mail": "Mail", - "item.me.scale": "Scale", - "item.me.scale_mail": "Scale Mail", - "item.me.armor_plate": "Armor Plate", - "item.me.helmet_plate": "Helmet Plate", - "item.me.shield_border": "Shield Border", - "item.me.shield_plate": "Shield Plate", - "item.me.orc_sword": "Orc Sword", - "item.me.orc_broadblade": "Orc Broadblade", - "item.me.orc_knife": "Orc Knife", - "item.me.orc_spear": "Orc Spear", - "item.me.orc_axe": "Orc Axe", - "item.me.orcish_bow": "Orcish Bow", - "item.me.erebor_sword": "Erebor Sword", - "item.me.erebor_noble_sword": "Erebor Noble Sword", - "item.me.erebor_longsword": "Erebor Longsword", - "item.me.erebor_noble_longsword": "Erebor Noble Longsword", - "item.me.erebor_dagger": "Erebor Dagger", - "item.me.erebor_noble_dagger": "Erebor Noble Dagger", - "item.me.erebor_axe": "Erebor Axe", - "item.me.erebor_noble_axe": "Erebor Noble Axe", - "item.me.erebor_spear": "Erebor Spear", - "item.me.erebor_noble_spear": "Erebor Noble Spear", - "item.me.erebor_bow": "Erebor Bow", - "item.me.erebor_noble_bow": "Erebor Noble Bow", - "item.me.erebor_crossbow": "Erebor Crossbow", - "item.me.erebor_noble_crossbow": "Erebor Noble Crossbow", - "item.me.gondorian_sword": "Epée Gondorienne", - "item.me.gondorian_noble_sword": "Gondorian Noble Sword", - "item.me.gondorian_longsword": "Épée Longue Gondorienne", - "item.me.gondorian_noble_longsword": "Gondorian Noble Longsword", - "item.me.gondorian_dagger": "Dague Gondorienne", - "item.me.gondorian_noble_dagger": "Gondorian Noble Dagger", - "item.me.gondorian_axe": "Gondorian Axe", - "item.me.gondorian_noble_axe": "Gondorian Noble Axe", - "item.me.gondorian_spear": "Lance Gondorienne", - "item.me.gondorian_noble_spear": "Gondorian Noble Spear", - "item.me.gondorian_fountain_guard_spear": "Gondorian Fountain Guard Spear", - "item.me.gondorian_bow": "Arc Gondorien", - "item.me.gondorian_longbow": "Gondorian Longbow", - "item.me.gondorian_noble_longbow": "Gondorian Noble Longbow", - "item.me.lorien_sword": "Epée Galadhrim", - "item.me.lorien_noble_sword": "Lórien Noble Sword", - "item.me.lorien_glaive": "Lórien Glaive", - "item.me.lorien_noble_glaive": "Lórien Noble Glaive", - "item.me.lorien_dagger": "Dague Galadhrim", - "item.me.lorien_noble_dagger": "Lórien Noble Dagger", - "item.me.lorien_axe": "Lórien Axe", - "item.me.lorien_noble_axe": "Lórien Noble Axe", - "item.me.lorien_spear": "Lance Galadhrim", - "item.me.lorien_noble_spear": "Lórien Noble Spear", - "item.me.lorien_bow": "Arc Galadhrim", - "item.me.lorien_longbow": "Lórien Longbow", - "item.me.lorien_noble_longbow": "Lórien Noble Longbow", - "item.me.rohirric_sword": "Épée Rohirrique", - "item.me.rohirric_noble_sword": "Rohirric Noble Sword", - "item.me.rohirric_longsword": "Épée longue Rohirrique", - "item.me.rohirric_noble_longsword": "Rohirric Noble Longsword", - "item.me.rohirric_dagger": "Dague Rohirrique", - "item.me.rohirric_noble_dagger": "Rohirric Noble Dagger", - "item.me.rohirric_axe": "Rohirric Axe", - "item.me.rohirric_noble_axe": "Rohirric Noble Axe", - "item.me.rohirric_spear": "Lance Rohirrique", - "item.me.rohirric_noble_spear": "Rohirric Noble Spear", - "item.me.rohirric_bow": "Arc Rohirrique", - "item.me.rohirric_noble_bow": "Rohirric Noble Bow", - "item.me.rohirric_longbow": "Rohirric Longbow", - "item.me.dalish_sword": "Épée du Val", - "item.me.dalish_heyday_sword": "Dalish Heyday Sword", - "item.me.dalish_heyday_scimitar": "Dalish Heyday Scimitar", - "item.me.dalish_noble_sword": "Dalish Noble Sword", - "item.me.dalish_longsword": "Dalish Longsword", - "item.me.dalish_heyday_longsword": "Dalish Heyday Longsword", - "item.me.dalish_noble_longsword": "Dalish Noble Longsword", - "item.me.dalish_axe": "Dalish Axe", - "item.me.dalish_heyday_axe": "Dalish Heyday Axe", - "item.me.dalish_noble_axe": "Dalish Noble Axe", - "item.me.dalish_dagger": "Dague du Val", - "item.me.dalish_heyday_dagger": "Dalish Heyday Dagger", - "item.me.dalish_noble_dagger": "Dalish Noble Dagger", - "item.me.dalish_spear": "Lance du Val", - "item.me.dalish_heyday_spear": "Dalish Heyday Spear", - "item.me.dalish_noble_spear": "Dalish Noble Spear", - "item.me.dalish_longbow": "Dalish Longbow", - "item.me.dalish_heyday_longbow": "Dalish Heyday Longbow", - "item.me.dalish_noble_longbow": "Dalish Noble Longbow", - "item.me.mordor_falchion": "Mordor Falchion", - "item.me.mordor_elite_cleaver": "Mordor Elite Cleaver", - "item.me.mordor_scimitar": "Mordor Scimitar", - "item.me.mordor_elite_warblade": "Mordor Elite Warblade", - "item.me.mordor_dagger": "Mordor Dagger", - "item.me.mordor_elite_dagger": "Mordor Elite Dagger", - "item.me.mordor_spear": "Mordor Spear", - "item.me.mordor_elite_spear": "Mordor Elite Spear", - "item.me.mordor_axe": "Mordor Axe", - "item.me.mordor_elite_axe": "Mordor Elite Axe", - "item.me.mordor_bow": "Mordor Bow", - "item.me.mordor_elite_longbow": "Mordor Elite Longbow", - "item.me.black_numenorean_sword": "Black Númenórean Sword", - "item.me.black_numenorean_longsword": "Black Númenórean Longsword", - "item.me.black_numenorean_dagger": "Black Númenórean Dagger", - "item.me.black_numenorean_spear": "Black Númenórean Spear", - "item.me.black_numenorean_axe": "Black Númenórean Axe", - "item.me.isengard_orc_cleaver": "Isengard Orc Cleaver", - "item.me.uruk_hai_falchion": "Uruk-Hai Falchion", - "item.me.isengard_orc_warblade": "Isengard Orc Warblade", - "item.me.uruk_hai_warblade": "Uruk-Hai Warblade", - "item.me.isengard_orc_dagger": "Isengard Orc Dagger", - "item.me.uruk_hai_knife": "Uruk-Hai Knife", - "item.me.isengard_orc_spear": "Isengard Orc Spear", - "item.me.uruk_hai_spear": "Uruk-Hai Spear", - "item.me.isengard_orc_axe": "Isengard Orc Axe", - "item.me.uruk_hai_axe": "Uruk-Hai Axe", - "item.me.uruk_hai_bow": "Uruk-Hai Bow", - "item.me.uruk_hai_crossbow": "Uruk-Hai Crossbow", - "item.me.gundabad_falchion": "Fauchon de Gundabad", - "item.me.gundabad_elite_cleaver": "Gundabad Elite Cleaver", - "item.me.gundabad_warblade": "Gundabad Warblade", - "item.me.gundabad_elite_scimitar": "Gundabad Elite Scimitar", - "item.me.gundabad_shank": "Gundabad Shank", - "item.me.gundabad_elite_dagger": "Gundabad Elite Dagger", - "item.me.gundabad_spear": "Lance de Gundabad", - "item.me.gundabad_elite_spear": "Gundabad Elite Spear", - "item.me.gundabad_axe": "Gundabad Axe", - "item.me.gundabad_elite_battleaxe": "Gundabad Elite Battleaxe", - "item.me.gundabad_bow": "Gundabad Bow", - "item.me.gundabad_crossbow": "Gundabad Crossbow", - "item.me.wooden_dagger": "Dague en bois", - "item.me.stone_dagger": "Dague en pierre", - "item.me.bronze_dagger": "Dague en bronze", - "item.me.golden_dagger": "Golden Dagger", - "item.me.iron_dagger": "Dague en fer", - "item.me.steel_dagger": "Steel Dagger", - "item.me.crude_dagger": "Crude Dagger", - "item.me.burzum_steel_dagger": "Búrzum-Steel Dagger", - "item.me.edhel_steel_dagger": "Edhel-Steel Dagger", - "item.me.khazad_steel_dagger": "Khazâd-Steel Dagger", - "item.me.diamond_dagger": "Diamond Dagger", - "item.me.netherite_dagger": "Netherite Dagger", - "item.me.bronze_sword": "Épée en Bronze", - "item.me.steel_sword": "Steel Sword", - "item.me.crude_falchion": "Crude Falchion", - "item.me.burzum_steel_sword": "Búrzum-Steel Sword", - "item.me.edhel_steel_sword": "Edhel-Steel Sword", - "item.me.khazad_steel_sword": "Khazâd-Steel Sword", - "item.me.wooden_longsword": "Wooden Longsword", - "item.me.stone_longsword": "Stone Longsword", - "item.me.bronze_longsword": "Bronze Longsword", - "item.me.golden_longsword": "Golden Longsword", - "item.me.iron_longsword": "Iron Longsword", - "item.me.steel_longsword": "Steel Longsword", - "item.me.crude_longblade": "Crude Longblade", - "item.me.burzum_steel_longsword": "Búrzum-Steel Longsword", - "item.me.edhel_steel_longsword": "Edhel-Steel Longsword", - "item.me.khazad_steel_longsword": "Khazâd-Steel Longsword", - "item.me.diamond_longsword": "Diamond Longsword", - "item.me.netherite_longsword": "Netherite Longsword", - "item.me.wooden_spear": "Wooden Spear", - "item.me.stone_spear": "Stone Spear", - "item.me.bronze_spear": "Lance en bronze", - "item.me.golden_spear": "Golden Spear", - "item.me.iron_spear": "Iron Spear", - "item.me.steel_spear": "Steel Spear", - "item.me.crude_spear": "Crude Spear", - "item.me.burzum_steel_spear": "Búrzum-Steel Spear", - "item.me.edhel_steel_spear": "Edhel-Steel Spear", - "item.me.khazad_steel_spear": "Khazâd-Steel Spear", - "item.me.diamond_spear": "Diamond Spear", - "item.me.netherite_spear": "Netherite Spear", - "item.me.dagamarth": "Dagamarth", - "item.me.herugrim": "Herugrim", - "item.me.nazgul_sword": "Nazgûl sword", - "item.me.hammer_of_helm_hammerhand": "Hammer of Helm Hammerhand", - "item.me.mace_of_sauron": "Mace of Sauron", - "item.me.anguirel": "Anguirel", - "item.me.glamdring": "Glamdring", - "item.me.long_forgotten_longsword": "Long-forgotten Longsword", - "item.me.longsword_of_elder_kings": "Longsword Of Elder Kings", - "item.me.narsil": "Narsil", - "item.me.noldorin_longsword": "Noldorin Longsword", - "item.me.orcrist": "Orcrist", - "item.me.barrow_blade": "Barrow Blade", - "item.me.sting": "Dard", - "item.me.morgul_knife": "Morgul Knife", - "item.me.aeglos": "Aeglos", - "item.me.anorthann": "Anorthann", - "item.me.cuthann": "Cûthann", - "item.me.shield_of_durins_guard": "Shield of Durin's Guard", - "item.me.helmet_of_helm_hammerhand": "Helmet of Helm Hammerhand", - "item.me.hood": "Hood", - "item.me.tall_hood": "Tall Hood", - "item.me.black_fur_hood": "Black Fur Hood", - "item.me.brown_fur_hood": "Brown Fur Hood", - "item.me.gray_fur_hood": "Gray Fur Hood", - "item.me.tan_fur_hood": "Tan Fur Hood", - "item.me.white_fur_hood": "White Fur Hood", - "item.me.cape": "Cape", - "item.me.cloak": "Cape", - "item.me.black_fur_cloak": "Black Fur Cloak", - "item.me.brown_fur_cloak": "Brown Fur Cloak", - "item.me.gray_fur_cloak": "Gray Fur Cloak", - "item.me.tan_fur_cloak": "Tan Fur Cloak", - "item.me.white_fur_cloak": "White Fur Cloak", - "item.me.black_fur": "Black Fur", - "item.me.brown_fur": "Brown Fur", - "item.me.gray_fur": "Gray Fur", - "item.me.tan_fur": "Tan Fur", - "item.me.white_fur": "White Fur", - "item.me.surcoat": "Surcoat", - "item.me.wanderer_robes": "Wanderer Robes", - "item.me.gondorian_captain_cape": "Gondorian Captain Cape", - "item.me.gondorian_hero_cape": "Gondorian Hero Cape", - "item.me.gondorian_kings_guard_cape": "Gondorian King's Guard Cape", - "item.me.gondorian_citadel_guard_hood": "Gondorian Citadel Guard Hood", - "item.me.gondorian_citadel_guard_cape": "Gondorian Citadel Guard Cape", - "item.me.gondorian_fountain_guard_cape": "Gondorian Fountain Guard Cape", - "item.me.rohirric_cape": "Rohirric Cape", - "item.me.rohirric_royal_guard_cape": "Rohirric Royal Guard Cape", - "item.me.eorling_marshal_cape": "Eorling Marshal Cape", - "item.me.horse_lord_cape": "Horse Lord Cape", - "item.me.barding_surcoat": "Barding Surcoat", - "item.me.dalish_heyday_cloak": "Dalish Heyday Cloak", - "item.me.barding_sergeant_cape": "Barding Sergeant Cape", - "item.me.erebor_cape": "Erebor Cape", - "item.me.ravenhill_sentinel_cape": "Ravenhill Sentinel Cape", - "item.me.lorien_marchwarden_hood": "Lórien Marchwarden Hood", - "item.me.lorien_marchwarden_cape": "Lórien Marchwarden Cape", - "item.me.galadhrim_cape": "Galadhrim Cape", - "item.me.galadhrim_hood": "Galadhrim Hood", - "item.me.galadhrim_lord_surcoat": "Galadhrim Lord Surcoat", - "item.me.orcish_cape": "Orcish Cape", - "item.me.orcish_long_cape": "Orcish Long Cape", - "item.me.orcish_shoulders": "Orcish Shoulders", - "item.me.orcish_black_fur_surcoat_with_bone": "Orcish Black Fur Surcoat With Bone", - "item.me.orcish_brown_fur_surcoat_with_bone": "Orcish Brown Fur Surcoat With Bone", - "item.me.orcish_gray_fur_surcoat_with_bone": "Orcish Gray Fur Surcoat With Bone", - "item.me.orcish_tan_fur_surcoat_with_bone": "Orcish Tan Fur Surcoat With Bone", - "item.me.orcish_white_fur_surcoat_with_bone": "Orcish White Fur Surcoat With Bone", - "item.me.straw_hat": "Straw Hat", - "item.me.woven_hat": "Woven Hat", - "item.me.bycocket": "Bycocket", - "item.me.wanderer_hat": "Wanderer Hat", - "item.me.arming_coat": "Arming Coat", - "item.me.arming_skirt": "Arming Skirt", - "item.me.shoes": "Shoes", - "item.me.work_shoes": "Work Shoes", - "item.me.leather_skullcap": "Leather Skullcap", - "item.me.gambeson_cap": "Gambeson Cap", - "item.me.gambeson_cowl": "Gambeson Cowl", - "item.me.kettle_hat": "Chapel de fer", - "item.me.leather_vest": "Leather Vest", - "item.me.leather_scale_vest": "Leather Scale Vest", - "item.me.gambeson": "Gambison", - "item.me.sturdy_boots": "Sturdy Boots", - "item.me.travelling_boots": "Travelling Boots", - "item.me.high_cut_boots": "High Cut Boots", - "item.me.mail_coif": "Mail Coif", - "item.me.kettle_hat_with_coif": "Kettle Hat With Coif", - "item.me.closed_mail_coif": "Closed Mail Coif", - "item.me.kettle_hat_with_closed_coif": "Kettle Hat With Closed Coif", - "item.me.open_face_helmet": "Open Face Helmet", - "item.me.mail_hauberk": "Mail Hauberk", - "item.me.mail_shirt": "Mail Shirt", - "item.me.mail_skirt": "Mail Skirt", - "item.me.sallet": "Sallet", - "item.me.shirriff_hat": "Shirriff Hat", - "item.me.gondorian_boots": "Gondorian Boots", - "item.me.gondorian_cabasset_helmet": "Gondorian Cabasset Helmet", - "item.me.gondorian_mail_hauberk": "Gondorian Mail Hauberk", - "item.me.gondorian_tabbard": "Gondorian Tabbard", - "item.me.gondorian_leather_cuirass": "Gondorian Leather Cuirass", - "item.me.gondorian_leather_chestplate": "Gondorian Leather Chestplate", - "item.me.gondorian_mail_coat": "Gondorian Mail Coat", - "item.me.gondorian_soldier_helmet": "Gondorian Soldier Helmet", - "item.me.gondorian_soldier_chestplate": "Gondorian Soldier Chestplate", - "item.me.gondorian_plate_helmet": "Casque de plates Gondorienne", - "item.me.gondorian_plate_chestplate": "Plastron de plates Gondorienne", - "item.me.gondorian_plate_leggings": "Jambières de plates Gondorienne", - "item.me.gondorian_plate_boots": "Bottes de plates Gondorienne", - "item.me.gondorian_captain_helmet": "Gondorian Captain Helmet", - "item.me.gondorian_kings_guard_helmet": "Gondorian King's Guard Helmet", - "item.me.gondorian_kings_guard_chestplate": "Gondorian King's Guard Chestplate", - "item.me.gondorian_kings_guard_leggings": "Gondorian King's Guard Leggings", - "item.me.gondorian_kings_guard_boots": "Gondorian King's Guard Boots", - "item.me.gondorian_citadel_guard_helmet": "Casque de garde de la citadelle", - "item.me.gondorian_citadel_guard_chestplate": "Plastron de garde de la citadelle", - "item.me.gondorian_citadel_guard_leggings": "Jambières de garde de la citadelle", - "item.me.gondorian_citadel_guard_boots": "Bottes de garde de la citadelle", - "item.me.gondorian_fountain_guard_helmet": "Casque de garde de la fontaine", - "item.me.gondorian_fountain_guard_chestplate": "Plastron de garde de la fontaine", - "item.me.gondorian_fountain_guard_leggings": "Jambières de garde de la fontaine", - "item.me.gondorian_fountain_guard_boots": "Bottes de garde de la fontaine", - "item.me.rohirric_reinforced_coat": "Rohirric Reinforced Coat", - "item.me.rohirric_leather_helmet": "Rohirric Leather Helmet", - "item.me.rohirric_reinforced_leather_helmet": "Rohirric Reinforced Leather Helmet", - "item.me.rohirric_ornamented_leather_helmet": "Rohirric Ornamented Leather Helmet", - "item.me.rohirric_leather_vest": "Rohirric Leather Vest", - "item.me.rohirric_leather_scale_vest": "Rohirric Leather Scale Vest", - "item.me.rohirric_gambeson": "Rohirric Gambeson", - "item.me.rohirric_militia_helmet": "Rohirric Militia Helmet", - "item.me.rohirric_braced_militia_helmet": "Rohirric Braced Militia Helmet", - "item.me.rohirric_reinforced_militia_helmet": "Rohirric Reinforced Militia Helmet", - "item.me.rohirric_ornamented_militia_helmet": "Rohirric Ornamented Militia Helmet", - "item.me.rohirric_reinforced_leather_vest": "Rohirric Reinforced Leather Vest", - "item.me.rohirric_reinforced_leather_scale_vest": "Rohirric Reinforced Leather Scale Vest", - "item.me.rohirric_braced_mail_shirt": "Rohirric Braced Mail Shirt", - "item.me.rohirric_soldier_helmet": "Rohirric Soldier Helmet", - "item.me.rohirric_ornamented_soldier_helmet": "Rohirric Ornamented Soldier Helmet", - "item.me.rohirric_royal_guard_helmet": "Casque de la Garde Royale Rohirrique", - "item.me.rohirric_scale_hauberk": "Rohirric Scale Hauberk", - "item.me.rohirric_ornamented_scale_hauberk": "Rohirric Ornamented Scale Hauberk", - "item.me.rohirric_scale_jacket": "Rohirric Scale Jacket", - "item.me.eorling_marshal_helmet": "Eorling Marshal Helmet", - "item.me.eorling_marshal_chestplate": "Eorling Marshal Chestplate", - "item.me.eorling_marshal_leggings": "Eorling Marshal Leggings", - "item.me.eorling_marshal_boots": "Eorling Marshal Boots", - "item.me.horse_lord_helmet": "Casque de seigneur des cheveux", - "item.me.horse_lord_chestplate": "Plastron de seigneur des chevaux", - "item.me.horse_lord_leggings": "Jambières de seigneur des chevaux", - "item.me.horse_lord_boots": "Bottes de seigneur des chevaux", - "item.me.dalish_arming_coat_black_fur": "Dalish Arming Coat Black Fur", - "item.me.dalish_arming_coat_brown_fur": "Dalish Arming Coat Brown Fur", - "item.me.dalish_arming_coat_tan_fur": "Dalish Arming Coat Tan Fur", - "item.me.dalish_heyday_arming_coat": "Dalish Heyday Arming Coat", - "item.me.dalish_boots": "Dalish Boots", - "item.me.dalish_helmet": "Dalish Helmet", - "item.me.dalish_helmet_black_fur": "Dalish Helmet Black Fur", - "item.me.dalish_helmet_brown_fur": "Dalish Helmet Brown Fur", - "item.me.dalish_helmet_tan_fur": "Dalish Helmet Tan Fur", - "item.me.dalish_mail_hauberk": "Dalish Mail Hauberk", - "item.me.dalish_mail_coat": "Dalish Mail Coat", - "item.me.dalish_burgonet": "Dalish Burgonet", - "item.me.dalish_scale_hauberk": "Dalish Scale Hauberk", - "item.me.dalish_heyday_helmet": "Dalish Heyday Helmet", - "item.me.dalish_heyday_chestplate": "Dalish Heyday Chestplate", - "item.me.dalish_heyday_mail_coat": "Dalish Heyday Mail Coat", - "item.me.dalish_heyday_boots": "Dalish Heyday Boots", - "item.me.barding_soldier_helmet": "Barding Soldier Helmet", - "item.me.barding_soldier_chestplate": "Barding Soldier Chestplate", - "item.me.barding_mail_skirt": "Barding Mail Skirt", - "item.me.barding_plated_boots": "Barding Plated Boots", - "item.me.barding_sergeant_helmet": "Barding Sergeant Helmet", - "item.me.barding_sergeant_chestplate": "Barding Sergeant Chestplate", - "item.me.dwarven_miner_helmet": "Dwarven Miner Helmet", - "item.me.dwarven_gambeson": "Dwarven Gambeson", - "item.me.dwarven_mail_coif": "Dwarven Mail Coif", - "item.me.dwarven_mail_hauberk": "Dwarven Mail Hauberk", - "item.me.dwarven_miner_gambeson": "Dwarven Miner Gambeson", - "item.me.dwarven_mail_coat": "Dwarven Mail Coat", - "item.me.dwarven_mail_chausses": "Dwarven Mail Chausses", - "item.me.dwarven_boots": "Dwarven Boots", - "item.me.dwarven_scale_hauberk": "Dwarven Scale Hauberk", - "item.me.dwarven_scale_coat": "Dwarven Scale Coat", - "item.me.dwarven_reinforced_boots": "Dwarven Reinforced Boots", - "item.me.longbeard_segmented_helmet": "Longbeard Segmented Helmet", - "item.me.longbeard_leather_hauberk": "Longbeard Leather Hauberk", - "item.me.longbeard_wanderer_coat": "Longbeard Wanderer Coat", - "item.me.longbeard_leather_leggings": "Longbeard Leather Leggings", - "item.me.longbeard_partisan_outfit": "Longbeard Partisan Outfit", - "item.me.longbeard_reinforced_leather_hauberk": "Longbeard Reinforced Leather Hauberk", - "item.me.erebor_leather_helmet": "Erebor Leather Helmet", - "item.me.erebor_braced_leather_helmet": "Erebor Braced Leather Helmet", - "item.me.erebor_nasal_leather_helmet": "Erebor Nasal Leather Helmet", - "item.me.erebor_leather_leggings": "Erebor Leather Leggings", - "item.me.erebor_mail_coif": "Erebor Mail Coif", - "item.me.erebor_gilded_mail_coif": "Erebor Gilded Mail Coif", - "item.me.erebor_helmet": "Erebor Helmet", - "item.me.erebor_mail_hauberk": "Erebor Mail Hauberk", - "item.me.erebor_padded_mail_hauberk": "Erebor Padded Mail Hauberk", - "item.me.erebor_mail_coat": "Erebor Mail Coat", - "item.me.erebor_mail_leggings": "Jambières de mailles d'Erebor", - "item.me.erebor_mail_chausses": "Erebor Mail Chausses", - "item.me.erebor_boots": "Erebor Boots", - "item.me.ravenhill_helmet": "Ravenhill Helmet", - "item.me.ravenhill_gilded_helmet": "Ravenhill Gilded Helmet", - "item.me.erebor_scale_hauberk": "Erebor Scale Hauberk", - "item.me.erebor_long_coat": "Erebor Long Coat", - "item.me.erebor_brawler_chestplate": "Erebor Brawler Chestplate", - "item.me.erebor_reinforced_leather_hauberk": "Erebor Reinforced Leather Hauberk", - "item.me.erebor_reinforced_coat": "Erebor Reinforced Coat", - "item.me.ravenhill_reinforced_mail_hauberk": "Ravenhill Reinforced Mail Hauberk", - "item.me.erebor_scale_coat": "Erebor Scale Coat", - "item.me.erebor_scale_leggings": "Jambières d'écaille d'Erebor", - "item.me.ravenhill_boots": "Ravenhill Boots", - "item.me.erebor_guard_helmet": "Erebor Guard Helmet", - "item.me.erebor_captain_helmet": "Erebor Captain Helmet", - "item.me.erebor_plate_helmet": "Casque de plate d'Erebor", - "item.me.erebor_plate_chestplate": "Plastron de plate d'Erebor", - "item.me.erebor_plate_leggings": "Jambières de plate d'Erebor", - "item.me.erebor_plate_boots": "Bottes de plate d'Erebor", - "item.me.ravenhill_watchwarden_helmet": "Ravenhill Watchwarden Helmet", - "item.me.ravenhill_watchwarden_chestplate": "Ravenhill Watchwarden Chestplate", - "item.me.ravenhill_watchwarden_leggings": "Ravenhill Watchwarden Leggings", - "item.me.ravenhill_watchwarden_boots": "Ravenhill Watchwarden Boots", - "item.me.ravenhill_sentinel_helmet": "Ravenhill Sentinel Helmet", - "item.me.ravenhill_sentinel_chestplate": "Ravenhill Sentinel Chestplate", - "item.me.ravenhill_sentinel_leggings": "Ravenhill Sentinel Leggings", - "item.me.ravenhill_sentinel_boots": "Ravenhill Sentinel Boots", - "item.me.erebor_gatewarden_helmet": "Erebor Gatewarden Helmet", - "item.me.erebor_gatewarden_chestplate": "Erebor Gatewarden Chestplate", - "item.me.erebor_gatewarden_leggings": "Erebor Gatewarden Leggings", - "item.me.erebor_gatewarden_boots": "Erebor Gatewarden Boots", - "item.me.elven_arming_coat": "Elven Arming Coat", - "item.me.elven_arming_skirt": "Elven Arming Skirt", - "item.me.elven_open_arming_skirt": "Elven Open Arming Skirt", - "item.me.elven_boots": "Elven Boots", - "item.me.elven_mail_coif": "Elven Mail Coif", - "item.me.elven_mail_hauberk": "Elven Mail Hauberk", - "item.me.elven_mail_skirt": "Elven Mail Skirt", - "item.me.lorien_diadem": "Lórien Diadem", - "item.me.lorien_leather_helmet": "Lórien Leather Helmet", - "item.me.lorien_arming_coat": "Lórien Arming Coat", - "item.me.lorien_arming_skirt": "Lórien Arming Skirt", - "item.me.lorien_mail_coif_diadem": "Lórien Mail Coif Diadem", - "item.me.lorien_short_mail_coif_diadem": "Lórien Short Mail Coif Diadem", - "item.me.lorien_mail_hauberk": "Lórien Mail Hauberk", - "item.me.lorien_marchwarden_mail_hauberk": "Lórien Marchwarden Mail Hauberk", - "item.me.lorien_soldier_helmet": "Lórien Soldier Helmet", - "item.me.lorien_soldier_mail_hauberk": "Lórien Soldier Mail Hauberk", - "item.me.lorien_soldier_scale_hauberk": "Lórien Soldier Scale Hauberk", - "item.me.lorien_scale_coat": "Lórien Scale Coat", - "item.me.galadhrim_helmet": "Galadhrim Helmet", - "item.me.galadhrim_chestplate": "Galadhrim Chestplate", - "item.me.galadhrim_leggings": "Galadhrim Leggings", - "item.me.galadhrim_boots": "Galadhrim Boots", - "item.me.galadhrim_lord_helmet": "Galadhrim Lord Helmet", - "item.me.galadhrim_lord_chestplate": "Galadhrim Lord Chestplate", - "item.me.galadhrim_lord_leggings": "Galadhrim Lord Leggings", - "item.me.galadhrim_lord_boots": "Galadhrim Lord Boots", - "item.me.orcish_leather_strap": "Orcish Leather Strap", - "item.me.orcish_sandals": "Orcish Sandals", - "item.me.rusted_orcish_mail_coif": "Rusted Orcish Mail Coif", - "item.me.orcish_leather_chestplate": "Orcish Leather Chestplate", - "item.me.orcish_leather_scale_vest": "Orcish Leather Scale Vest", - "item.me.rusted_orcish_mail_hauberk": "Rusted Orcish Mail Hauberk", - "item.me.rusted_orcish_mail_shirt": "Rusted Orcish Mail Shirt", - "item.me.orcish_leather_skirt": "Orcish Leather Skirt", - "item.me.orcish_leg_bracer": "Orcish Leg Bracer", - "item.me.rusted_orcish_mail_coat": "Rusted Orcish Mail Coat", - "item.me.rusted_orcish_reinforced_leather_skirt": "Rusted Orcish Reinforced Leather Skirt", - "item.me.rusted_orcish_reinforced_strip_leather_skirt": "Rusted Orcish Reinforced Strip Leather Skirt", - "item.me.orcish_strip_leather_skirt": "Orcish Strip Leather Skirt", - "item.me.orcish_braced_helmet": "Orcish Braced Helmet", - "item.me.orcish_helmet": "Orcish Helmet", - "item.me.orcish_mail_coif": "Orcish Mail Coif", - "item.me.orcish_mail_hauberk": "Orcish Mail Hauberk", - "item.me.orcish_mail_shirt": "Orcish Mail Shirt", - "item.me.orcish_mail_coat": "Orcish Mail Coat", - "item.me.orcish_reinforced_leather_skirt": "Orcish Reinforced Leather Skirt", - "item.me.orcish_reinforced_strip_leather_skirt": "Orcish Reinforced Strip Leather Skirt", - "item.me.orcish_sallet": "Orcish Sallet", - "item.me.orcish_belly_plate_chestplate": "Orcish Belly Plate Chestplate", - "item.me.orcish_scale_vest": "Orcish Scale Vest", - "item.me.orcish_reinforced_leg_bracer": "Orcish Reinforced Leg Bracer", - "item.me.orcish_black_fur_boots": "Orcish Black Fur Boots", - "item.me.orcish_brown_fur_boots": "Orcish Brown Fur Boots", - "item.me.orcish_gray_fur_boots": "Orcish Gray Fur Boots", - "item.me.orcish_tan_fur_boots": "Orcish Tan Fur Boots", - "item.me.orcish_white_fur_boots": "Orcish White Fur Boots", - "item.me.orcish_braced_sandals": "Orcish Braced Sandals", - "item.me.mordor_helmet": "Mordor Helmet", - "item.me.rusted_mordor_helmet": "Rusted Mordor Helmet", - "item.me.mordor_kettle_hat": "Mordor Kettle Hat", - "item.me.rusted_mordor_kettle_hat": "Rusted Mordor Kettle Hat", - "item.me.mordor_kettle_hat_with_coif": "Mordor Kettle Hat With Coif", - "item.me.rusted_mordor_kettle_hat_with_coif": "Rusted Mordor Kettle Hat With Coif", - "item.me.mordor_nasal_helmet": "Mordor Nasal Helmet", - "item.me.rusted_mordor_nasal_helmet": "Rusted Mordor Nasal Helmet", - "item.me.mordor_crest_helmet": "Mordor Crest Helmet", - "item.me.rusted_mordor_crest_helmet": "Rusted Mordor Crest Helmet", - "item.me.mordor_mandible_helmet": "Mordor Mandible Helmet", - "item.me.rusted_mordor_mandible_helmet": "Rusted Mordor Mandible Helmet", - "item.me.mordor_sallet": "Mordor Sallet", - "item.me.rusted_mordor_sallet": "Rusted Mordor Sallet", - "item.me.mordor_great_helmet": "Mordor Great Helmet", - "item.me.rusted_mordor_great_helmet": "Rusted Mordor Great Helmet", - "item.me.mordor_snout_helmet": "Mordor Snout Helmet", - "item.me.rusted_mordor_snout_helmet": "Rusted Mordor Snout Helmet", - "item.me.mordor_leather_cuirass": "Mordor Leather Cuirass", - "item.me.mordor_painted_cuirass": "Mordor Painted Cuirass", - "item.me.mordor_chestplate": "Mordor Chestplate", - "item.me.rusted_mordor_chestplate": "Rusted Mordor Chestplate", - "item.me.mordor_cuirass": "Mordor Cuirass", - "item.me.rusted_mordor_cuirass": "Rusted Mordor Cuirass", - "item.me.mordor_degraded_gondorian_chestplate": "Mordor Degraded Gondorian Chestplate", - "item.me.mordor_gorget_hauberk": "Mordor Gorget Hauberk", - "item.me.rusted_mordor_gorget_hauberk": "Rusted Mordor Gorget Hauberk", - "item.me.mordor_painted_leather_cuirass": "Mordor Painted Leather Cuirass", - "item.me.mordor_reinforced_coat": "Mordor Reinforced Coat", - "item.me.rusted_mordor_reinforced_coat": "Rusted Mordor Reinforced Coat", - "item.me.mordor_scale_coat": "Mordor Scale Coat", - "item.me.mordor_plate_boots": "Mordor Plate Boots", - "item.me.rusted_mordor_plate_boots": "Rusted Mordor Plate Boots", - "item.me.black_uruk_plate_helmet": "Black Uruk Plate Helmet", - "item.me.black_uruk_face_plate_helmet": "Black Uruk Face Plate Helmet", - "item.me.black_uruk_plate_chestplate": "Black Uruk Plate Chestplate", - "item.me.black_uruk_plate_leggings": "Black Uruk Plate Leggings", - "item.me.black_uruk_plate_boots": "Black Uruk Plate Boots", - "item.me.black_uruk_commander_helmet": "Black Uruk Commander Helmet", - "item.me.black_uruk_commander_chestplate": "Black Uruk Commander Chestplate", - "item.me.mordor_black_numenorean_plate_helmet": "Mordor Black Númenórean Plate Helmet", - "item.me.mordor_black_numenorean_plate_chestplate": "Mordor Black Númenórean Plate Chestplate", - "item.me.mordor_black_numenorean_plate_leggings": "Mordor Black Númenórean Plate Leggings", - "item.me.mordor_black_numenorean_plate_boots": "Mordor Black Númenórean Plate Boots", - "item.me.mordor_black_numenorean_cape": "Mordor Black Númenórean Cape", - "item.me.nazgul_hood": "Nazgûl Hood", - "item.me.nazgul_robes": "Nazgûl Robes", - "item.me.ringwraith_mail_hauberk": "Ringwraith Mail Hauberk", - "item.me.ringwraith_leggings": "Ringwraith Leggings", - "item.me.ringwraith_boots": "Ringwraith Boots", - "item.me.uruk_hai_leather_scout_cap": "Uruk-Hai Leather Scout Cap", - "item.me.uruk_hai_light_helmet": "Uruk-Hai Light Helmet", - "item.me.uruk_hai_painted_light_helmet": "Uruk-Hai Painted Light Helmet", - "item.me.uruk_hai_reinforced_helmet": "Uruk-Hai Reinforced Helmet", - "item.me.uruk_hai_painted_reinforced_helmet": "Uruk-Hai Painted Reinforced Helmet", - "item.me.uruk_hai_soldier_helmet": "Uruk-Hai Soldier Helmet", - "item.me.uruk_hai_painted_soldier_helmet": "Uruk-Hai Painted Soldier Helmet", - "item.me.uruk_hai_leather_chestplate": "Uruk-Hai Leather Chestplate", - "item.me.uruk_hai_painted_leather_chestplate": "Uruk-Hai Painted Leather Chestplate", - "item.me.uruk_hai_leather_hauberk": "Uruk-Hai Leather Hauberk", - "item.me.uruk_hai_mail_hauberk": "Uruk-Hai Mail Hauberk", - "item.me.uruk_hai_cuirass": "Uruk-Hai Cuirass", - "item.me.uruk_hai_mail_coat": "Uruk-Hai Mail Coat", - "item.me.uruk_hai_mail_skirt": "Uruk-Hai Mail Skirt", - "item.me.uruk_hai_boots": "Uruk-Hai Boots", - "item.me.uruk_hai_plate_helmet": "Uruk-Hai Plate Helmet", - "item.me.uruk_hai_painted_plate_helmet": "Uruk-Hai Painted Plate Helmet", - "item.me.uruk_hai_sapper_helmet": "Uruk-Hai Sapper Helmet", - "item.me.uruk_hai_painted_sapper_helmet": "Uruk-Hai Painted Sapper Helmet", - "item.me.uruk_hai_berserker_helmet": "Uruk-Hai Berserker Helmet", - "item.me.uruk_hai_painted_berserker_helmet": "Uruk-Hai Painted Berserker Helmet", - "item.me.uruk_hai_commander_helmet": "Uruk-Hai Commander Helmet", - "item.me.uruk_hai_painted_commander_helmet": "Uruk-Hai Painted Commander Helmet", - "item.me.uruk_hai_plate_chestplate": "Uruk-Hai Plate Chestplate", - "item.me.uruk_hai_plate_leggings": "Uruk-Hai Plate Leggings", - "item.me.uruk_hai_plate_boots": "Uruk-Hai Plate Boots", - "item.me.orthanc_guard_helmet": "Orthanc Guard Helmet", - "item.me.orthanc_commander_helmet": "Orthanc Commander Helmet", - "item.me.orthanc_guard_chestplate": "Orthanc Guard Chestplate", - "item.me.orthanc_guard_leggings": "Orthanc Guard Leggings", - "item.me.orthanc_guard_boots": "Orthanc Guard Boots", - "item.me.orthanc_guard_cape": "Orthanc Guard Cape", - "item.me.gundabad_bone_pauldron": "Gundabad Bone Pauldron", - "item.me.gundabad_seeker_helmet": "Gundabad Seeker Helmet", - "item.me.gundabad_leather_scale_coat": "Gundabad Leather Scale Coat", - "item.me.gundabad_leather_leggings": "Gundabad Leather Leggings", - "item.me.gundabad_laced_boots": "Gundabad Laced Boots", - "item.me.gundabad_skullcap_helmet": "Gundabad Skullcap Helmet", - "item.me.gundabad_mail_coif": "Gundabad Mail Coif", - "item.me.gundabad_mail_hauberk": "Gundabad Mail Hauberk", - "item.me.gundabad_mail_coat": "Gundabad Mail Coat", - "item.me.gundabad_screecher_helmet": "Gundabad Screecher Helmet", - "item.me.gundabad_soldier_helmet": "Gundabad Soldier Helmet", - "item.me.gundabad_reinforced_leather_scale_coat": "Gundabad Leather Reinforced Scale Coat", - "item.me.gundabad_reinforced_leather_vest": "Gundabad Reinforced Leather Vest", - "item.me.gundabad_captain_helmet": "Gundabad Captain Helmet", - "item.me.gundabad_hobgoblin_plate_crested_helmet": "Gundabad Hobgoblin Plate Crested Helmet", - "item.me.gundabad_hobgoblin_plate_large_crest_helmet": "Gundabad Hobgoblin Plate Large Crest Helmet", - "item.me.gundabad_hobgoblin_plate_long_horn_helmet": "Gundabad Hobgoblin Plate Long Horn Helmet", - "item.me.gundabad_hobgoblin_plate_small_horn_helmet": "Gundabad Hobgoblin Plate Small Horn Helmet", - "item.me.gundabad_hobgoblin_plate_chestplate": "Gundabad Hobgoblin Plate Chestplate", - "item.me.gundabad_hobgoblin_mail_coat": "Gundabad Hobgoblin Mail Coat", - "item.me.gundabad_hobgoblin_plated_boots": "Gundabad Hobgoblin Plated Boots", - "item.me.gundabad_hobgoblin_plate_trophy_chestplate": "Gundabad Hobgoblin Plate Trophy Chestplate", - "item.me.warg_mordor_plate_armor": "Warg Mordor Plate Armor", - "item.me.warg_gundabad_plate_armor": "Warg Gundabad Plate Armor", - "item.me.warg_isengard_plate_armor": "Warg Isengard Plate Armor", - "item.me.warg_mordor_mail_armor": "Warg Mordor Mail Armor", - "item.me.warg_reinforced_leather_armor": "Warg Reinforced Leather Armor", - "item.me.warg_leather_armor": "Warg Leather Armor", - "item.me.broadhoof_goat_padded_armor": "Broadhoof Goat Padded Armor", - "item.me.broadhoof_goat_ornamented_padded_armor": "Broadhoof Goat Ornamented Padded Armor", - "item.me.broadhoof_goat_plate_armor": "Broadhoof Goat Plate Armor", - "item.me.round_shield": "Round Shield", - "item.me.round_shield.black": "Black Round Shield", - "item.me.round_shield.blue": "Blue Round Shield", - "item.me.round_shield.brown": "Brown Round Shield", - "item.me.round_shield.cyan": "Cyan Round Shield", - "item.me.round_shield.gray": "Gray Round Shield", - "item.me.round_shield.green": "Green Round Shield", - "item.me.round_shield.light_blue": "Light Blue Round Shield", - "item.me.round_shield.light_gray": "Light Gray Round Shield", - "item.me.round_shield.lime": "Lime Round Shield", - "item.me.round_shield.magenta": "Magenta Round Shield", - "item.me.round_shield.orange": "Orange Round Shield", - "item.me.round_shield.pink": "Pink Round Shield", - "item.me.round_shield.purple": "Purple Round Shield", - "item.me.round_shield.red": "Red Round Shield", - "item.me.round_shield.white": "White Round Shield", - "item.me.round_shield.yellow": "Yellow Round Shield", - "item.me.heater_shield": "Heater Shield", - "item.me.heater_shield.black": "Black Heater Shield", - "item.me.heater_shield.blue": "Blue Heater Shield", - "item.me.heater_shield.brown": "Brown Heater Shield", - "item.me.heater_shield.cyan": "Cyan Heater Shield", - "item.me.heater_shield.gray": "Gray Heater Shield", - "item.me.heater_shield.green": "Green Heater Shield", - "item.me.heater_shield.light_blue": "Light Blue Heater Shield", - "item.me.heater_shield.light_gray": "Light Gray Heater Shield", - "item.me.heater_shield.lime": "Lime Heater Shield", - "item.me.heater_shield.magenta": "Magenta Heater Shield", - "item.me.heater_shield.orange": "Orange Heater Shield", - "item.me.heater_shield.pink": "Pink Heater Shield", - "item.me.heater_shield.purple": "Purple Heater Shield", - "item.me.heater_shield.red": "Red Heater Shield", - "item.me.heater_shield.white": "White Heater Shield", - "item.me.heater_shield.yellow": "Yellow Heater Shield", - "item.me.kite_shield": "Kite Shield", - "item.me.kite_shield.black": "Black Kite Shield", - "item.me.kite_shield.blue": "Blue Kite Shield", - "item.me.kite_shield.brown": "Brown Kite Shield", - "item.me.kite_shield.cyan": "Cyan Kite Shield", - "item.me.kite_shield.gray": "Gray Kite Shield", - "item.me.kite_shield.green": "Green Kite Shield", - "item.me.kite_shield.light_blue": "Light Blue Kite Shield", - "item.me.kite_shield.light_gray": "Light Gray Kite Shield", - "item.me.kite_shield.lime": "Lime Kite Shield", - "item.me.kite_shield.magenta": "Magenta Kite Shield", - "item.me.kite_shield.orange": "Orange Kite Shield", - "item.me.kite_shield.pink": "Pink Kite Shield", - "item.me.kite_shield.purple": "Purple Kite Shield", - "item.me.kite_shield.red": "Red Kite Shield", - "item.me.kite_shield.white": "White Kite Shield", - "item.me.kite_shield.yellow": "Yellow Kite Shield", - "item.me.rohirric_shield": "Bouclier Rohirrique", - "item.me.rohirric_bucking_horse_shield": "Rohirric Bucking Horse Shield", - "item.me.rohirric_galloping_horse_shield": "Rohirric Galloping Horse Shield", - "item.me.rohirric_horse_head_shield": "Rohirric Horse Head Shield", - "item.me.rohirric_plainsman_shield": "Rohirric Plainsman Shield", - "item.me.rohirric_twin_horses_shield": "Rohirric Twin Horses Shield", - "item.me.rohirric_eorling_shield": "Rohirric Eorling Shield", - "item.me.rohirric_ornamented_shield": "Rohirric Ornamented Shield", - "item.me.rohirric_royal_guard_shield": "Rohirric Royal Guard Shield", - "item.me.gondorian_shield": "Bouclier gondorien", - "item.me.gondorian_tower_shield": "Gondorian Tower Shield", - "item.me.gondorian_kings_guard_tower_shield": "Gondorian King's Guard Tower Shield", - "item.me.last_alliance_heirloom_tower_shield": "Last Alliance Heirloom Tower Shield", - "item.me.gondorian_hero_shield": "Gondorian Hero Shield", - "item.me.gondorian_knight_shield": "Gondorian Knight Shield", - "item.me.gondorian_ornamented_knight_shield": "Gondorian Ornamented Knight Shield", - "item.me.dalish_blue_braced_shield": "Dalish Blue Braced Shield", - "item.me.dalish_barding_braced_shield": "Dalish Barding Braced Shield", - "item.me.dalish_blue_oval_shield": "Dalish Blue Oval Shield", - "item.me.dalish_barding_oval_shield": "Dalish Barding Oval Shield", - "item.me.dalish_heavy_shield": "Dalish Heavy Shield", - "item.me.dalish_barding_heavy_shield": "Dalish Barding Heavy Shield", - "item.me.dalish_royal_heavy_shield": "Dalish Royal Heavy Shield", - "item.me.dalish_royal_round_shield": "Dalish Royal Round Shield", - "item.me.dalish_heyday_round_shield": "Dalish Heyday Round Shield", - "item.me.erebor_shield": "Erebor Shield", - "item.me.erebor_cross_shield": "Erebor Cross Shield", - "item.me.erebor_plated_shield": "Erebor Plated Shield", - "item.me.erebor_ornamented_shield": "Erebor Ornamented Shield", - "item.me.erebor_reinforced_shield": "Erebor Reinforced Shield", - "item.me.erebor_buckler_shield": "Erebor Buckler Shield", - "item.me.erebor_tower_shield": "Erebor Tower Shield", - "item.me.erebor_reinforced_tower_shield": "Erebor Reinforced Tower Shield", - "item.me.erebor_ornamented_tower_shield": "Erebor Ornamented Tower Shield", - "item.me.ravenhill_tower_shield": "Ravenhill Tower Shield", - "item.me.ravenhill_reinforced_tower_shield": "Ravenhill Reinforced Tower Shield", - "item.me.ravenhill_ornamented_tower_shield": "Ravenhill Ornamented Tower Shield", - "item.me.shield_of_the_king_under_the_mountain": "Shield Of The King Under The Mountain", - "item.me.lorien_shield": "Bouclier Galadhrim", - "item.me.lorien_laurels_shield": "Lórien Laurels Shield", - "item.me.lorien_mallorn_shield": "Lórien Mallorn Shield", - "item.me.galadhrim_shield": "Galadhirm Shield", - "item.me.galadhrim_lord_shield": "Galadhirm Lord Shield", - "item.me.mordor_wooden_shield": "Mordor Wooden Shield", - "item.me.mordor_painted_wooden_shield": "Mordor Painted Wooden Shield", - "item.me.mordor_round_shield": "Mordor Round Shield", - "item.me.mordor_black_round_shield": "Mordor Black Round Shield", - "item.me.mordor_painted_round_shield": "Mordor Painted Round Shield", - "item.me.mordor_braced_shield": "Mordor Braced Shield", - "item.me.mordor_black_braced_shield": "Mordor Black Braced Shield", - "item.me.mordor_painted_braced_shield": "Mordor Painted Braced Shield", - "item.me.mordor_large_shield": "Mordor Large Shield", - "item.me.mordor_black_large_shield": "Mordor Black Large Shield", - "item.me.mordor_painted_large_shield": "Mordor Painted Large Shield", - "item.me.gondorian_converted_shield": "Gondorian Converted Shield", - "item.me.mordor_heavy_shield": "Mordor Heavy Shield", - "item.me.mordor_painted_heavy_shield": "Mordor Painted Heavy Shield", - "item.me.black_numenorean_tower_shield": "Black Númenórean Shield", - "item.me.uruk_hai_heater_shield": "Uruk-Hai Heater Shield", - "item.me.uruk_hai_shield": "Uruk-Hai Shield", - "item.me.uruk_hai_white_hand_shield": "Uruk-Hai White Hand Shield", - "item.me.uruk_hai_white_palmprint_shield": "Uruk-Hai White Palmprint Shield", - "item.me.uruk_hai_s_rune_shield": "Uruk-Hai S Rune Shield", - "item.me.uruk_hai_siege_shield": "Uruk-Hai Siege Shield", - "item.me.gundabad_wooden_shield": "Gundabad Wooden Shield", - "item.me.gundabad_painted_wooden_shield": "Gundabad Painted Wooden Shield", - "item.me.gundabad_great_eye_painted_wooden_shield": "Gundabad Great Eye Painted Wooden Shield", - "item.me.gundabad_peaks_painted_wooden_shield": "Gundabad Peaks Painted Wooden Shield", - "item.me.gundabad_reinforced_shield": "Gundabad Reinforced Shield", - "item.me.gundabad_heavy_shield": "Gundabad Heavy Shield", - "item.me.held_banner": "Held Banner", - "item.me.rohirric_horse_armor": "Armure de cheval Rohirrim", - "item.me.gondorian_horse_armor": "Armure de cheval Gondorienne", - "item.me.dalish_horse_armor": "Dalish Horse Armor", - "item.me.lorien_horse_armor": "Armure de cheval Galadhrim", - "item.me.lembas": "Lembas", - "item.me.maggoty_bread": "Pain véreux", - "item.me.strawberry": "Fraise", - "item.me.tough_berries": "Baies coriaces", - "item.me.raw_swan": "Cygne cru", - "item.me.cooked_swan": "Cygne rôti", - "item.me.raw_venison": "Raw Venison", - "item.me.cooked_venison": "Cooked Venison", - "item.me.raw_horse": "Cheval cru", - "item.me.cooked_horse": "Cheval cuit", - "item.me.raw_rat": "Rat cru", - "item.me.cooked_rat": "Rat rôti", - "item.me.tomato": "Tomate", - "item.me.bell_pepper": "Poivron", - "item.me.cucumber": "Concombre", - "item.me.garlic": "Ail", - "item.me.leek": "Poireau", - "item.me.lettuce": "Laitue", - "item.me.onion": "Oignon", - "item.me.berry_pie": "Tarte aux baies", - "item.me.boiled_egg": "Œuf Dur", - "item.me.fish_stew": "Ragoût de poisson", - "item.me.meat_bowl": "Bol de viande", - "item.me.meat_egg_meal": "Repas d'œuf et viande", - "item.me.meat_skewer": "Brochette de viande", - "item.me.cooked_meat_skewer": "Broche de viande rôti", - "item.me.poultry_meal": "Repas de volaille", - "item.me.rat_skewer": "Brochette de rat", - "item.me.cooked_rat_skewer": "Brochette de rat cuit", - "item.me.vegetable_skewer": "Brochette de légumes", - "item.me.cooked_vegetable_skewer": "Broche de légumes rôti", - "item.me.vegetable_soup": "Soupe de légumes", - "item.me.sack_of_horsefeed": "Sack of Horse Feed", - "item.me.glowworm_bottle": "Bouteille de ver lumineux", - "item.me.straw": "Paille", - "item.me.swan_feather": "Plume de cygne", - "item.me.copper_coin": "Pièce de cuivre", - "item.me.silver_coin": "Pièce d'argent", - "item.me.dwarven_key": "Dwarven Key", - "item.me.tomato_seeds": "Graines de tomate", - "item.me.bell_pepper_seeds": "Graines de poivron", - "item.me.cucumber_seeds": "Graines de concombre", - "item.me.lettuce_seeds": "Graines de laitue", - "item.me.pipeweed_seeds": "Graines d'herbe à pipe", - "item.me.flax_seeds": "Graines de lin", - "item.me.pipeweed": "Herbe à pipe", - "item.me.dried_pipeweed": "Dried Pipeweed", - "item.me.flax": "Lin", - "item.me.red_agate_shard": "Éclat d'agate rouge", - "item.me.citrine_shard": "Éclat de citrine", - "item.me.quartz_shard": "Éclat de quartz", - "item.me.barrow_wight_spawn_egg": "Œuf d'apparition de spectre", - "item.me.broadhoof_goat_spawn_egg": "Broadhoof Goat Spawn Egg", - "item.me.warg_spawn_egg": "Œuf d'apparition de Ouargue", - "item.me.stone_troll_spawn_egg": "Œuf d'apparition de trolls de pierre", - "item.me.snow_troll_spawn_egg": "Œuf d'apparition de trolls des neiges", - "item.me.troll_statue": "Statue de troll", - "item.me.swan_spawn_egg": "Œuf d'apparition de cygne", - "item.me.hobbit_civilian_spawn_egg": "Œuf d'apparition de civil Hobbit", - "item.me.hobbit_bounder_spawn_egg": "Œuf d'apparition de Frontalier Hobbit", - "item.me.hobbit_shirriff_spawn_egg": "Œuf d'apparition de Shirriff Hobbit", - "item.me.gondorian_militia_spawn_egg": "Œuf d'apparition de Milicien Gondorien", - "item.me.gondorian_soldier_spawn_egg": "Œuf d'apparition de Soldat Gondorien", - "item.me.gondorian_knight_spawn_egg": "Œuf d'apparition de Chevalier Gondorien", - "item.me.gondorian_veteran_spawn_egg": "Œuf d'apparition de Vétéran Gondorien", - "item.me.gondorian_leader_spawn_egg": "Œuf d'apparition de Capitaine Gondorien", - "item.me.rohirrim_militia_spawn_egg": "Œuf d'apparition de Milicien Rohirrim", - "item.me.rohirrim_soldier_spawn_egg": "Œuf d'apparition de Soldat Rohirrim", - "item.me.rohirrim_knight_spawn_egg": "Œuf d'apparition de Chevalier Rohirrim", - "item.me.rohirrim_veteran_spawn_egg": "Œuf d'apparition de Vétéran Rohirrim", - "item.me.rohirrim_leader_spawn_egg": "Œuf d'apparition de Capitaine Rohirrim", - "item.me.dalish_militia_spawn_egg": "Dalish Militia Spawn Egg", - "item.me.dalish_soldier_spawn_egg": "Dalish Soldier Spawn Egg", - "item.me.dalish_knight_spawn_egg": "Dalish Knight Spawn Egg", - "item.me.dalish_veteran_spawn_egg": "Dalish Veteran Spawn Egg", - "item.me.dalish_leader_spawn_egg": "Dalish Leader Spawn Egg", - "item.me.longbeard_militia_spawn_egg": "Œuf d'apparition de Milicien Longue-Barbe", - "item.me.longbeard_soldier_spawn_egg": "Œuf d'apparition de Soldat Longue-Barbe", - "item.me.longbeard_elite_spawn_egg": "Œuf d'apparition d'Elite Longue-Barbe", - "item.me.longbeard_veteran_spawn_egg": "Œuf d'apparition de Vétéran Longue-Barbe", - "item.me.longbeard_leader_spawn_egg": "Œuf d'apparition de Capitaine Longue-Barbe", - "item.me.lorien_militia_spawn_egg": "Œuf d'apparition de Milicien Galadhrim", - "item.me.lorien_soldier_spawn_egg": "Œuf d'apparition de Soldat Galadhrim", - "item.me.lorien_knight_spawn_egg": "Œuf d'apparition de Chevalier Galadhrim", - "item.me.lorien_veteran_spawn_egg": "Œuf d'apparition de Vétéran Galadhrim", - "item.me.lorien_leader_spawn_egg": "Œuf d'apparition de Capitaine Galadhrim", - "item.me.mordor_orc_snaga_spawn_egg": "Œuf d'apparition de Snaga du Mordor", - "item.me.mordor_orc_soldier_spawn_egg": "Œuf d'apparition d'Orc du Mordor", - "item.me.mordor_black_uruk_soldier_spawn_egg": "Œuf d'apparition de Soldat Uruk Noir du Mordor", - "item.me.mordor_black_uruk_veteran_spawn_egg": "Œuf d'apparition de Vétéran Uruk Noir du Mordor", - "item.me.mordor_black_uruk_leader_spawn_egg": "Œuf d'apparition de Capitaine Uruk Noir du Mordor", - "item.me.misty_goblin_snaga_spawn_egg": "Œuf d'apparition de Snaga des Monts-Brumeux", - "item.me.misty_goblin_warrior_spawn_egg": "Œuf d'apparition de Guerrier gobelin des Monts-Brumeux", - "item.me.misty_hobgoblin_soldier_spawn_egg": "Œuf d'apparition de Soldat Hobgoblin des Monts-Brumeux", - "item.me.misty_hobgoblin_veteran_spawn_egg": "Œuf d'apparition de Vétéran Hobgoblin des Monts-Brumeux", - "item.me.misty_hobgoblin_leader_spawn_egg": "Œuf d'apparition de Capitaine Hobgoblin des Monts-Brumeux", - "item.me.isengard_orc_snaga_spawn_egg": "Isengard Orc Snaga Spawn Egg", - "item.me.isengard_orc_warrior_spawn_egg": "Isengard Orc Warrior Spawn Egg", - "item.me.isengard_uruk_hai_soldier_spawn_egg": "Isengard Uruk-Hai Soldier Spawn Egg", - "item.me.isengard_uruk_hai_veteran_spawn_egg": "Isengard Uruk-Hai Veteran Spawn Egg", - "item.me.isengard_uruk_hai_leader_spawn_egg": "Isengard Uruk-Hai Leader Spawn Egg", - "item.me.bandit_militia_spawn_egg": "Œuf d'apparition de Milicien Bandit", - "item.me.bandit_soldier_spawn_egg": "Œuf d'apparition de Soldat Bandit", - "item.me.bandit_chieftain_spawn_egg": "Bandit Chieftain Spawn Egg", - "item.me.mirkwood_spider_spawn_egg": "Oeuf d'apparition d'araignée de la Fôret Noire", - "item.me.snail_spawn_egg": "Œuf d'apparition d'Escargot", - "item.me.pheasant_spawn_egg": "Oeuf d'apparition de Faisan", - "item.me.deer_spawn_egg": "Œuf d'apparition de cerf", - "item.me.fire_of_orthanc": "Fire of Orthanc", - "item.me.pebble": "Caillou", - "item.me.pinecone": "Pomme de pin", - "item.me.lit_pinecone": "Pomme de pin Incandescente", - "entity.me.broadhoof_goat": "Broadhoof Goat", - "entity.me.warg": "Warg", - "entity.me.snow_troll": "Troll des neiges", - "entity.me.stone_troll": "Troll de pierre", - "entity.me.petrified_troll": "Troll pétrifié", - "entity.me.swan": "Cygne", - "entity.me.pheasant": "Faisan", - "entity.me.snail": "Escargot", - "entity.me.deer": "Cerf", - "entity.me.barrow_wight": "Barrow Wight", - "entity.me.hobbit_civilian": "Civil Hobbit", - "entity.me.hobbit_bounder": "Frontalier Hobbit", - "entity.me.hobbit_shirriff": "Shirriff Hobbit", - "entity.me.gondorian_militia": "Milicien Gondorien", - "entity.me.gondorian_soldier": "Soldat Gondorien", - "entity.me.gondorian_knight": "Chevalier Gondorien", - "entity.me.gondorian_veteran": "Vétéran Gondorien", - "entity.me.gondorian_leader": "Capitaine Gondorien", - "entity.me.rohirrim_militia": "Milicien Rohirrim", - "entity.me.rohirrim_soldier": "Soldat Rohirrim", - "entity.me.rohirrim_knight": "Chevalier Rohirrim", - "entity.me.rohirrim_veteran": "Vétéran Rohirrim", - "entity.me.rohirrim_leader": "Capitaine Rohirrim", - "entity.me.dalish_militia": "Dalish Militia", - "entity.me.dalish_soldier": "Dalish Soldier", - "entity.me.dalish_knight": "Dalish Knight", - "entity.me.dalish_veteran": "Dalish Veteran", - "entity.me.dalish_leader": "Dalish Leader", - "entity.me.longbeard_militia": "Milicien Longue-Barbe", - "entity.me.longbeard_soldier": "Soldat Longue-Barbe", - "entity.me.longbeard_elite": "Élite Longue-Barbe", - "entity.me.longbeard_veteran": "Vétéran Longue-Barbe", - "entity.me.longbeard_leader": "Capitaine Longue-Barbe", - "entity.me.lorien_militia": "Milicien Galadhrim", - "entity.me.lorien_soldier": "Soldat Galadhrim", - "entity.me.lorien_knight": "Chevalier Galadhrim", - "entity.me.lorien_veteran": "Vétéran Galadhrim", - "entity.me.lorien_leader": "Capitaine Galadhrim", - "entity.me.mordor_orc_snaga": "Snaga du Mordor", - "entity.me.mordor_orc_soldier": "Orc du Mordor", - "entity.me.mordor_black_uruk_soldier": "Soldat Uruk Noir du Mordor", - "entity.me.mordor_black_uruk_veteran": "Vétéran Uruk Noir du Mordor", - "entity.me.mordor_black_uruk_leader": "Capitaine Uruk Noir du Mordor", - "entity.me.misty_goblin_snaga": "Snaga des Monts-Brumeux", - "entity.me.misty_goblin_warrior": "Guerrier gobelin des Monts-Brumeux", - "entity.me.misty_hobgoblin_soldier": "Soldat Hobgoblin des Monts-Brumeux", - "entity.me.misty_hobgoblin_veteran": "Vétéran Hobgoblin des Monts-Brumeux", - "entity.me.misty_hobgoblin_leader": "Capitaine Hobgoblin des Monts-Brumeux", - "entity.me.isengard_orc_snaga": "Isengard Orc Snaga", - "entity.me.isengard_orc_warrior": "Isengard Orc Warrior", - "entity.me.isengard_uruk_hai_soldier": "Isengard Uruk-Hai Soldier", - "entity.me.isengard_uruk_hai_veteran": "Isengard Uruk-Hai Veteran", - "entity.me.isengard_uruk_hai_leader": "Isengard Uruk-Hai Leader", - "entity.me.bandit_militia": "Milicien Bandit", - "entity.me.bandit_soldier": "Soldat Bandit", - "entity.me.bandit_chieftain": "Bandit Chieftain", - "entity.me.mirkwood_spider": "Araignée de la Fôret Noire", - "entity.me.pebble": "Caillou", - "entity.me.pinecone": "Pomme de pin", - "entity.me.lit_pinecone": "Pomme de pin Incandescente", - "block.me.stone_trapdoor": "Trappe en pierre", - "block.me.granite_trapdoor": "Granite Trapdoor", - "block.me.diorite_trapdoor": "Diorite Trapdoor", - "block.me.andesite_trapdoor": "Andesite Trapdoor", - "block.me.deepslate_trapdoor": "Deepslate Trapdoor", - "block.me.tuff_trapdoor": "Tuff Trapdoor", - "block.me.basalt_trapdoor": "Basalt Trapdoor", - "block.me.blackstone_trapdoor": "Trappe en pierre noire", - "block.me.old_podzol": "Vieux podzol", - "block.me.lorien_podzol": "Lórien Podzol", - "block.me.stone_mycelium": "Mycélium pierreux", - "block.me.ash_block": "Bloc de cendre", - "block.me.straw_block": "Bloc de paille", - "block.me.straw_stairs": "Escaliers en paille", - "block.me.straw_slab": "Dalle en paille", - "block.me.straw_vertical_slab": "Dalle verticale en paille", - "block.me.straw_wall": "Muret en paille", - "block.me.reed_block": "Bloc de roseaux", - "block.me.reed_stairs": "Escalier en roseau", - "block.me.reed_slab": "Dalle en roseau", - "block.me.reed_vertical_slab": "Dalle verticale en roseau", - "block.me.reed_wall": "Muret en roseaux", - "block.me.wild_pipeweed": "Herbe à fumer sauvage", - "block.me.wild_flax": "Lin sauvage", - "block.me.wild_tomato": "Tomate sauvage", - "block.me.wild_bell_pepper": "Poivron sauvage", - "block.me.wild_cucumber": "Concombre sauvage", - "block.me.wild_leek": "Poireau sauvage", - "block.me.wild_lettuce": "Laitue sauvage", - "block.me.wild_garlic": "Ail sauvage", - "block.me.wild_onion": "Oignon Sauvage", - "block.me.wild_potato": "Patate Sauvage", - "block.me.wild_carrot": "Carotte sauvage", - "block.me.wild_beetroot": "Betterave sauvage", - "block.me.lead_glass": "Verre plombé", - "block.me.black_stained_lead_glass": "Verre plombé noir", - "block.me.blue_stained_lead_glass": "Verre plombé bleu", - "block.me.brown_stained_lead_glass": "Verre plombé marron", - "block.me.cyan_stained_lead_glass": "Verre plombé cyan", - "block.me.gray_stained_lead_glass": "Verre plombé gris", - "block.me.green_stained_lead_glass": "Verre plombé vert", - "block.me.light_blue_stained_lead_glass": "Verre plombé bleu clair", - "block.me.light_gray_stained_lead_glass": "Verre plombé gris clair", - "block.me.lime_stained_lead_glass": "Verre plombé vert clair", - "block.me.magenta_stained_lead_glass": "Verre plombé magenta", - "block.me.orange_stained_lead_glass": "Verre plombé orange", - "block.me.pink_stained_lead_glass": "Verre plombé rose", - "block.me.purple_stained_lead_glass": "Verre plombé violet", - "block.me.red_stained_lead_glass": "Verre plombé rouge", - "block.me.white_stained_lead_glass": "Verre plombé blanc", - "block.me.yellow_stained_lead_glass": "Verre plombé jaune", - "block.me.lead_glass_pane": "Vitre plombée", - "block.me.black_stained_lead_glass_pane": "Vitre plombée noire", - "block.me.blue_stained_lead_glass_pane": "Vitre plombée bleu", - "block.me.brown_stained_lead_glass_pane": "Vitre plombée marron", - "block.me.cyan_stained_lead_glass_pane": "Vitre plombée cyan", - "block.me.gray_stained_lead_glass_pane": "Vitre plombée grise", - "block.me.green_stained_lead_glass_pane": "Vitre plombée verte", - "block.me.light_blue_stained_lead_glass_pane": "Vitre plombée bleu clair", - "block.me.light_gray_stained_lead_glass_pane": "Vitre plombée gris clair", - "block.me.lime_stained_lead_glass_pane": "Vitre plombée vert clair", - "block.me.magenta_stained_lead_glass_pane": "Vitre plombée magenta", - "block.me.orange_stained_lead_glass_pane": "Vitre plombée orange", - "block.me.pink_stained_lead_glass_pane": "Vitre plombée rose", - "block.me.purple_stained_lead_glass_pane": "Vitre plombée violet", - "block.me.red_stained_lead_glass_pane": "Vitre tintée rouge au plomb", - "block.me.white_stained_lead_glass_pane": "Vitre plombée blanche", - "block.me.yellow_stained_lead_glass_pane": "Vitre plombée jaune", - "block.me.stone_vertical_slab": "Dalle verticale en roche", - "block.me.stone_pillar": "Pilier en Roche", - "block.me.mossy_stone_pillar": "Pilier en roche moussue", - "block.me.cracked_stone_pillar": "Pilier en roche craquelé", - "block.me.chiseled_smooth_stone": "Pierre lisse sculptée", - "block.me.polished_stone": "Polished Stone", - "block.me.polished_stone_slab": "Polished Stone Slab", - "block.me.polished_stone_vertical_slab": "Polished Stone Vertical Slab", - "block.me.polished_stone_stairs": "Polished Stone Stairs", - "block.me.polished_stone_wall": "Polished Stone Wall", - "block.me.mossy_polished_stone": "Mossy Polished Stone", - "block.me.mossy_polished_stone_slab": "Mossy Polished Stone Slab", - "block.me.mossy_polished_stone_vertical_slab": "Mossy Polished Stone Vertical Slab", - "block.me.mossy_polished_stone_stairs": "Mossy Polished Stone Stairs", - "block.me.mossy_polished_stone_wall": "Mossy Polished Stone Wall", - "block.me.cracked_polished_stone": "Cracked Polished Stone", - "block.me.cracked_polished_stone_slab": "Cracked Polished Stone Slab", - "block.me.cracked_polished_stone_vertical_slab": "Cracked Polished Stone Vertical Slab", - "block.me.cracked_polished_stone_stairs": "Cracked Polished Stone Stairs", - "block.me.cracked_polished_stone_wall": "Cracked Polished Stone Wall", - "block.me.stone_tiles": "Roche carrelée", - "block.me.stone_tiles_slab": "Dalle de roche carrelée", - "block.me.stone_tiles_vertical_slab": "Dalle verticale en roche carrelée", - "block.me.stone_tiles_stairs": "Escalier en roche carrelée", - "block.me.stone_tiles_wall": "Muret en roche carrelée", - "block.me.mossy_stone_tiles": "Roche carrelée Moussue", - "block.me.mossy_stone_tiles_slab": "Dalle de roche carrelée moussue", - "block.me.mossy_stone_tiles_vertical_slab": "Dalle verticale en roche carrelée moussue", - "block.me.mossy_stone_tiles_stairs": "Escalier en roche carrelée moussue", - "block.me.mossy_stone_tiles_wall": "Mossy Stone Tiles Wall", - "block.me.cracked_stone_tiles": "Pilier de roche craquelé", - "block.me.cracked_stone_tiles_slab": "Cracked Stone Tiles Slab", - "block.me.cracked_stone_tiles_vertical_slab": "Cracked Stone Tiles Vertical Slab", - "block.me.cracked_stone_tiles_stairs": "Cracked Stone Tiles Stairs", - "block.me.cracked_stone_tiles_wall": "Cracked Stone Tiles Wall", - "block.me.mossy_smooth_stone": "Roche lisse moussue", - "block.me.mossy_smooth_stone_slab": "Dalle de roche lisse moussue", - "block.me.mossy_smooth_stone_vertical_slab": "Dalle verticale de roche lisse moussue", - "block.me.mossy_smooth_stone_stairs": "Escalier en roche lisse moussue", - "block.me.mossy_smooth_stone_wall": "Muret en roche lisse moussue", - "block.me.cracked_smooth_stone": "Roche lisse carrelé craquelée", - "block.me.cracked_smooth_stone_slab": "Dalle en roche lisse craquelée", - "block.me.cracked_smooth_stone_vertical_slab": "Dalle verticale de roche lisse craquelée", - "block.me.cracked_smooth_stone_stairs": "Escalier en roche lisse craquelée", - "block.me.cracked_smooth_stone_wall": "Muret en roche lisse craquelé", - "block.me.old_stone": "Old Stone", - "block.me.old_stone_slab": "Old Stone Slab", - "block.me.old_stone_vertical_slab": "Old Stone Vertical Slab", - "block.me.old_stone_stairs": "Old Stone Stairs", - "block.me.old_stone_wall": "Old Stone Wall", - "block.me.stone_brickwork": "Stone Brickwork", - "block.me.stone_brickwork_slab": "Stone Brickwork Slab", - "block.me.stone_brickwork_vertical_slab": "Stone Brickwork Vertical Slab", - "block.me.stone_brickwork_stairs": "Stone Brickwork Stairs", - "block.me.stone_brickwork_wall": "Stone Brickwork Wall", - "block.me.chiseled_stone": "Chiseled Stone", - "block.me.chiseled_polished_stone": "Chiseled Polished Stone", - "block.me.chiseled_stone_tiles": "Chiseled Stone Tiles", - "block.me.stone_rocks": "Stone Rocks", - "block.me.stone_stool": "Tabouret en pierre", - "block.me.stone_table": "Table en pierre", - "block.me.stone_chair": "Chaise en pierre", - "block.me.old_deepslate": "Old Deepslate", - "block.me.old_deepslate_slab": "Old Deepslate Slab", - "block.me.old_deepslate_vertical_slab": "Old Deepslate Vertical Slab", - "block.me.old_deepslate_stairs": "Old Deepslate Stairs", - "block.me.old_deepslate_wall": "Old Deepslate Wall", - "block.me.smooth_deepslate": "Smooth Deepslate", - "block.me.smooth_deepslate_slab": "Smooth Deepslate Slab", - "block.me.smooth_deepslate_vertical_slab": "Smooth Deepslate Vertical Slab", - "block.me.smooth_deepslate_stairs": "Smooth Deepslate Stairs", - "block.me.smooth_deepslate_wall": "Smooth Deepslate Wall", - "block.me.mossy_smooth_deepslate": "Mossy Smooth Deepslate", - "block.me.mossy_smooth_deepslate_slab": "Mossy Smooth Deepslate Slab", - "block.me.mossy_smooth_deepslate_vertical_slab": "Mossy Smooth Deepslate Vertical Slab", - "block.me.mossy_smooth_deepslate_stairs": "Mossy Smooth Deepslate Stairs", - "block.me.mossy_smooth_deepslate_wall": "Mossy Smooth Deepslate Wall", - "block.me.cracked_smooth_deepslate": "Cracked Smooth Deepslate", - "block.me.cracked_smooth_deepslate_slab": "Cracked Smooth Deepslate Slab", - "block.me.cracked_smooth_deepslate_vertical_slab": "Cracked Smooth Deepslate Vertical Slab", - "block.me.cracked_smooth_deepslate_stairs": "Cracked Smooth Deepslate Stairs", - "block.me.cracked_smooth_deepslate_wall": "Cracked Smooth Deepslate Wall", - "block.me.cobbled_deepslate_vertical_slab": "Dalle verticale de pierre des abîmes", - "block.me.mossy_cobbled_deepslate": "Mossy Cobbled Deepslate", - "block.me.mossy_cobbled_deepslate_slab": "Mossy Cobbled Deepslate Slab", - "block.me.mossy_cobbled_deepslate_vertical_slab": "Mossy Cobbled Deepslate Vertical Slab", - "block.me.mossy_cobbled_deepslate_stairs": "Mossy Cobbled Deepslate Stairs", - "block.me.mossy_cobbled_deepslate_wall": "Mossy Cobbled Deepslate Wall", - "block.me.deepslate_pillar": "Pilier d'ardoise des abîmes", - "block.me.mossy_deepslate_pillar": "Pilier d'ardoise des abîmes moussue", - "block.me.cracked_deepslate_pillar": "Pilier d'ardoise des abîmes craquelée", - "block.me.deepslate_brick_vertical_slab": "Dalle verticale en ardoise des abîmes taillée", - "block.me.mossy_deepslate_bricks": "Ardoise des abîmes taillée moussue", - "block.me.mossy_deepslate_bricks_slab": "Dalle d'ardoise des abîmes taillée moussue", - "block.me.mossy_deepslate_bricks_vertical_slab": "Dalle verticale en ardoise des abîmes taillée", - "block.me.mossy_deepslate_bricks_stairs": "Escalier en ardoise des abîmes taillée moussue", - "block.me.mossy_deepslate_bricks_wall": "Mossy Deepslate Bricks Wall", - "block.me.deepslate_tile_vertical_slab": "Deepslate Tile verical Slab", - "block.me.mossy_deepslate_tiles": "Ardoise des abîmes carrelée moussue", - "block.me.mossy_deepslate_tiles_slab": "Dalle en ardoise des abîmes carrelée moussue", - "block.me.mossy_deepslate_tiles_vertical_slab": "Dalle verticale en ardoise des abîmes carrelée moussue", - "block.me.mossy_deepslate_tiles_stairs": "Escalier en ardoise des abîmes carrelée moussue", - "block.me.mossy_deepslate_tiles_wall": "Muret en ardoise des abîmes carrelée moussue", - "block.me.polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie moussue", - "block.me.mossy_polished_deepslate": "Ardoise des abîmes polie moussue", - "block.me.mossy_polished_deepslate_slab": "Dalle en ardoise des abîmes polie moussue", - "block.me.mossy_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie moussue", - "block.me.mossy_polished_deepslate_stairs": "Escaliers en ardoise des abîmes polie moussue", - "block.me.mossy_polished_deepslate_wall": "Muret en ardoise des abîmes polie moussue", - "block.me.cracked_polished_deepslate": "Ardoise des abîmes polie craquelée", - "block.me.cracked_polished_deepslate_slab": "Dalle en ardoise des abîmes polie craquelée", - "block.me.cracked_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie craquelée", - "block.me.cracked_polished_deepslate_stairs": "Escaliers en ardoise des abîmes polie craquelée", - "block.me.cracked_polished_deepslate_wall": "Muret en ardoise des abîmes polie craquelée", - "block.me.chiseled_polished_deepslate": "Chiseled Polished Deepslate", - "block.me.chiseled_deepslate_bricks": "Chiseled Deepslate Bricks", - "block.me.chiseled_deepslate_tiles": "Chiseled Deepslate Tiles", - "block.me.chiseled_smooth_deepslate": "Chiseled Smooth Deepslate", - "block.me.deepslate_brickwork": "Deepslate Brickwork", - "block.me.deepslate_brickwork_slab": "Deepslate Brickwork Slab", - "block.me.deepslate_brickwork_vertical_slab": "Deepslate Brickwork Vertical Slab", - "block.me.deepslate_brickwork_stairs": "Deepslate Brickwork Stairs", - "block.me.deepslate_brickwork_wall": "Deepslate Brickwork Wall", - "block.me.deepslate_pressure_plate": "Deepslate Pressure Plate", - "block.me.deepslate_button": "Deepslate Button", - "block.me.deepslate_rocks": "Deepslate Rocks", - "block.me.deepslate_stool": "Tabouret en ardoise des abîmes", - "block.me.deepslate_table": "Table en ardoise des abîmes", - "block.me.deepslate_chair": "Chaise en ardoise des abîmes", - "block.me.ashen_cobblestone": "Pierre cendrée", - "block.me.ashen_cobblestone_slab": "Dalle de pierre cendrée", - "block.me.ashen_cobblestone_vertical_slab": "Dalle verticale de pierre cendrée", - "block.me.ashen_cobblestone_stairs": "Escaliers en pierre cendrée", - "block.me.ashen_cobblestone_wall": "Muret en pierre cendrée", - "block.me.ashen_stone": "Roche cendrée", - "block.me.ashen_stone_slab": "Dalle cendrée", - "block.me.ashen_stone_vertical_slab": "Dalle verticale cendrée", - "block.me.ashen_stone_stairs": "Escaliers cendrés", - "block.me.ashen_stone_wall": "Muret cendré", - "block.me.ashen_pillar": "Pilier cendré", - "block.me.mossy_ashen_pillar": "Pilier cendré moussue", - "block.me.cracked_ashen_pillar": "Pilier cendré craquelé", - "block.me.ashen_bricks": "Briques cendrées", - "block.me.ashen_bricks_slab": "Dalle en briques cendrée", - "block.me.ashen_bricks_vertical_slab": "Dalle verticale en briques cendrée", - "block.me.ashen_bricks_stairs": "Escaliers en briques cendrées", - "block.me.ashen_bricks_wall": "Muret en briques cendrées", - "block.me.mossy_ashen_bricks": "Briques cendrée moussues", - "block.me.mossy_ashen_bricks_slab": "Dalle en briques cendrée moussues", - "block.me.mossy_ashen_bricks_vertical_slab": "Dalle verticale en briques cendrée moussues", - "block.me.mossy_ashen_bricks_stairs": "Escaliers en briques cendrées moussues", - "block.me.mossy_ashen_bricks_wall": "Muret en briques cendrées moussues", - "block.me.cracked_ashen_bricks": "Briques cendrées craquelée", - "block.me.cracked_ashen_bricks_slab": "Dalle en briques cendrées craquelée", - "block.me.cracked_ashen_bricks_vertical_slab": "Dalle verticale en briques cendrée craquelée", - "block.me.cracked_ashen_bricks_stairs": "Escaliers en briques cendrées craquelée", - "block.me.cracked_ashen_bricks_wall": "Muret en briques cendrées craquelée", - "block.me.ashen_tiles": "Pierre cendrée carrelée", - "block.me.ashen_tiles_slab": "Dalle en pierre cendrée carrelée", - "block.me.ashen_tiles_vertical_slab": "Dalle verticale en pierre cendrée carrelée", - "block.me.ashen_tiles_stairs": "Escaliers en pierres cendrée carrelées", - "block.me.ashen_tiles_wall": "Muret en pierre cendrée carrelée", - "block.me.mossy_ashen_tiles": "Pierre cendrée carrelée moussue", - "block.me.mossy_ashen_tiles_slab": "Dalle en pierre cendrée carrelée moussue", - "block.me.mossy_ashen_tiles_vertical_slab": "Dalle verticale en pierre cendrée carrelée moussue", - "block.me.mossy_ashen_tiles_stairs": "Escalier en pierre cendrée carrelée moussue", - "block.me.mossy_ashen_tiles_wall": "Muret en pierre cendrée carrelée moussue", - "block.me.cracked_ashen_tiles": "Pierre cendrée carrelée craquelée", - "block.me.cracked_ashen_tiles_slab": "Dalle en pierre cendrée carrelée craquelée", - "block.me.cracked_ashen_tiles_vertical_slab": "Dalle verticale en pierre cendrée carrelée craquelée", - "block.me.cracked_ashen_tiles_stairs": "Escaliers en pierre cendrée carrelée craquelée", - "block.me.cracked_ashen_tiles_wall": "Muret en pierre cendrée carrelée craquelée", - "block.me.polished_ashen_stone": "Roche cendrée polie", - "block.me.polished_ashen_stone_slab": "Dalle en roche cendrée polie", - "block.me.polished_ashen_stone_vertical_slab": "Dalle verticale en pierre cendrée polie craquelée", - "block.me.polished_ashen_stone_stairs": "Escalier en roche cendrée polie", - "block.me.polished_ashen_stone_wall": "Muret en roche cendrée polie", - "block.me.mossy_polished_ashen_stone": "Mossy Polished Ashen Stone", - "block.me.mossy_polished_ashen_stone_slab": "Mossy Polished Ashen Slab", - "block.me.mossy_polished_ashen_stone_vertical_slab": "Mossy Polished Ashen Vertical Slab", - "block.me.mossy_polished_ashen_stone_stairs": "Mossy Polished Ashen Stairs", - "block.me.mossy_polished_ashen_stone_wall": "Mossy Polished Ashen Wall", - "block.me.cracked_polished_ashen": "Cracked Polished Ashen Stone", - "block.me.cracked_polished_ashen_slab": "Dalle en roche cendrée polie craquelée", - "block.me.cracked_polished_ashen_vertical_slab": "Dalle verticale en pierre cendrée polie craquelée", - "block.me.cracked_polished_ashen_stairs": "Escaliers en roche cendrée polie craquelée", - "block.me.cracked_polished_ashen_wall": "Muret en roche cendrée polie craquelée", - "block.me.chiseled_polished_ashen_stone": "Roche cendrée polie sculptée", - "block.me.chiseled_ashen_bricks": "Briques cendrées sculptée", - "block.me.ashen_stone_pressure_plate": "Plaque de pression en pierre cendrée", - "block.me.ashen_stone_button": "Bouton en pierre cendrée", - "block.me.ashen_stone_trapdoor": "Ashen Stone Trapdoor", - "block.me.ashen_stone_rocks": "Ashen Stone Rocks", - "block.me.ashen_stone_stool": "Ashen Stone Stool", - "block.me.ashen_stone_table": "Ashen Stone Table", - "block.me.ashen_stone_chair": "Ashen Stone Chair", - "block.me.cobbled_pumice": "Cobbled Pumice", - "block.me.cobbled_pumice_slab": "Cobbled Pumice Slab", - "block.me.cobbled_pumice_vertical_slab": "Cobbled Pumice Vertical Slab", - "block.me.cobbled_pumice_stairs": "Cobbled Pumice Stairs", - "block.me.cobbled_pumice_wall": "Cobbled Pumice Wall", - "block.me.mossy_cobbled_pumice": "Mossy Cobbled Pumice", - "block.me.mossy_cobbled_pumice_slab": "Mossy Cobbled Pumice Slab", - "block.me.mossy_cobbled_pumice_vertical_slab": "Mossy Cobbled Pumice Vertical Slab", - "block.me.mossy_cobbled_pumice_stairs": "Mossy Cobbled Pumice Stairs", - "block.me.mossy_cobbled_pumice_wall": "Mossy Cobbled Pumice Wall", - "block.me.pumice": "Pumice", - "block.me.pumice_slab": "Pumice Slab", - "block.me.pumice_vertical_slab": "Pumice Vertical Slab", - "block.me.pumice_stairs": "Pumice Stairs", - "block.me.pumice_wall": "Pumice Wall", - "block.me.pumice_pillar": "Pumice Pillar", - "block.me.mossy_pumice_pillar": "Mossy Pumice Pillar", - "block.me.cracked_pumice_pillar": "Cracked Pumice Pillar", - "block.me.pumice_bricks": "Pumice Bricks", - "block.me.pumice_bricks_slab": "Pumice Bricks Slab", - "block.me.pumice_bricks_vertical_slab": "Pumice Bricks Vertical Slab", - "block.me.pumice_bricks_stairs": "Pumice Bricks Stairs", - "block.me.pumice_bricks_wall": "Pumice Bricks Wall", - "block.me.mossy_pumice_bricks": "Mossy Pumice Bricks", - "block.me.mossy_pumice_bricks_slab": "Mossy Pumice Bricks Slab", - "block.me.mossy_pumice_bricks_vertical_slab": "Mossy Pumice Bricks Vertical Slab", - "block.me.mossy_pumice_bricks_stairs": "Mossy Pumice Bricks Stairs", - "block.me.mossy_pumice_bricks_wall": "Mossy Pumice Bricks Wall", - "block.me.cracked_pumice_bricks": "Cracked Pumice Bricks", - "block.me.cracked_pumice_bricks_slab": "Cracked Pumice Bricks Slab", - "block.me.cracked_pumice_bricks_vertical_slab": "Cracked Pumice Bricks Vertical Slab", - "block.me.cracked_pumice_bricks_stairs": "Cracked Pumice Bricks Stairs", - "block.me.cracked_pumice_bricks_wall": "Cracked Pumice Bricks Wall", - "block.me.pumice_tiles": "Pumice Tiles", - "block.me.pumice_tiles_slab": "Pumice Tiles Slab", - "block.me.pumice_tiles_vertical_slab": "Pumice Tiles Vertical Slab", - "block.me.pumice_tiles_stairs": "Pumice Tiles Stairs", - "block.me.pumice_tiles_wall": "Pumice Tiles Wall", - "block.me.mossy_pumice_tiles": "Mossy Pumice Tiles", - "block.me.mossy_pumice_tiles_slab": "Mossy Pumice Tiles Slab", - "block.me.mossy_pumice_tiles_vertical_slab": "Mossy Pumice Tiles Vertical Slab", - "block.me.mossy_pumice_tiles_stairs": "Mossy Pumice Tiles Stairs", - "block.me.mossy_pumice_tiles_wall": "Mossy Pumice Tiles Wall", - "block.me.cracked_pumice_tiles": "Cracked Pumice Tiles", - "block.me.cracked_pumice_tiles_slab": "Cracked Pumice Tiles Slab", - "block.me.cracked_pumice_tiles_vertical_slab": "Cracked Pumice Tiles Vertical Slab", - "block.me.cracked_pumice_tiles_stairs": "Cracked Pumice Tiles Stairs", - "block.me.cracked_pumice_tiles_wall": "Cracked Pumice Tiles Wall", - "block.me.polished_pumice": "Polished Pumice", - "block.me.polished_pumice_slab": "Polished Pumice Slab", - "block.me.polished_pumice_vertical_slab": "Polished Pumice Vertical Slab", - "block.me.polished_pumice_stairs": "Polished Pumice Stairs", - "block.me.polished_pumice_wall": "Polished Pumice Wall", - "block.me.mossy_polished_pumice": "Mossy Polished Pumice", - "block.me.mossy_polished_pumice_slab": "Mossy Polished Pumice Slab", - "block.me.mossy_polished_pumice_vertical_slab": "Mossy Polished Pumice Vertical Slab", - "block.me.mossy_polished_pumice_stairs": "Mossy Polished Pumice Stairs", - "block.me.mossy_polished_pumice_wall": "Mossy Polished Pumice Wall", - "block.me.cracked_polished_pumice": "Cracked Polished Pumice", - "block.me.cracked_polished_pumice_slab": "Cracked Polished Pumice Slab", - "block.me.cracked_polished_pumice_vertical_slab": "Cracked Polished Pumice Vertical Slab", - "block.me.cracked_polished_pumice_stairs": "Cracked Polished Pumice Stairs", - "block.me.cracked_polished_pumice_wall": "Cracked Polished Pumice Wall", - "block.me.chiseled_polished_pumice": "Chiseled Polished Pumice", - "block.me.chiseled_pumice_bricks": "Chiseled Pumice Bricks", - "block.me.pumice_pressure_plate": "Pumice Pressure Plate", - "block.me.pumice_button": "Pumice Button", - "block.me.pumice_trapdoor": "Pumice Trapdoor", - "block.me.pumice_rocks": "Pumice Rocks", - "block.me.pumice_stool": "Pumice Stool", - "block.me.pumice_table": "Pumice Table", - "block.me.pumice_chair": "Pumice Chair", - "block.me.old_calcite": "Old Calcite", - "block.me.old_calcite_slab": "Old Calcite Slab", - "block.me.old_calcite_vertical_slab": "Old Calcite Vertical Slab", - "block.me.old_calcite_stairs": "Old Calcite Stairs", - "block.me.old_calcite_wall": "Old Calcite Wall", - "block.me.smooth_calcite": "Smooth Calcite", - "block.me.smooth_calcite_slab": "Smooth Calcite Slab", - "block.me.smooth_calcite_vertical_slab": "Smooth Calcite Vertical Slab", - "block.me.smooth_calcite_stairs": "Smooth Calcite Stairs", - "block.me.smooth_calcite_wall": "Smooth Calcite Wall", - "block.me.mossy_smooth_calcite": "Mossy Smooth Calcite", - "block.me.mossy_smooth_calcite_slab": "Mossy Smooth Calcite Slab", - "block.me.mossy_smooth_calcite_vertical_slab": "Mossy Smooth Calcite Vertical Slab", - "block.me.mossy_smooth_calcite_stairs": "Mossy Smooth Calcite Stairs", - "block.me.mossy_smooth_calcite_wall": "Mossy Smooth Calcite Wall", - "block.me.cracked_smooth_calcite": "Cracked Smooth Calcite", - "block.me.cracked_smooth_calcite_slab": "Cracked Smooth Calcite Slab", - "block.me.cracked_smooth_calcite_vertical_slab": "Cracked Smooth Calcite Vertical Slab", - "block.me.cracked_smooth_calcite_stairs": "Cracked Smooth Calcite Stairs", - "block.me.cracked_smooth_calcite_wall": "Cracked Smooth Calcite Wall", - "block.me.cobbled_calcite": "Pierre de calcite", - "block.me.cobbled_calcite_slab": "Dalle en pierre de calcite", - "block.me.cobbled_calcite_vertical_slab": "Dalle verticale en pierre de calcite", - "block.me.cobbled_calcite_stairs": "Escaliers en pierres de calcite", - "block.me.cobbled_calcite_wall": "Muret en pierre de calcite", - "block.me.mossy_cobbled_calcite": "Pierre de calcite moussue", - "block.me.mossy_cobbled_calcite_slab": "Dalle en pierre de calcite moussue", - "block.me.mossy_cobbled_calcite_vertical_slab": "Dalle verticale en pierre de calcite moussue", - "block.me.mossy_cobbled_calcite_stairs": "Escaliers en pierres de calcite moussue", - "block.me.mossy_cobbled_calcite_wall": "Muret en pierre de calcite moussue", - "block.me.calcite_pillar": "Pilier en calcite", - "block.me.mossy_calcite_pillar": "Pilier en calcite moussue", - "block.me.cracked_calcite_pillar": "Pilier en calcite craquelée", - "block.me.calcite_bricks": "Briques en calcite", - "block.me.calcite_bricks_slab": "Dalle en briques en calcite", - "block.me.calcite_bricks_vertical_slab": "Dalle verticale en briques de calcite", - "block.me.calcite_bricks_stairs": "Escaliers en briques en calcite", - "block.me.calcite_bricks_wall": "Muret en briques en calcite", - "block.me.mossy_calcite_bricks": "Briques en calcite moussue", - "block.me.mossy_calcite_bricks_slab": "Dalle en briques en calcite moussue", - "block.me.mossy_calcite_bricks_vertical_slab": "Dalle verticale en briques de calcite moussue", - "block.me.mossy_calcite_bricks_stairs": "Escaliers en briques en calcite moussue", - "block.me.mossy_calcite_bricks_wall": "Muret en briques en calcite moussue", - "block.me.cracked_calcite_bricks": "Briques en calcite craquelée", - "block.me.cracked_calcite_bricks_slab": "Dalle en briques de calcite craquelée", - "block.me.cracked_calcite_bricks_vertical_slab": "Dalle verticale en briques de calcite craquelée", - "block.me.cracked_calcite_bricks_stairs": "Escaliers en briques de calcite craquelée", - "block.me.cracked_calcite_bricks_wall": "Muret en briques de calcite craquelée", - "block.me.calcite_tiles": "Calcite carrelée", - "block.me.calcite_tiles_slab": "Dalle en calcite carrelée", - "block.me.calcite_tiles_vertical_slab": "Dalle verticale en calcite carrelée", - "block.me.calcite_tiles_stairs": "Escaliers en calcite carrelée", - "block.me.calcite_tiles_wall": "Muret en calcite carrelée", - "block.me.mossy_calcite_tiles": "Calcite carrelée moussue", - "block.me.mossy_calcite_tiles_slab": "Dalle en calcite carrelée moussue", - "block.me.mossy_calcite_tiles_vertical_slab": "Dalle verticale en calcite carrelée moussue", - "block.me.mossy_calcite_tiles_stairs": "Escaliers en calcite carrelée moussue", - "block.me.mossy_calcite_tiles_wall": "Muret en calcite carrelée moussue", - "block.me.cracked_calcite_tiles": "Calcite carrelée craquelée", - "block.me.cracked_calcite_tiles_slab": "Dalle en calcite carrelée craquelée", - "block.me.cracked_calcite_tiles_vertical_slab": "Dalle verticale en calcite carrelée craquelée", - "block.me.cracked_calcite_tiles_stairs": "Escaliers en calcite carrelée craquelée", - "block.me.cracked_calcite_tiles_wall": "Muret en calcite carrelée craquelée", - "block.me.polished_calcite": "Calcite polie", - "block.me.polished_calcite_slab": "Dalle en calcite polie", - "block.me.polished_calcite_vertical_slab": "Dalle verticale en calcite polie", - "block.me.polished_calcite_stairs": "Escaliers en calcite polie", - "block.me.polished_calcite_wall": "Muret en calcite polie", - "block.me.mossy_polished_calcite": "Mossy Polished Calcite", - "block.me.mossy_polished_calcite_slab": "Dalle en calcite polie moussue", - "block.me.mossy_polished_calcite_vertical_slab": "Dalle verticale en calcite polie moussue", - "block.me.mossy_polished_calcite_stairs": "Escaliers en calcite polie moussue", - "block.me.mossy_polished_calcite_wall": "Muret en calcite polie moussue", - "block.me.cracked_polished_calcite": "Cracked Polished Calcite", - "block.me.cracked_polished_calcite_slab": "Dalle en calcite polie craquelée", - "block.me.cracked_polished_calcite_vertical_slab": "Dalle verticale en calcite polie craquelée", - "block.me.cracked_polished_calcite_stairs": "Escaliers en calcite polie craquelée", - "block.me.cracked_polished_calcite_wall": "Muret en calcite polie craquelée", - "block.me.chiseled_polished_calcite": "Calcite polie sculptée", - "block.me.chiseled_calcite_bricks": "Briques en calcite sculptée", - "block.me.chiseled_calcite": "Chiseled Calcite", - "block.me.chiseled_calcite_tiles": "Chiseled Calcite Tiles", - "block.me.chiseled_smooth_calcite": "Chiseled Smooth Calcite", - "block.me.calcite_brickwork": "Calcite Brickwork", - "block.me.calcite_brickwork_slab": "Calcite Brickwork Slab", - "block.me.calcite_brickwork_vertical_slab": "Calcite Brickwork Vertical Slab", - "block.me.calcite_brickwork_stairs": "Calcite Brickwork Stairs", - "block.me.calcite_brickwork_wall": "Calcite Brickwork Wall", - "block.me.calcite_pressure_plate": "Calcite Pressure Plate", - "block.me.calcite_button": "Calcite Button", - "block.me.calcite_trapdoor": "Calcite Trapdoor", - "block.me.calcite_rocks": "Calcite Rocks", - "block.me.calcite_stool": "Tabouret en calcite", - "block.me.calcite_table": "Table en calcite", - "block.me.calcite_chair": "Chaise en calcite", - "block.me.pointed_dolomite": "Pointed Dolomite", - "block.me.old_dolomite": "Old Dolomite", - "block.me.old_dolomite_slab": "Old Dolomite Slab", - "block.me.old_dolomite_vertical_slab": "Old Dolomite Vertical Slab", - "block.me.old_dolomite_stairs": "Old Dolomite Stairs", - "block.me.old_dolomite_wall": "Old Dolomite Wall", - "block.me.smooth_dolomite": "Smooth Dolomite", - "block.me.smooth_dolomite_slab": "Smooth Dolomite Slab", - "block.me.smooth_dolomite_vertical_slab": "Smooth Dolomite Vertical Slab", - "block.me.smooth_dolomite_stairs": "Smooth Dolomite Stairs", - "block.me.smooth_dolomite_wall": "Smooth Dolomite Wall", - "block.me.mossy_smooth_dolomite": "Mossy Smooth Dolomite", - "block.me.mossy_smooth_dolomite_slab": "Mossy Smooth Dolomite Slab", - "block.me.mossy_smooth_dolomite_vertical_slab": "Mossy Smooth Dolomite Vertical Slab", - "block.me.mossy_smooth_dolomite_stairs": "Mossy Smooth Dolomite Stairs", - "block.me.mossy_smooth_dolomite_wall": "Mossy Smooth Dolomite Wall", - "block.me.cracked_smooth_dolomite": "Cracked Smooth Dolomite", - "block.me.cracked_smooth_dolomite_slab": "Cracked Smooth Dolomite Slab", - "block.me.cracked_smooth_dolomite_vertical_slab": "Cracked Smooth Dolomite Vertical Slab", - "block.me.cracked_smooth_dolomite_stairs": "Cracked Smooth Dolomite Stairs", - "block.me.cracked_smooth_dolomite_wall": "Cracked Smooth Dolomite Wall", - "block.me.cobbled_dolomite": "Pierres de dolomite", - "block.me.cobbled_dolomite_slab": "Dalle en pierre de dolomite", - "block.me.cobbled_dolomite_vertical_slab": "Dalle verticale en pierre de dolomite", - "block.me.cobbled_dolomite_stairs": "Escaliers en pierre de dolomite", - "block.me.cobbled_dolomite_wall": "Murret en pierre de dolomite", - "block.me.mossy_cobbled_dolomite": "Pierre de dolomite moussue", - "block.me.mossy_cobbled_dolomite_slab": "Dalle en pierre de dolomite moussue", - "block.me.mossy_cobbled_dolomite_vertical_slab": "Dalle verticale en pierre de dolomite moussue", - "block.me.mossy_cobbled_dolomite_stairs": "Escaliers en pierre de dolomite moussue", - "block.me.mossy_cobbled_dolomite_wall": "Murret en pierre de dolomite moussue", - "block.me.dolomite": "Dolomite", - "block.me.dolomite_slab": "Dalle en dolomite", - "block.me.dolomite_vertical_slab": "Dalle verticale en dolomite", - "block.me.dolomite_stairs": "Escaliers en dolomite", - "block.me.dolomite_wall": "Murret en dolomite", - "block.me.dolomite_pillar": "Pillier en dolomite", - "block.me.mossy_dolomite_pillar": "Pilier en dolomite moussue", - "block.me.cracked_dolomite_pillar": "Pilier en dolomite craquelée", - "block.me.dolomite_bricks": "Briques en dolomite", - "block.me.dolomite_bricks_slab": "Dalle en briques de dolomite", - "block.me.dolomite_bricks_vertical_slab": "Dalle verticale en briques de dolomite", - "block.me.dolomite_bricks_stairs": "Escaliers en briques de dolomite", - "block.me.dolomite_bricks_wall": "Muret en briques de dolomite", - "block.me.mossy_dolomite_bricks": "Briques de dolomite moussue", - "block.me.mossy_dolomite_bricks_slab": "Dalle en briques de dolomite moussue", - "block.me.mossy_dolomite_bricks_vertical_slab": "Dalle verticale en briques de dolomite moussue", - "block.me.mossy_dolomite_bricks_stairs": "Escaliers en briques de dolomite moussue", - "block.me.mossy_dolomite_bricks_wall": "Muret en briques de dolomite moussue", - "block.me.cracked_dolomite_bricks": "Briques de dolomite craquelée", - "block.me.cracked_dolomite_bricks_slab": "Dalle en briques de dolomite craquelée", - "block.me.cracked_dolomite_bricks_vertical_slab": "Dalle verticale en briques de dolomite craquelée", - "block.me.cracked_dolomite_bricks_stairs": "Escaliers en briques de dolomite craquelée", - "block.me.cracked_dolomite_bricks_wall": "Murret en briques de dolomite craquelée", - "block.me.dolomite_tiles": "Dolomite carrelée", - "block.me.dolomite_tiles_slab": "Dalle en dolomite carrelée", - "block.me.dolomite_tiles_vertical_slab": "Dalle verticale en dolomite carrelée", - "block.me.dolomite_tiles_stairs": "Escaliers en dolomite carrelée", - "block.me.dolomite_tiles_wall": "Muret en dolomite carrelée", - "block.me.mossy_dolomite_tiles": "Dolomite carrelée moussue", - "block.me.mossy_dolomite_tiles_slab": "Dalle en dolomite carrelée moussue", - "block.me.mossy_dolomite_tiles_vertical_slab": "Dalle verticale en dolomite carrelée moussue", - "block.me.mossy_dolomite_tiles_stairs": "Escaliers en dolomite carrelée moussue", - "block.me.mossy_dolomite_tiles_wall": "Muret en dolomite carrelée moussue", - "block.me.cracked_dolomite_tiles": "Dolomite carrelée craquelée", - "block.me.cracked_dolomite_tiles_slab": "Dalle en dolomite carrelée craquelée", - "block.me.cracked_dolomite_tiles_vertical_slab": "Dalle verticale en dolomite carrelée craquelée", - "block.me.cracked_dolomite_tiles_stairs": "Escaliers en dolomite carrelée craquelée", - "block.me.cracked_dolomite_tiles_wall": "Murret en dolomite carrelée craquelée", - "block.me.polished_dolomite": "Dolomite polie", - "block.me.polished_dolomite_slab": "Dalle en dolomite polie", - "block.me.polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie", - "block.me.polished_dolomite_stairs": "Escaliers en dolomite polie", - "block.me.polished_dolomite_wall": "Murret en dolomite polie", - "block.me.mossy_polished_dolomite": "Mossy Polished Dolomite", - "block.me.mossy_polished_dolomite_slab": "Dalle en dolomite polie moussue", - "block.me.mossy_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie moussue", - "block.me.mossy_polished_dolomite_stairs": "Escaliers en dolomite polie moussue", - "block.me.mossy_polished_dolomite_wall": "Murret en dolomite polie moussue", - "block.me.cracked_polished_dolomite": "Cracked Polished Dolomite", - "block.me.cracked_polished_dolomite_slab": "Dalle en dolomite polie craquelée", - "block.me.cracked_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie craquelée", - "block.me.cracked_polished_dolomite_stairs": "Escaliers en dolomite polie craquelée", - "block.me.cracked_polished_dolomite_wall": "Murret en dolomite polie craquelée", - "block.me.chiseled_polished_dolomite": "Dolomite polie sculptée", - "block.me.chiseled_dolomite_bricks": "Briques en dolomite sculptée", - "block.me.chiseled_dolomite_tiles": "Chiseled Dolomite Tiles", - "block.me.chiseled_dolomite": "Chiseled Dolomite", - "block.me.chiseled_smooth_dolomite": "Chiseled Smooth Dolomite", - "block.me.dolomite_pressure_plate": "Plaque de pression en dolomite", - "block.me.dolomite_button": "Bouton en dolomite", - "block.me.dolomite_trapdoor": "Dolomite Trapdoor", - "block.me.dolomite_rocks": "Dolomite Rocks", - "block.me.dolomite_stool": "Tabouret en dolomite", - "block.me.dolomite_table": "Table en dolomite", - "block.me.dolomite_chair": "Chaise en dolomite", - "block.me.cobbled_gonluin": "Pierre de Gonluin", - "block.me.cobbled_gonluin_slab": "Dalle en pierre de Gonluin", - "block.me.cobbled_gonluin_vertical_slab": "Dalle verticale en pierre de Gonluin", - "block.me.cobbled_gonluin_stairs": "Escaliers en pierre de Gonluin", - "block.me.cobbled_gonluin_wall": "Murret en pierre de Gonluin", - "block.me.mossy_cobbled_gonluin": "Pierre de Gonluin moussue", - "block.me.mossy_cobbled_gonluin_slab": "Dalle en pierre de Gonluin moussue", - "block.me.mossy_cobbled_gonluin_vertical_slab": "Dalle verticale en pierre de Gonluin moussue", - "block.me.mossy_cobbled_gonluin_stairs": "Escaliers en pierre de Gonluin moussue", - "block.me.mossy_cobbled_gonluin_wall": "Murret en pierre de Gonluin moussue", - "block.me.gonluin": "Gonluin", - "block.me.gonluin_slab": "Dalle en Gonluin", - "block.me.gonluin_vertical_slab": "Dalle verticale en Gonluin", - "block.me.gonluin_stairs": "Escaliers en Gonluin", - "block.me.gonluin_wall": "Murret en Gonluin", - "block.me.gonluin_pillar": "Pilier en Gonluin", - "block.me.mossy_gonluin_pillar": "Pilier en Gonluin moussue", - "block.me.cracked_gonluin_pillar": "Pilier en Gonluin craquelée", - "block.me.gonluin_bricks": "Briques en Gonluin", - "block.me.gonluin_bricks_slab": "Dalle en briques de Gonluin", - "block.me.gonluin_bricks_vertical_slab": "Dalle verticale en briques de Gonluin", - "block.me.gonluin_bricks_stairs": "Escaliers en briques de Gonluin", - "block.me.gonluin_bricks_wall": "Murret en briques de Gonluin", - "block.me.mossy_gonluin_bricks": "Briques en Gonluin moussue", - "block.me.mossy_gonluin_bricks_slab": "Dalle en briques de Gonluin moussue", - "block.me.mossy_gonluin_bricks_vertical_slab": "Dalle verticale en briques de Gonluin moussue", - "block.me.mossy_gonluin_bricks_stairs": "Escaliers en briques de Gonluin moussue", - "block.me.mossy_gonluin_bricks_wall": "Murret en briques de Gonluin moussue", - "block.me.cracked_gonluin_bricks": "Briques de Gonluin craquelée", - "block.me.cracked_gonluin_bricks_slab": "Dalle en briques de Gonluin craquelée", - "block.me.cracked_gonluin_bricks_vertical_slab": "Dalle verticale en briques de Gonluin craquelée", - "block.me.cracked_gonluin_bricks_stairs": "Escaliers en briques de Gonluin craquelée", - "block.me.cracked_gonluin_bricks_wall": "Muret en briques de Gonluin craquelée", - "block.me.gonluin_tiles": "Gonluin carrelée", - "block.me.gonluin_tiles_slab": "Dalle en Gonluin carrelée", - "block.me.gonluin_tiles_vertical_slab": "Dalle verticale en Gonluin carrelée", - "block.me.gonluin_tiles_stairs": "Escaliers en Gonluin carrelée", - "block.me.gonluin_tiles_wall": "Muret en Gonluin carrelée", - "block.me.mossy_gonluin_tiles": "Gonluin carrelée moussue", - "block.me.mossy_gonluin_tiles_slab": "Dalle en Gonluin carrelée moussue", - "block.me.mossy_gonluin_tiles_vertical_slab": "Dalle verticale en Gonluin carrelée moussue", - "block.me.mossy_gonluin_tiles_stairs": "Escaliers en Gonluin carrelée moussue", - "block.me.mossy_gonluin_tiles_wall": "Muret en Gonluin carrelée moussue", - "block.me.cracked_gonluin_tiles": "Gonluin carrelée craquelée", - "block.me.cracked_gonluin_tiles_slab": "Dalle en Gonluin carrelée craquelée", - "block.me.cracked_gonluin_tiles_vertical_slab": "Dalle verticale en Gonluin carrelée craquelée", - "block.me.cracked_gonluin_tiles_stairs": "Escaliers en Gonluin carrelée craquelée", - "block.me.cracked_gonluin_tiles_wall": "Murret en Gonluin carrelée craquelée", - "block.me.polished_gonluin": "Gonluin polie", - "block.me.polished_gonluin_slab": "Dalle en Gonluin polie", - "block.me.polished_gonluin_vertical_slab": "Dalle verticale en Gonluin polie", - "block.me.polished_gonluin_stairs": "Escaliers en Gonluin polie", - "block.me.polished_gonluin_wall": "Murret en Gonluin polie", - "block.me.mossy_polished_gonluin": "Mossy Polished Gonluin", - "block.me.mossy_polished_gonluin_slab": "Dalle en Gonluin polie moussue", - "block.me.mossy_polished_gonluin_vertical_slab": "Dalle verticale en Gonluin polie moussue", - "block.me.mossy_polished_gonluin_stairs": "Escaliers en Gonluin polie moussue", - "block.me.mossy_polished_gonluin_wall": "Murret en Gonluin polie moussue", - "block.me.cracked_polished_gonluin": "Cracked Polished Gonluin", - "block.me.cracked_polished_gonluin_slab": "Dalle en Gonluin polie craquelée", - "block.me.cracked_polished_gonluin_vertical_slab": "Dalle verticale en Gonluin polie craquelée", - "block.me.cracked_polished_gonluin_stairs": "Escaliers en Gonluin polie craquelée", - "block.me.cracked_polished_gonluin_wall": "Murret en Gonluin polie craquelée", - "block.me.chiseled_polished_gonluin": "Gonluin polie sculptée", - "block.me.chiseled_gonluin_bricks": "Briques en Gonluin sculptée", - "block.me.chiseled_gonluin": "Chiseled Gonluin", - "block.me.gonluin_pressure_plate": "Plaque de pression en Gonluin", - "block.me.gonluin_button": "Bouton en Gonluin", - "block.me.gonluin_trapdoor": "Gonluin Trapdoor", - "block.me.gonluin_rocks": "Gonluin Rocks", - "block.me.gonluin_carved_window": "Gonluin Carved Window", - "block.me.gonluin_carved_window_pane": "Gonluin Carved Window Pane", - "block.me.gonluin_stool": "Tabouret en Gonluin", - "block.me.gonluin_table": "Table en Gonluin", - "block.me.gonluin_chair": "Chaise en Gonluin", - "block.me.cobbled_blue_tuff": "Pierre de tuf bleu", - "block.me.cobbled_blue_tuff_slab": "Dalle en pierre de tuf bleu", - "block.me.cobbled_blue_tuff_vertical_slab": "Dalle verticale en pierre de tuf bleu", - "block.me.cobbled_blue_tuff_stairs": "Escaliers en pierre de tuf bleu", - "block.me.cobbled_blue_tuff_wall": "Murret en pierre de tuf bleu", - "block.me.mossy_cobbled_blue_tuff": "Pierre de tuf bleu moussue", - "block.me.mossy_cobbled_blue_tuff_slab": "Dalle en pierre de tuf bleu moussue", - "block.me.mossy_cobbled_blue_tuff_vertical_slab": "Dalle verticale en pierre de tuf bleu moussue", - "block.me.mossy_cobbled_blue_tuff_stairs": "Escaliers en pierre de tuf bleu moussue", - "block.me.mossy_cobbled_blue_tuff_wall": "Murret en pierre de tuf bleu moussue", - "block.me.blue_tuff": "Tuf bleu", - "block.me.blue_tuff_slab": "Dalle en tuf bleu", - "block.me.blue_tuff_vertical_slab": "Dalle verticale en tuf bleu", - "block.me.blue_tuff_stairs": "Escaliers en tuf bleu", - "block.me.blue_tuff_wall": "Murret en tuf bleu", - "block.me.blue_tuff_pillar": "Pilier en tuf bleu", - "block.me.mossy_blue_tuff_pillar": "Pilier en tuf bleu", - "block.me.cracked_blue_tuff_pillar": "Pilier en tuf bleu craquelée", - "block.me.blue_tuff_bricks": "Briques en tuf bleu", - "block.me.blue_tuff_bricks_slab": "Dalle de briques en tuf bleu", - "block.me.blue_tuff_bricks_vertical_slab": "Dalle verticale en briques de tuf bleu", - "block.me.blue_tuff_bricks_stairs": "Escaliers en briques de tuf bleu", - "block.me.blue_tuff_bricks_wall": "Muret en briques de tuf bleu", - "block.me.mossy_blue_tuff_bricks": "Briques en tuf bleu moussue", - "block.me.mossy_blue_tuff_bricks_slab": "Dalle en briques de tuf bleu moussue", - "block.me.mossy_blue_tuff_bricks_vertical_slab": "Dalle verticale en briques de tuf bleu moussue", - "block.me.mossy_blue_tuff_bricks_stairs": "Escaliers en briques de tuf bleu moussue", - "block.me.mossy_blue_tuff_bricks_wall": "Murret en briques de tuf bleu moussue", - "block.me.cracked_blue_tuff_bricks": "Briques en tuf bleu craquelée", - "block.me.cracked_blue_tuff_bricks_slab": "Dalle en briques de tuf bleu craquelée", - "block.me.cracked_blue_tuff_bricks_vertical_slab": "Dalle verticale en briques de tuf bleu craquelée", - "block.me.cracked_blue_tuff_bricks_stairs": "Escaliers en briques de tuf bleu craquelée", - "block.me.cracked_blue_tuff_bricks_wall": "Murret en briques de tuf bleu craquelée", - "block.me.blue_tuff_tiles": "Tuf bleu carrelé", - "block.me.blue_tuff_tiles_slab": "Dalle en tuf bleu carrelé", - "block.me.blue_tuff_tiles_vertical_slab": "Dalle verticale en tuf bleu carrelé", - "block.me.blue_tuff_tiles_stairs": "Escaliers en tuf bleu carrelé", - "block.me.blue_tuff_tiles_wall": "Muret en tuf bleu carrelé", - "block.me.mossy_blue_tuff_tiles": "Tuf bleu carrelée moussue", - "block.me.mossy_blue_tuff_tiles_slab": "Dalle en tuf bleu carrelée moussue", - "block.me.mossy_blue_tuff_tiles_vertical_slab": "Dalle verticale en tuf bleu carrelée moussue", - "block.me.mossy_blue_tuff_tiles_stairs": "Escaliers en tuf bleu carrelée moussue", - "block.me.mossy_blue_tuff_tiles_wall": "Murret en tuf bleu carrelée moussue", - "block.me.cracked_blue_tuff_tiles": "Tuf bleu carrelée craquelée", - "block.me.cracked_blue_tuff_tiles_slab": "Dalle en tuf bleu carrelée craquelée", - "block.me.cracked_blue_tuff_tiles_vertical_slab": "Dalle verticale en tuf bleu carrelée craquelée", - "block.me.cracked_blue_tuff_tiles_stairs": "Escaliers en tuf bleu carrelée craquelée", - "block.me.cracked_blue_tuff_tiles_wall": "Murret en tuf bleu carrelée craquelée", - "block.me.polished_blue_tuff": "Tuf bleu poli", - "block.me.polished_blue_tuff_slab": "Dalle en tuf bleu poli", - "block.me.polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli", - "block.me.polished_blue_tuff_stairs": "Escaliers en tuf bleu poli", - "block.me.polished_blue_tuff_wall": "Muret en tuf bleu poli", - "block.me.mossy_polished_blue_tuff": "Mossy Polished Blue Tuff", - "block.me.mossy_polished_blue_tuff_slab": "Dalle en tuf bleu poli moussue", - "block.me.mossy_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli moussue", - "block.me.mossy_polished_blue_tuff_stairs": "Escaliers en tuf bleu poli moussue", - "block.me.mossy_polished_blue_tuff_wall": "Murret en tuf bleu poli moussue", - "block.me.cracked_polished_blue_tuff": "Cracked Polished Blue Tuff", - "block.me.cracked_polished_blue_tuff_slab": "Dalle en tuf bleu poli craquelée", - "block.me.cracked_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli craquelée", - "block.me.cracked_polished_blue_tuff_stairs": "Escaliers en tuf bleu poli craquelée", - "block.me.cracked_polished_blue_tuff_wall": "Murret en tuf bleu poli craquelée", - "block.me.chiseled_polished_blue_tuff": "Tuf bleu poli sculpté", - "block.me.chiseled_blue_tuff_bricks": "Briques en tuf bleu sculpté", - "block.me.blue_tuff_pressure_plate": "Plaque de pression en tuf bleu", - "block.me.blue_tuff_button": "Bouton en tuf bleu", - "block.me.blue_tuff_trapdoor": "Blue Tuff Trapdoor", - "block.me.blue_tuff_rocks": "Blue Tuff Rocks", - "block.me.blue_tuff_stool": "Tabouret en tuf bleu", - "block.me.blue_tuff_table": "Table en tuf bleu", - "block.me.blue_tuff_chair": "Chaise en tuf bleu", - "block.me.cobbled_green_tuff": "Cobbled Green Tuff", - "block.me.cobbled_green_tuff_slab": "Cobbled Green Tuff Slab", - "block.me.cobbled_green_tuff_vertical_slab": "Cobbled Green Tuff Vertical Slab", - "block.me.cobbled_green_tuff_stairs": "Cobbled Green Tuff Stairs", - "block.me.cobbled_green_tuff_wall": "Cobbled Green Tuff Wall", - "block.me.smooth_green_tuff": "Smooth Green Tuff", - "block.me.smooth_green_tuff_slab": "Smooth Green Tuff Slab", - "block.me.smooth_green_tuff_vertical_slab": "Smooth Green Tuff Vertical Slab", - "block.me.smooth_green_tuff_stairs": "Smooth Green Tuff Stairs", - "block.me.smooth_green_tuff_wall": "Smooth Green Tuff Wall", - "block.me.cracked_smooth_green_tuff": "Cracked Smooth Green Tuff", - "block.me.cracked_smooth_green_tuff_slab": "Cracked Smooth Green Tuff Slab", - "block.me.cracked_smooth_green_tuff_vertical_slab": "Cracked Smooth Green Tuff Vertical Slab", - "block.me.cracked_smooth_green_tuff_stairs": "Cracked Smooth Green Tuff Stairs", - "block.me.cracked_smooth_green_tuff_wall": "Cracked Smooth Green Tuff Wall", - "block.me.mossy_cobbled_green_tuff": "Mossy Cobbled Green Tuff", - "block.me.mossy_cobbled_green_tuff_slab": "Mossy Cobbled Green Tuff Slab", - "block.me.mossy_cobbled_green_tuff_vertical_slab": "Mossy Cobbled Green Tuff Vertical Slab", - "block.me.mossy_cobbled_green_tuff_stairs": "Mossy Cobbled Green Tuff Stairs", - "block.me.mossy_cobbled_green_tuff_wall": "Mossy Cobbled Green Tuff Wall", - "block.me.green_tuff": "Green Tuff", - "block.me.green_tuff_slab": "Green Tuff Slab", - "block.me.green_tuff_vertical_slab": "Green Tuff Vertical Slab", - "block.me.green_tuff_stairs": "Green Tuff Stairs", - "block.me.green_tuff_wall": "Green Tuff Wall", - "block.me.green_tuff_pillar": "Green Tuff Pillar", - "block.me.mossy_green_tuff_pillar": "Mossy Green Tuff Pillar", - "block.me.cracked_green_tuff_pillar": "Cracked Green Tuff Pillar", - "block.me.green_tuff_bricks": "Green Tuff Bricks", - "block.me.green_tuff_bricks_slab": "Green Tuff Bricks Slab", - "block.me.green_tuff_bricks_vertical_slab": "Green Tuff Bricks Vertical Slab", - "block.me.green_tuff_bricks_stairs": "Green Tuff Bricks Stairs", - "block.me.green_tuff_bricks_wall": "Green Tuff Bricks Wall", - "block.me.mossy_green_tuff_bricks": "Mossy Green Tuff Bricks", - "block.me.mossy_green_tuff_bricks_slab": "Mossy Green Tuff Bricks Slab", - "block.me.mossy_green_tuff_bricks_vertical_slab": "Mossy Green Tuff Bricks Vertical Slab", - "block.me.mossy_green_tuff_bricks_stairs": "Mossy Green Tuff Bricks Stairs", - "block.me.mossy_green_tuff_bricks_wall": "Mossy Green Tuff Bricks Wall", - "block.me.cracked_green_tuff_bricks": "Cracked Green Tuff Bricks", - "block.me.cracked_green_tuff_bricks_slab": "Cracked Green Tuff Bricks Slab", - "block.me.cracked_green_tuff_bricks_vertical_slab": "Cracked Green Tuff Bricks Vertical Slab", - "block.me.cracked_green_tuff_bricks_stairs": "Cracked Green Tuff Bricks Stairs", - "block.me.cracked_green_tuff_bricks_wall": "Cracked Green Tuff Bricks Wall", - "block.me.green_tuff_tiles": "Green Tuff Tiles", - "block.me.green_tuff_tiles_slab": "Green Tuff Tiles Slab", - "block.me.green_tuff_tiles_vertical_slab": "Green Tuff Tiles Vertical Slab", - "block.me.green_tuff_tiles_stairs": "Green Tuff Tiles Stairs", - "block.me.green_tuff_tiles_wall": "Green Tuff Tiles Wall", - "block.me.mossy_green_tuff_tiles": "Mossy Green Tuff Tiles", - "block.me.mossy_green_tuff_tiles_slab": "Mossy Green Tuff Tiles Slab", - "block.me.mossy_green_tuff_tiles_vertical_slab": "Mossy Green Tuff Tiles Vertical Slab", - "block.me.mossy_green_tuff_tiles_stairs": "Mossy Green Tuff Tiles Stairs", - "block.me.mossy_green_tuff_tiles_wall": "Mossy Green Tuff Tiles Wall", - "block.me.cracked_green_tuff_tiles": "Cracked Green Tuff Tiles", - "block.me.cracked_green_tuff_tiles_slab": "Cracked Green Tuff Tiles Slab", - "block.me.cracked_green_tuff_tiles_vertical_slab": "Cracked Green Tuff Tiles Vertical Slab", - "block.me.cracked_green_tuff_tiles_stairs": "Cracked Green Tuff Tiles Stairs", - "block.me.cracked_green_tuff_tiles_wall": "Cracked Green Tuff Tiles Wall", - "block.me.polished_green_tuff": "Polished Green Tuff", - "block.me.polished_green_tuff_slab": "Polished Green Tuff Slab", - "block.me.polished_green_tuff_vertical_slab": "Polished Green Tuff Vertical Slab", - "block.me.polished_green_tuff_stairs": "Polished Green Tuff Stairs", - "block.me.polished_green_tuff_wall": "Polished Green Tuff Wall", - "block.me.mossy_polished_green_tuff": "Mossy Polished Green Tuff", - "block.me.mossy_polished_green_tuff_slab": "Mossy Polished Green Tuff Slab", - "block.me.mossy_polished_green_tuff_vertical_slab": "Mossy Polished Green Tuff Vertical Slab", - "block.me.mossy_polished_green_tuff_stairs": "Mossy Polished Green Tuff Stairs", - "block.me.mossy_polished_green_tuff_wall": "Mossy Polished Green Tuff Wall", - "block.me.cracked_polished_green_tuff": "Cracked Polished Green Tuff", - "block.me.cracked_polished_green_tuff_slab": "Cracked Polished Green Tuff Slab", - "block.me.cracked_polished_green_tuff_vertical_slab": "Cracked Polished Green Tuff Vertical Slab", - "block.me.cracked_polished_green_tuff_stairs": "Cracked Polished Green Tuff Stairs", - "block.me.cracked_polished_green_tuff_wall": "Cracked Polished Green Tuff Wall", - "block.me.chiseled_polished_green_tuff": "Chiseled Polished Green Tuff", - "block.me.chiseled_green_tuff": "Chiseled Green Tuff", - "block.me.chiseled_green_tuff_bricks": "Chiseled Green Tuff Bricks", - "block.me.chiseled_green_tuff_tiles": "Chiseled Green Tuff Tiles", - "block.me.chiseled_smooth_green_tuff": "Chiseled Smooth Green Tuff", - "block.me.gilded_green_tuff": "Gilded Green Tuff", - "block.me.gilded_green_tuff_slab": "Gilded Green Tuff Slab", - "block.me.gilded_green_tuff_vertical_slab": "Gilded Green Tuff Vertical Slab", - "block.me.gilded_green_tuff_stairs": "Gilded Green Tuff Stairs", - "block.me.gilded_green_tuff_wall": "Gilded Green Tuff Wall", - "block.me.gilded_chiseled_polished_green_tuff": "Gilded Chiseled Polished Green Tuff", - "block.me.gilded_chiseled_green_tuff": "Gilded Chiseled Green Tuff", - "block.me.gilded_chiseled_green_tuff_bricks": "Gilded Chiseled Green Tuff Bricks", - "block.me.gilded_chiseled_green_tuff_tiles": "Gilded Chiseled Green Tuff Tiles", - "block.me.gilded_chiseled_smooth_green_tuff": "Gilded Chiseled Smooth Green Tuff", - "block.me.green_tuff_pressure_plate": "Green Tuff Pressure Plate", - "block.me.green_tuff_button": "Green Tuff Button", - "block.me.green_tuff_trapdoor": "Green Tuff Trapdoor", - "block.me.green_tuff_rocks": "Green Tuff Rocks", - "block.me.green_tuff_stool": "Green Tuff Stool", - "block.me.green_tuff_table": "Green Tuff Table", - "block.me.green_tuff_chair": "Green Tuff Chair", - "block.me.gilded_green_tuff_pressure_plate": "Gilded Green Tuff Pressure Plate", - "block.me.gilded_green_tuff_button": "Gilded Green Tuff Button", - "block.me.gilded_green_tuff_trapdoor": "Gilded Green Tuff Trapdoor", - "block.me.gilded_green_tuff_rocks": "Gilded Green Tuff Rocks", - "block.me.gilded_green_tuff_stool": "Gilded Green Tuff Stool", - "block.me.gilded_green_tuff_table": "Gilded Green Tuff Table", - "block.me.gilded_green_tuff_chair": "Gilded Green Tuff Chair", - "block.me.old_blackstone": "Old Blackstone", - "block.me.old_blackstone_slab": "Old Blackstone Slab", - "block.me.old_blackstone_vertical_slab": "Old Blackstone Vertical Slab", - "block.me.old_blackstone_stairs": "Old Blackstone Stairs", - "block.me.old_blackstone_wall": "Old Blackstone Wall", - "block.me.smooth_blackstone": "Smooth Blackstone", - "block.me.smooth_blackstone_slab": "Smooth Blackstone Slab", - "block.me.smooth_blackstone_vertical_slab": "Smooth Blackstone Vertical Slab", - "block.me.smooth_blackstone_stairs": "Smooth Blackstone Stairs", - "block.me.smooth_blackstone_wall": "Smooth Blackstone Wall", - "block.me.mossy_smooth_blackstone": "Mossy Smooth Blackstone", - "block.me.mossy_smooth_blackstone_slab": "Mossy Smooth Blackstone Slab", - "block.me.mossy_smooth_blackstone_vertical_slab": "Mossy Smooth Blackstone Vertical Slab", - "block.me.mossy_smooth_blackstone_stairs": "Mossy Smooth Blackstone Stairs", - "block.me.mossy_smooth_blackstone_wall": "Mossy Smooth Blackstone Wall", - "block.me.cracked_smooth_blackstone": "Cracked Smooth Blackstone", - "block.me.cracked_smooth_blackstone_slab": "Cracked Smooth Blackstone Slab", - "block.me.cracked_smooth_blackstone_vertical_slab": "Cracked Smooth Blackstone Vertical Slab", - "block.me.cracked_smooth_blackstone_stairs": "Cracked Smooth Blackstone Stairs", - "block.me.cracked_smooth_blackstone_wall": "Cracked Smooth Blackstone Wall", - "block.me.cobbled_blackstone": "Cobbled Blackstone", - "block.me.cobbled_blackstone_slab": "Cobbled Blackstone Slab", - "block.me.cobbled_blackstone_vertical_slab": "Cobbled Blackstone Vertical Slab", - "block.me.cobbled_blackstone_stairs": "Cobbled Blackstone Stairs", - "block.me.cobbled_blackstone_wall": "Cobbled Blackstone Wall", - "block.me.mossy_cobbled_blackstone": "Mossy Cobbled Blackstone", - "block.me.mossy_cobbled_blackstone_slab": "Mossy Cobbled Blackstone Slab", - "block.me.mossy_cobbled_blackstone_vertical_slab": "Mossy Cobbled Blackstone Vertical Slab", - "block.me.mossy_cobbled_blackstone_stairs": "Mossy Cobbled Blackstone Stairs", - "block.me.mossy_cobbled_blackstone_wall": "Mossy Cobbled Blackstone Wall", - "block.me.blackstone_pillar": "Blackstone Pillar", - "block.me.mossy_blackstone_pillar": "Mossy Blackstone Pillar", - "block.me.cracked_blackstone_pillar": "Cracked Blackstone Pillar", - "block.me.mossy_polished_blackstone_bricks": "Mossy Polished Blackstone Bricks", - "block.me.mossy_polished_blackstone_bricks_slab": "Mossy Polished Blackstone Bricks Slab", - "block.me.mossy_polished_blackstone_bricks_vertical_slab": "Mossy Polished Blackstone Bricks Vertical Slab", - "block.me.mossy_polished_blackstone_bricks_stairs": "Mossy Polished Blackstone Bricks Stairs", - "block.me.mossy_polished_blackstone_bricks_wall": "Mossy Polished Blackstone Bricks Wall", - "block.me.blackstone_tiles": "Roche noire carrelée", - "block.me.blackstone_tiles_slab": "Dalle en roche noire carrelée", - "block.me.blackstone_tiles_vertical_slab": "Dalle verticale en roche noire carrelée", - "block.me.blackstone_tiles_stairs": "Escaliers en roche noire carrelée", - "block.me.blackstone_tiles_wall": "Muret en roche noire carrelée", - "block.me.mossy_blackstone_tiles": "Roche noire carrelée moussue", - "block.me.mossy_blackstone_tiles_slab": "Dalle en roche noire carrelée moussue", - "block.me.mossy_blackstone_tiles_vertical_slab": "Dalle verticale en roche noire carrelée moussue", - "block.me.mossy_blackstone_tiles_stairs": "Escaliers en roche noire carrelée moussue", - "block.me.mossy_blackstone_tiles_wall": "Muret en roche noire carrelée moussue", - "block.me.cracked_blackstone_tiles": "Roche noire carrelée craquelée", - "block.me.cracked_blackstone_tiles_slab": "Dalle en roche noire carrelée craquelée", - "block.me.cracked_blackstone_tiles_vertical_slab": "Dalle verticale en roche noire carrelée craquelée", - "block.me.cracked_blackstone_tiles_stairs": "Escaliers en roche noire carrelée craquelée", - "block.me.cracked_blackstone_tiles_wall": "Muret en roche noire carrelée craquelée", - "block.me.polished_blackstone_slab": "Polished Blackstone Slab", - "block.me.polished_blackstone_stairs": "Polished Blackstone Stairs", - "block.me.polished_blackstone_wall": "Polished Blackstone Wall", - "block.me.mossy_polished_blackstone": "Mossy Polished Blackstone", - "block.me.mossy_polished_blackstone_slab": "Mossy Polished Blackstone Slab", - "block.me.mossy_polished_blackstone_vertical_slab": "Mossy Polished Blackstone Vertical Slab", - "block.me.mossy_polished_blackstone_stairs": "Mossy Polished Blackstone Stairs", - "block.me.mossy_polished_blackstone_wall": "Mossy Polished Blackstone Wall", - "block.me.cracked_polished_blackstone": "Cracked Polished Blackstone", - "block.me.cracked_polished_blackstone_slab": "Cracked Polished Blackstone Slab", - "block.me.cracked_polished_blackstone_vertical_slab": "Cracked Polished Blackstone Vertical Slab", - "block.me.cracked_polished_blackstone_stairs": "Cracked Polished Blackstone Stairs", - "block.me.cracked_polished_blackstone_wall": "Cracked Polished Blackstone Wall", - "block.me.chiseled_polished_blackstone": "Chiseled Polished Blackstone", - "block.me.chiseled_polished_blackstone_bricks": "Chiseled Polished Blackstone Bricks", - "block.me.chiseled_blackstone": "Chiseled Blackstone", - "block.me.chiseled_blackstone_tiles": "Chiseled Blackstone Tiles", - "block.me.chiseled_smooth_blackstone": "Chiseled Smooth Blackstone", - "block.me.blackstone_brickwork": "Blackstone Brickwork", - "block.me.blackstone_brickwork_slab": "Blackstone Brickwork Slab", - "block.me.blackstone_brickwork_vertical_slab": "Blackstone Brickwork Vertical Slab", - "block.me.blackstone_brickwork_stairs": "Blackstone Brickwork Stairs", - "block.me.blackstone_brickwork_wall": "Blackstone Brickwork Wall", - "block.me.blackstone_pressure_plate": "Blackstone Pressure Plate", - "block.me.blackstone_button": "Blackstone Button", - "block.me.blackstone_rocks": "Blackstone Rocks", - "block.me.blackstone_carved_window": "Blackstone Carved Window", - "block.me.blackstone_carved_window_pane": "Blackstone Carved Window Pane", - "block.me.blackstone_stool": "Tabouret en pierre noire", - "block.me.blackstone_table": "Table en pierre noire", - "block.me.blackstone_chair": "Chaise en pierre noire", - "block.me.pointed_schist": "Pointed Schist", - "block.me.old_schist": "Old Schist", - "block.me.old_schist_slab": "Old Schist Slab", - "block.me.old_schist_vertical_slab": "Old Schist Vertical Slab", - "block.me.old_schist_stairs": "Old Schist Stairs", - "block.me.old_schist_wall": "Old Schist Wall", - "block.me.smooth_schist": "Smooth Schist", - "block.me.smooth_schist_slab": "Smooth Schist Slab", - "block.me.smooth_schist_vertical_slab": "Smooth Schist Vertical Slab", - "block.me.smooth_schist_stairs": "Smooth Schist Stairs", - "block.me.smooth_schist_wall": "Smooth Schist Wall", - "block.me.mossy_smooth_schist": "Mossy Smooth Schist", - "block.me.mossy_smooth_schist_slab": "Mossy Smooth Schist Slab", - "block.me.mossy_smooth_schist_vertical_slab": "Mossy Smooth Schist Vertical Slab", - "block.me.mossy_smooth_schist_stairs": "Mossy Smooth Schist Stairs", - "block.me.mossy_smooth_schist_wall": "Mossy Smooth Schist Wall", - "block.me.cracked_smooth_schist": "Cracked Smooth Schist", - "block.me.cracked_smooth_schist_slab": "Cracked Smooth Schist Slab", - "block.me.cracked_smooth_schist_vertical_slab": "Cracked Smooth Schist Vertical Slab", - "block.me.cracked_smooth_schist_stairs": "Cracked Smooth Schist Stairs", - "block.me.cracked_smooth_schist_wall": "Cracked Smooth Schist Wall", - "block.me.cobbled_schist": "Cobbled Schist", - "block.me.cobbled_schist_slab": "Cobbled Schist Slab", - "block.me.cobbled_schist_vertical_slab": "Cobbled Schist Vertical Slab", - "block.me.cobbled_schist_stairs": "Cobbled Schist Stairs", - "block.me.cobbled_schist_wall": "Cobbled Schist Wall", - "block.me.mossy_cobbled_schist": "Mossy Cobbled Schist", - "block.me.mossy_cobbled_schist_slab": "Mossy Cobbled Schist Slab", - "block.me.mossy_cobbled_schist_vertical_slab": "Mossy Cobbled Schist Vertical Slab", - "block.me.mossy_cobbled_schist_stairs": "Mossy Cobbled Schist Stairs", - "block.me.mossy_cobbled_schist_wall": "Mossy Cobbled Schist Wall", - "block.me.schist": "Schist", - "block.me.schist_slab": "Schist Slab", - "block.me.schist_vertical_slab": "Schist Vertical Slab", - "block.me.schist_stairs": "Schist Stairs", - "block.me.schist_wall": "Schist Wall", - "block.me.schist_pillar": "Schist Pillar", - "block.me.mossy_schist_pillar": "Mossy Schist Pillar", - "block.me.cracked_schist_pillar": "Cracked Schist Pillar", - "block.me.schist_bricks": "Schist Bricks", - "block.me.schist_bricks_slab": "Schist Bricks Slab", - "block.me.schist_bricks_vertical_slab": "Schist Bricks Vertical Slab", - "block.me.schist_bricks_stairs": "Schist Bricks Stairs", - "block.me.schist_bricks_wall": "Schist Bricks Wall", - "block.me.mossy_schist_bricks": "Mossy Schist Bricks", - "block.me.mossy_schist_bricks_slab": "Mossy Schist Bricks Slab", - "block.me.mossy_schist_bricks_vertical_slab": "Mossy Schist Bricks Vertical Slab", - "block.me.mossy_schist_bricks_stairs": "Mossy Schist Bricks Stairs", - "block.me.mossy_schist_bricks_wall": "Mossy Schist Bricks Wall", - "block.me.cracked_schist_bricks": "Cracked Schist Bricks", - "block.me.cracked_schist_bricks_slab": "Cracked Schist Bricks Slab", - "block.me.cracked_schist_bricks_vertical_slab": "Cracked Schist Bricks Vertical Slab", - "block.me.cracked_schist_bricks_stairs": "Cracked Schist Bricks Stairs", - "block.me.cracked_schist_bricks_wall": "Cracked Schist Bricks Wall", - "block.me.schist_tiles": "Schist Tiles", - "block.me.schist_tiles_slab": "Schist Tiles Slab", - "block.me.schist_tiles_vertical_slab": "Schist Tiles Vertical Slab", - "block.me.schist_tiles_stairs": "Schist Tiles Stairs", - "block.me.schist_tiles_wall": "Schist Tiles Wall", - "block.me.mossy_schist_tiles": "Mossy Schist Tiles", - "block.me.mossy_schist_tiles_slab": "Mossy Schist Tiles Slab", - "block.me.mossy_schist_tiles_vertical_slab": "Mossy Schist Tiles Vertical Slab", - "block.me.mossy_schist_tiles_stairs": "Mossy Schist Tiles Stairs", - "block.me.mossy_schist_tiles_wall": "Mossy Schist Tiles Wall", - "block.me.cracked_schist_tiles": "Cracked Schist Tiles", - "block.me.cracked_schist_tiles_slab": "Cracked Schist Tiles Slab", - "block.me.cracked_schist_tiles_vertical_slab": "Cracked Schist Tiles Vertical Slab", - "block.me.cracked_schist_tiles_stairs": "Cracked Schist Tiles Stairs", - "block.me.cracked_schist_tiles_wall": "Cracked Schist Tiles Wall", - "block.me.polished_schist": "Polished Schist", - "block.me.polished_schist_slab": "Polished Schist Slab", - "block.me.polished_schist_vertical_slab": "Polished Schist Vertical Slab", - "block.me.polished_schist_stairs": "Polished Schist Stairs", - "block.me.polished_schist_wall": "Polished Schist Wall", - "block.me.mossy_polished_schist": "Mossy Polished Schist", - "block.me.mossy_polished_schist_slab": "Mossy Polished Schist Slab", - "block.me.mossy_polished_schist_vertical_slab": "Mossy Polished Schist Vertical Slab", - "block.me.mossy_polished_schist_stairs": "Mossy Polished Schist Stairs", - "block.me.mossy_polished_schist_wall": "Mossy Polished Schist Wall", - "block.me.cracked_polished_schist": "Cracked Polished Schist", - "block.me.cracked_polished_schist_slab": "Cracked Polished Schist Slab", - "block.me.cracked_polished_schist_vertical_slab": "Cracked Polished Schist Vertical Slab", - "block.me.cracked_polished_schist_stairs": "Cracked Polished Schist Stairs", - "block.me.cracked_polished_schist_wall": "Cracked Polished Schist Wall", - "block.me.chiseled_polished_schist": "Chiseled Polished Schist", - "block.me.chiseled_schist_bricks": "Chiseled Schist Bricks", - "block.me.chiseled_schist": "Chiseled Schist", - "block.me.chiseled_schist_tiles": "Chiseled Schist Tiles", - "block.me.chiseled_smooth_schist": "Chiseled Smooth Schist", - "block.me.schist_brickwork": "Schist Brickwork", - "block.me.schist_brickwork_slab": "Schist Brickwork Slab", - "block.me.schist_brickwork_vertical_slab": "Schist Brickwork Vertical Slab", - "block.me.schist_brickwork_stairs": "Schist Brickwork Stairs", - "block.me.schist_brickwork_wall": "Schist Brickwork Wall", - "block.me.schist_pressure_plate": "Schist Pressure Plate", - "block.me.schist_button": "Schist Button", - "block.me.schist_trapdoor": "Schist Trapdoor", - "block.me.schist_rocks": "Schist Rocks", - "block.me.schist_stool": "Schist Stool", - "block.me.schist_table": "Schist Table", - "block.me.schist_chair": "Schist Chair", - "block.me.pointed_limestone": "Pointed Limestone", - "block.me.old_limestone": "Old Limestone", - "block.me.old_limestone_slab": "Old Limestone Slab", - "block.me.old_limestone_vertical_slab": "Old Limestone Vertical Slab", - "block.me.old_limestone_stairs": "Old Limestone Stairs", - "block.me.old_limestone_wall": "Old Limestone Wall", - "block.me.smooth_limestone": "Smooth Limestone", - "block.me.smooth_limestone_slab": "Smooth Limestone Slab", - "block.me.smooth_limestone_vertical_slab": "Smooth Limestone Vertical Slab", - "block.me.smooth_limestone_stairs": "Smooth Limestone Stairs", - "block.me.smooth_limestone_wall": "Smooth Limestone Wall", - "block.me.mossy_smooth_limestone": "Mossy Smooth Limestone", - "block.me.mossy_smooth_limestone_slab": "Mossy Smooth Limestone Slab", - "block.me.mossy_smooth_limestone_vertical_slab": "Mossy Smooth Limestone Vertical Slab", - "block.me.mossy_smooth_limestone_stairs": "Mossy Smooth Limestone Stairs", - "block.me.mossy_smooth_limestone_wall": "Mossy Smooth Limestone Wall", - "block.me.cracked_smooth_limestone": "Cracked Smooth Limestone", - "block.me.cracked_smooth_limestone_slab": "Cracked Smooth Limestone Slab", - "block.me.cracked_smooth_limestone_vertical_slab": "Cracked Smooth Limestone Vertical Slab", - "block.me.cracked_smooth_limestone_stairs": "Cracked Smooth Limestone Stairs", - "block.me.cracked_smooth_limestone_wall": "Cracked Smooth Limestone Wall", - "block.me.cobbled_limestone": "Pierre de calcaire", - "block.me.cobbled_limestone_slab": "Dalle en pierre de calcaire", - "block.me.cobbled_limestone_vertical_slab": "Dalle verticale en pierre de calcaire", - "block.me.cobbled_limestone_stairs": "Escaliers en pierre de calcaire", - "block.me.cobbled_limestone_wall": "Murret en pierre de calcaire", - "block.me.mossy_cobbled_limestone": "Pierre de calcaire moussue", - "block.me.mossy_cobbled_limestone_slab": "Dalle en pierre de calcaire moussue", - "block.me.mossy_cobbled_limestone_vertical_slab": "Dalle verticale en pierre de calcaire moussue", - "block.me.mossy_cobbled_limestone_stairs": "Escaliers en pierre de calcaire moussue", - "block.me.mossy_cobbled_limestone_wall": "Murret en pierre de calcaire moussue", - "block.me.limestone": "Calcaire", - "block.me.limestone_slab": "Dalle en calcaire", - "block.me.limestone_vertical_slab": "Dalle verticale en calcaire", - "block.me.limestone_stairs": "Escaliers en calcaire", - "block.me.limestone_wall": "Muret en calcaire", - "block.me.limestone_pillar": "Pillier en calcaire", - "block.me.mossy_limestone_pillar": "Pillier en calcaire moussue", - "block.me.cracked_limestone_pillar": "Pilier en calcaire craquelé", - "block.me.limestone_bricks": "Briques de calcaire", - "block.me.limestone_bricks_slab": "Dalle en briques de calcaire", - "block.me.limestone_bricks_vertical_slab": "Dalle verticale en briques de calcaire", - "block.me.limestone_bricks_stairs": "Escaliers en briques de calcaire", - "block.me.limestone_bricks_wall": "Muret en briques de calcaire", - "block.me.mossy_limestone_bricks": "Briques de calcaire moussue", - "block.me.mossy_limestone_bricks_slab": "Dalle en briques de calcaire moussue", - "block.me.mossy_limestone_bricks_vertical_slab": "Dalle verticale en briques de calcaire moussue", - "block.me.mossy_limestone_bricks_stairs": "Escaliers en briques de calcaire moussue", - "block.me.mossy_limestone_bricks_wall": "Muret en briques de calcaire moussue", - "block.me.cracked_limestone_bricks": "Briques de calcaire craquelée", - "block.me.cracked_limestone_bricks_slab": "Dalle en briques de calcaire craquelée", - "block.me.cracked_limestone_bricks_vertical_slab": "Dalle verticale en briques de calcaire craquelée", - "block.me.cracked_limestone_bricks_stairs": "Escaliers en briques de calcaire craquelée", - "block.me.cracked_limestone_bricks_wall": "Muret de briques de calcaire craquelée", - "block.me.limestone_tiles": "Calcaire carrelé", - "block.me.limestone_tiles_slab": "Dalle en calcaire carrelé", - "block.me.limestone_tiles_vertical_slab": "Dalle verticale en calcaire carrelé", - "block.me.limestone_tiles_stairs": "Escaliers en calcaire carrelé", - "block.me.limestone_tiles_wall": "Muret en calcaire carrelé", - "block.me.mossy_limestone_tiles": "Calcaire carrelé moussue", - "block.me.mossy_limestone_tiles_slab": "Dalle en calcaire carrelé moussue", - "block.me.mossy_limestone_tiles_vertical_slab": "Dalle verticale en calcaire carrelé moussue", - "block.me.mossy_limestone_tiles_stairs": "Escaliers en calcaire carrelé moussue", - "block.me.mossy_limestone_tiles_wall": "Muret en calcaire carrelé moussue", - "block.me.cracked_limestone_tiles": "Calcaire carrelé craquelé", - "block.me.cracked_limestone_tiles_slab": "Dalle en calcaire carrelé craquelé", - "block.me.cracked_limestone_tiles_vertical_slab": "Dalle verticale en calcaire carrelé craquelé", - "block.me.cracked_limestone_tiles_stairs": "Escaliers en calcaire carrelé craquelé", - "block.me.cracked_limestone_tiles_wall": "Muret en calcaire carrelé craquelé", - "block.me.polished_limestone": "Calcaire poli", - "block.me.polished_limestone_slab": "Dalle en calcaire poli", - "block.me.polished_limestone_vertical_slab": "Dalle verticale en calcaire poli", - "block.me.polished_limestone_stairs": "Escaliers en calcaire poli", - "block.me.polished_limestone_wall": "Muret en calcaire poli", - "block.me.mossy_polished_limestone": "Mossy Polished Limestone", - "block.me.mossy_polished_limestone_slab": "Dalle en calcaire polie moussue", - "block.me.mossy_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli moussue", - "block.me.mossy_polished_limestone_stairs": "Escaliers en calcaire poli moussue", - "block.me.mossy_polished_limestone_wall": "Muret en calcaire poli moussue", - "block.me.cracked_polished_limestone": "Cracked Polished Limestone", - "block.me.cracked_polished_limestone_slab": "Dalle en calcaire poli craquelé", - "block.me.cracked_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli craquelé", - "block.me.cracked_polished_limestone_stairs": "Escaliers en calcaire poli craquelé", - "block.me.cracked_polished_limestone_wall": "Muret en calcaire poli craquelé", - "block.me.chiseled_polished_limestone": "Calcaire poli sculpté", - "block.me.chiseled_limestone_bricks": "Briques de calcaire sculptée", - "block.me.chiseled_limestone": "Chiseled Limestone", - "block.me.chiseled_limestone_tiles": "Chiseled Limestone Tiles", - "block.me.chiseled_smooth_limestone": "Chiseled Smooth Limestone", - "block.me.limestone_brickwork": "Limestone Brickwork", - "block.me.limestone_brickwork_slab": "Limestone Brickwork Slab", - "block.me.limestone_brickwork_vertical_slab": "Limestone Brickwork Vertical Slab", - "block.me.limestone_brickwork_stairs": "Limestone Brickwork Stairs", - "block.me.limestone_brickwork_wall": "Limestone Brickwork Wall", - "block.me.limestone_pressure_plate": "Plaque de pression en calcaire", - "block.me.limestone_button": "Bouton en calcaire", - "block.me.limestone_trapdoor": "Limestone Trapdoor", - "block.me.limestone_rocks": "Limestone Rocks", - "block.me.limestone_stool": "Tabouret en calcaire", - "block.me.limestone_table": "Table en calcaire", - "block.me.limestone_chair": "Chaise en calcaire", - "block.me.pointed_galonn": "Pointed Galonn", - "block.me.old_galonn": "Old Galonn", - "block.me.old_galonn_slab": "Old Galonn Slab", - "block.me.old_galonn_vertical_slab": "Old Galonn Vertical Slab", - "block.me.old_galonn_stairs": "Old Galonn Stairs", - "block.me.old_galonn_wall": "Old Galonn Wall", - "block.me.smooth_galonn": "Smooth Galonn", - "block.me.smooth_galonn_slab": "Smooth Galonn Slab", - "block.me.smooth_galonn_vertical_slab": "Smooth Galonn Vertical Slab", - "block.me.smooth_galonn_stairs": "Smooth Galonn Stairs", - "block.me.smooth_galonn_wall": "Smooth Galonn Wall", - "block.me.mossy_smooth_galonn": "Mossy Smooth Galonn", - "block.me.mossy_smooth_galonn_slab": "Mossy Smooth Galonn Slab", - "block.me.mossy_smooth_galonn_vertical_slab": "Mossy Smooth Galonn Vertical Slab", - "block.me.mossy_smooth_galonn_stairs": "Mossy Smooth Galonn Stairs", - "block.me.mossy_smooth_galonn_wall": "Mossy Smooth Galonn Wall", - "block.me.cracked_smooth_galonn": "Cracked Smooth Galonn", - "block.me.cracked_smooth_galonn_slab": "Cracked Smooth Galonn Slab", - "block.me.cracked_smooth_galonn_vertical_slab": "Cracked Smooth Galonn Vertical Slab", - "block.me.cracked_smooth_galonn_stairs": "Cracked Smooth Galonn Stairs", - "block.me.cracked_smooth_galonn_wall": "Cracked Smooth Galonn Wall", - "block.me.cobbled_galonn": "Cobbled Galonn", - "block.me.cobbled_galonn_slab": "Cobbled Galonn Slab", - "block.me.cobbled_galonn_vertical_slab": "Cobbled Galonn Vertical Slab", - "block.me.cobbled_galonn_stairs": "Cobbled Galonn Stairs", - "block.me.cobbled_galonn_wall": "Cobbled Galonn Wall", - "block.me.mossy_cobbled_galonn": "Mossy Cobbled Galonn", - "block.me.mossy_cobbled_galonn_slab": "Mossy Cobbled Galonn Slab", - "block.me.mossy_cobbled_galonn_vertical_slab": "Mossy Cobbled Galonn Vertical Slab", - "block.me.mossy_cobbled_galonn_stairs": "Mossy Cobbled Galonn Stairs", - "block.me.mossy_cobbled_galonn_wall": "Mossy Cobbled Galonn Wall", - "block.me.galonn": "Galonn", - "block.me.galonn_slab": "Galonn Slab", - "block.me.galonn_vertical_slab": "Galonn Vertical Slab", - "block.me.galonn_stairs": "Galonn Stairs", - "block.me.galonn_wall": "Galonn Wall", - "block.me.galonn_pillar": "Galonn Pillar", - "block.me.mossy_galonn_pillar": "Mossy Galonn Pillar", - "block.me.cracked_galonn_pillar": "Cracked Galonn Pillar", - "block.me.galonn_bricks": "Galonn Bricks", - "block.me.galonn_bricks_slab": "Galonn Bricks Slab", - "block.me.galonn_bricks_vertical_slab": "Galonn Bricks Vertical Slab", - "block.me.galonn_bricks_stairs": "Galonn Bricks Stairs", - "block.me.galonn_bricks_wall": "Galonn Bricks Wall", - "block.me.mossy_galonn_bricks": "Mossy Galonn Bricks", - "block.me.mossy_galonn_bricks_slab": "Mossy Galonn Bricks Slab", - "block.me.mossy_galonn_bricks_vertical_slab": "Mossy Galonn Bricks Vertical Slab", - "block.me.mossy_galonn_bricks_stairs": "Mossy Galonn Bricks Stairs", - "block.me.mossy_galonn_bricks_wall": "Mossy Galonn Bricks Wall", - "block.me.cracked_galonn_bricks": "Cracked Galonn Bricks", - "block.me.cracked_galonn_bricks_slab": "Cracked Galonn Bricks Slab", - "block.me.cracked_galonn_bricks_vertical_slab": "Cracked Galonn Bricks Vertical Slab", - "block.me.cracked_galonn_bricks_stairs": "Cracked Galonn Bricks Stairs", - "block.me.cracked_galonn_bricks_wall": "Cracked Galonn Bricks Wall", - "block.me.galonn_tiles": "Galonn Tiles", - "block.me.galonn_tiles_slab": "Galonn Tiles Slab", - "block.me.galonn_tiles_vertical_slab": "Galonn Tiles Vertical Slab", - "block.me.galonn_tiles_stairs": "Galonn Tiles Stairs", - "block.me.galonn_tiles_wall": "Galonn Tiles Wall", - "block.me.mossy_galonn_tiles": "Mossy Galonn Tiles", - "block.me.mossy_galonn_tiles_slab": "Mossy Galonn Tiles Slab", - "block.me.mossy_galonn_tiles_vertical_slab": "Mossy Galonn Tiles Vertical Slab", - "block.me.mossy_galonn_tiles_stairs": "Mossy Galonn Tiles Stairs", - "block.me.mossy_galonn_tiles_wall": "Mossy Galonn Tiles Wall", - "block.me.cracked_galonn_tiles": "Cracked Galonn Tiles", - "block.me.cracked_galonn_tiles_slab": "Cracked Galonn Tiles Slab", - "block.me.cracked_galonn_tiles_vertical_slab": "Cracked Galonn Tiles Vertical Slab", - "block.me.cracked_galonn_tiles_stairs": "Cracked Galonn Tiles Stairs", - "block.me.cracked_galonn_tiles_wall": "Cracked Galonn Tiles Wall", - "block.me.polished_galonn": "Polished Galonn", - "block.me.polished_galonn_slab": "Polished Galonn Slab", - "block.me.polished_galonn_vertical_slab": "Polished Galonn Vertical Slab", - "block.me.polished_galonn_stairs": "Polished Galonn Stairs", - "block.me.polished_galonn_wall": "Polished Galonn Wall", - "block.me.mossy_polished_galonn": "Mossy Polished Galonn", - "block.me.mossy_polished_galonn_slab": "Mossy Polished Galonn Slab", - "block.me.mossy_polished_galonn_vertical_slab": "Mossy Polished Galonn Vertical Slab", - "block.me.mossy_polished_galonn_stairs": "Mossy Polished Galonn Stairs", - "block.me.mossy_polished_galonn_wall": "Mossy Polished Galonn Wall", - "block.me.cracked_polished_galonn": "Cracked Polished Galonn", - "block.me.cracked_polished_galonn_slab": "Cracked Polished Galonn Slab", - "block.me.cracked_polished_galonn_vertical_slab": "Cracked Polished Galonn Vertical Slab", - "block.me.cracked_polished_galonn_stairs": "Cracked Polished Galonn Stairs", - "block.me.cracked_polished_galonn_wall": "Cracked Polished Galonn Wall", - "block.me.chiseled_polished_galonn": "Chiseled Polished Galonn", - "block.me.chiseled_galonn_bricks": "Chiseled Galonn Bricks", - "block.me.chiseled_galonn": "Chiseled Galonn", - "block.me.chiseled_galonn_tiles": "Chiseled Galonn Tiles", - "block.me.chiseled_smooth_galonn": "Chiseled Smooth Galonn", - "block.me.galonn_brickwork": "Galonn Brickwork", - "block.me.galonn_brickwork_slab": "Galonn Brickwork Slab", - "block.me.galonn_brickwork_vertical_slab": "Galonn Brickwork Vertical Slab", - "block.me.galonn_brickwork_stairs": "Galonn Brickwork Stairs", - "block.me.galonn_brickwork_wall": "Galonn Brickwork Wall", - "block.me.galonn_pressure_plate": "Galonn Pressure Plate", - "block.me.galonn_button": "Galonn Button", - "block.me.galonn_trapdoor": "Galonn Trapdoor", - "block.me.galonn_rocks": "Galonn Rocks", - "block.me.galonn_stool": "Galonn Stool", - "block.me.galonn_table": "Galonn Table", - "block.me.galonn_chair": "Galonn Chair", - "block.me.cobbled_gabbro": "Cobbled Gabbro", - "block.me.cobbled_gabbro_slab": "Cobbled Gabbro Slab", - "block.me.cobbled_gabbro_vertical_slab": "Cobbled Gabbro Vertical Slab", - "block.me.cobbled_gabbro_stairs": "Cobbled Gabbro Stairs", - "block.me.cobbled_gabbro_wall": "Cobbled Gabbro Wall", - "block.me.mossy_cobbled_gabbro": "Mossy Cobbled Gabbro", - "block.me.mossy_cobbled_gabbro_slab": "Mossy Cobbled Gabbro Slab", - "block.me.mossy_cobbled_gabbro_vertical_slab": "Mossy Cobbled Gabbro Vertical Slab", - "block.me.mossy_cobbled_gabbro_stairs": "Mossy Cobbled Gabbro Stairs", - "block.me.mossy_cobbled_gabbro_wall": "Mossy Cobbled Gabbro Wall", - "block.me.gabbro": "Gabbro", - "block.me.gabbro_slab": "Gabbro Slab", - "block.me.gabbro_vertical_slab": "Gabbro Vertical Slab", - "block.me.gabbro_stairs": "Gabbro Stairs", - "block.me.gabbro_wall": "Gabbro Wall", - "block.me.gabbro_pillar": "Gabbro Pillar", - "block.me.mossy_gabbro_pillar": "Mossy Gabbro Pillar", - "block.me.cracked_gabbro_pillar": "Cracked Gabbro Pillar", - "block.me.gabbro_bricks": "Gabbro Bricks", - "block.me.gabbro_bricks_slab": "Gabbro Bricks Slab", - "block.me.gabbro_bricks_vertical_slab": "Gabbro Bricks Vertical Slab", - "block.me.gabbro_bricks_stairs": "Gabbro Bricks Stairs", - "block.me.gabbro_bricks_wall": "Gabbro Bricks Wall", - "block.me.mossy_gabbro_bricks": "Mossy Gabbro Bricks", - "block.me.mossy_gabbro_bricks_slab": "Mossy Gabbro Bricks Slab", - "block.me.mossy_gabbro_bricks_vertical_slab": "Mossy Gabbro Bricks Vertical Slab", - "block.me.mossy_gabbro_bricks_stairs": "Mossy Gabbro Bricks Stairs", - "block.me.mossy_gabbro_bricks_wall": "Mossy Gabbro Bricks Wall", - "block.me.cracked_gabbro_bricks": "Cracked Gabbro Bricks", - "block.me.cracked_gabbro_bricks_slab": "Cracked Gabbro Bricks Slab", - "block.me.cracked_gabbro_bricks_vertical_slab": "Cracked Gabbro Bricks Vertical Slab", - "block.me.cracked_gabbro_bricks_stairs": "Cracked Gabbro Bricks Stairs", - "block.me.cracked_gabbro_bricks_wall": "Cracked Gabbro Bricks Wall", - "block.me.gabbro_tiles": "Gabbro Tiles", - "block.me.gabbro_tiles_slab": "Gabbro Tiles Slab", - "block.me.gabbro_tiles_vertical_slab": "Gabbro Tiles Vertical Slab", - "block.me.gabbro_tiles_stairs": "Gabbro Tiles Stairs", - "block.me.gabbro_tiles_wall": "Gabbro Tiles Wall", - "block.me.mossy_gabbro_tiles": "Mossy Gabbro Tiles", - "block.me.mossy_gabbro_tiles_slab": "Mossy Gabbro Tiles Slab", - "block.me.mossy_gabbro_tiles_vertical_slab": "Mossy Gabbro Tiles Vertical Slab", - "block.me.mossy_gabbro_tiles_stairs": "Mossy Gabbro Tiles Stairs", - "block.me.mossy_gabbro_tiles_wall": "Mossy Gabbro Tiles Wall", - "block.me.cracked_gabbro_tiles": "Cracked Gabbro Tiles", - "block.me.cracked_gabbro_tiles_slab": "Cracked Gabbro Tiles Slab", - "block.me.cracked_gabbro_tiles_vertical_slab": "Cracked Gabbro Tiles Vertical Slab", - "block.me.cracked_gabbro_tiles_stairs": "Cracked Gabbro Tiles Stairs", - "block.me.cracked_gabbro_tiles_wall": "Cracked Gabbro Tiles Wall", - "block.me.polished_gabbro": "Polished Gabbro", - "block.me.polished_gabbro_slab": "Polished Gabbro Slab", - "block.me.polished_gabbro_vertical_slab": "Polished Gabbro Vertical Slab", - "block.me.polished_gabbro_stairs": "Polished Gabbro Stairs", - "block.me.polished_gabbro_wall": "Polished Gabbro Wall", - "block.me.mossy_polished_gabbro": "Mossy Polished Gabbro", - "block.me.mossy_polished_gabbro_slab": "Mossy Polished Gabbro Slab", - "block.me.mossy_polished_gabbro_vertical_slab": "Mossy Polished Gabbro Vertical Slab", - "block.me.mossy_polished_gabbro_stairs": "Mossy Polished Gabbro Stairs", - "block.me.mossy_polished_gabbro_wall": "Mossy Polished Gabbro Wall", - "block.me.cracked_polished_gabbro": "Cracked Polished Gabbro", - "block.me.cracked_polished_gabbro_slab": "Cracked Polished Gabbro Slab", - "block.me.cracked_polished_gabbro_vertical_slab": "Cracked Polished Gabbro Vertical Slab", - "block.me.cracked_polished_gabbro_stairs": "Cracked Polished Gabbro Stairs", - "block.me.cracked_polished_gabbro_wall": "Cracked Polished Gabbro Wall", - "block.me.chiseled_polished_gabbro": "Chiseled Polished Gabbro", - "block.me.chiseled_gabbro_bricks": "Chiseled Gabbro Bricks", - "block.me.gabbro_brickwork": "Gabbro Brickwork", - "block.me.gabbro_brickwork_slab": "Gabbro Brickwork Slab", - "block.me.gabbro_brickwork_vertical_slab": "Gabbro Brickwork Vertical Slab", - "block.me.gabbro_brickwork_stairs": "Gabbro Brickwork Stairs", - "block.me.gabbro_brickwork_wall": "Gabbro Brickwork Wall", - "block.me.gabbro_pressure_plate": "Gabbro Pressure Plate", - "block.me.gabbro_button": "Gabbro Button", - "block.me.gabbro_trapdoor": "Gabbro Trapdoor", - "block.me.gabbro_rocks": "Gabbro Rocks", - "block.me.gabbro_stool": "Gabbro Stool", - "block.me.gabbro_table": "Gabbro Table", - "block.me.gabbro_chair": "Gabbro Chair", - "block.me.cobbled_slate": "Cobbled Slate", - "block.me.cobbled_slate_slab": "Cobbled Slate Slab", - "block.me.cobbled_slate_vertical_slab": "Cobbled Slate Vertical Slab", - "block.me.cobbled_slate_stairs": "Cobbled Slate Stairs", - "block.me.cobbled_slate_wall": "Cobbled Slate Wall", - "block.me.mossy_cobbled_slate": "Mossy Cobbled Slate", - "block.me.mossy_cobbled_slate_slab": "Mossy Cobbled Slate Slab", - "block.me.mossy_cobbled_slate_vertical_slab": "Mossy Cobbled Slate Vertical Slab", - "block.me.mossy_cobbled_slate_stairs": "Mossy Cobbled Slate Stairs", - "block.me.mossy_cobbled_slate_wall": "Mossy Cobbled Slate Wall", - "block.me.slate": "Slate", - "block.me.slate_slab": "Slate Slab", - "block.me.slate_vertical_slab": "Slate Vertical Slab", - "block.me.slate_stairs": "Slate Stairs", - "block.me.slate_wall": "Slate Wall", - "block.me.slate_pillar": "Slate Pillar", - "block.me.mossy_slate_pillar": "Mossy Slate Pillar", - "block.me.cracked_slate_pillar": "Cracked Slate Pillar", - "block.me.slate_bricks": "Slate Bricks", - "block.me.slate_bricks_slab": "Slate Bricks Slab", - "block.me.slate_bricks_vertical_slab": "Slate Bricks Vertical Slab", - "block.me.slate_bricks_stairs": "Slate Bricks Stairs", - "block.me.slate_bricks_wall": "Slate Bricks Wall", - "block.me.mossy_slate_bricks": "Mossy Slate Bricks", - "block.me.mossy_slate_bricks_slab": "Mossy Slate Bricks Slab", - "block.me.mossy_slate_bricks_vertical_slab": "Mossy Slate Bricks Vertical Slab", - "block.me.mossy_slate_bricks_stairs": "Mossy Slate Bricks Stairs", - "block.me.mossy_slate_bricks_wall": "Mossy Slate Bricks Wall", - "block.me.cracked_slate_bricks": "Cracked Slate Bricks", - "block.me.cracked_slate_bricks_slab": "Cracked Slate Bricks Slab", - "block.me.cracked_slate_bricks_vertical_slab": "Cracked Slate Bricks Vertical Slab", - "block.me.cracked_slate_bricks_stairs": "Cracked Slate Bricks Stairs", - "block.me.cracked_slate_bricks_wall": "Cracked Slate Bricks Wall", - "block.me.slate_tiles": "Slate Tiles", - "block.me.slate_tiles_slab": "Slate Tiles Slab", - "block.me.slate_tiles_vertical_slab": "Slate Tiles Vertical Slab", - "block.me.slate_tiles_stairs": "Slate Tiles Stairs", - "block.me.slate_tiles_wall": "Slate Tiles Wall", - "block.me.mossy_slate_tiles": "Mossy Slate Tiles", - "block.me.mossy_slate_tiles_slab": "Mossy Slate Tiles Slab", - "block.me.mossy_slate_tiles_vertical_slab": "Mossy Slate Tiles Vertical Slab", - "block.me.mossy_slate_tiles_stairs": "Mossy Slate Tiles Stairs", - "block.me.mossy_slate_tiles_wall": "Mossy Slate Tiles Wall", - "block.me.cracked_slate_tiles": "Cracked Slate Tiles", - "block.me.cracked_slate_tiles_slab": "Cracked Slate Tiles Slab", - "block.me.cracked_slate_tiles_vertical_slab": "Cracked Slate Tiles Vertical Slab", - "block.me.cracked_slate_tiles_stairs": "Cracked Slate Tiles Stairs", - "block.me.cracked_slate_tiles_wall": "Cracked Slate Tiles Wall", - "block.me.polished_slate": "Polished Slate", - "block.me.polished_slate_slab": "Polished Slate Slab", - "block.me.polished_slate_vertical_slab": "Polished Slate Vertical Slab", - "block.me.polished_slate_stairs": "Polished Slate Stairs", - "block.me.polished_slate_wall": "Polished Slate Wall", - "block.me.mossy_polished_slate": "Mossy Polished Slate", - "block.me.mossy_polished_slate_slab": "Mossy Polished Slate Slab", - "block.me.mossy_polished_slate_vertical_slab": "Mossy Polished Slate Vertical Slab", - "block.me.mossy_polished_slate_stairs": "Mossy Polished Slate Stairs", - "block.me.mossy_polished_slate_wall": "Mossy Polished Slate Wall", - "block.me.cracked_polished_slate": "Cracked Polished Slate", - "block.me.cracked_polished_slate_slab": "Cracked Polished Slate Slab", - "block.me.cracked_polished_slate_vertical_slab": "Cracked Polished Slate Vertical Slab", - "block.me.cracked_polished_slate_stairs": "Cracked Polished Slate Stairs", - "block.me.cracked_polished_slate_wall": "Cracked Polished Slate Wall", - "block.me.chiseled_polished_slate": "Chiseled Polished Slate", - "block.me.chiseled_slate_bricks": "Chiseled Slate Bricks", - "block.me.slate_pressure_plate": "Slate Pressure Plate", - "block.me.slate_button": "Slate Button", - "block.me.slate_trapdoor": "Slate Trapdoor", - "block.me.slate_rocks": "Slate Rocks", - "block.me.slate_stool": "Slate Stool", - "block.me.slate_table": "Slate Table", - "block.me.slate_chair": "Slate Chair", - "block.me.chiseled_polished_granite": "Granite poli sculpté", - "block.me.chiseled_granite_bricks": "Briques en granite sculpté", - "block.me.chiseled_granite": "Chiseled Granite", - "block.me.chiseled_granite_tiles": "Chiseled Granite Tiles", - "block.me.chiseled_smooth_granite": "Chiseled Smooth Granite", - "block.me.smooth_granite": "Smooth Granite", - "block.me.smooth_granite_slab": "Smooth Granite Slab", - "block.me.smooth_granite_vertical_slab": "Smooth Granite Vertical Slab", - "block.me.smooth_granite_stairs": "Smooth Granite Stairs", - "block.me.smooth_granite_wall": "Smooth Granite Wall", - "block.me.mossy_smooth_granite": "Mossy Smooth Granite", - "block.me.mossy_smooth_granite_slab": "Mossy Smooth Granite Slab", - "block.me.mossy_smooth_granite_vertical_slab": "Mossy Smooth Granite Vertical Slab", - "block.me.mossy_smooth_granite_stairs": "Mossy Smooth Granite Stairs", - "block.me.mossy_smooth_granite_wall": "Mossy Smooth Granite Wall", - "block.me.cracked_smooth_granite": "Cracked Smooth Granite", - "block.me.cracked_smooth_granite_slab": "Cracked Smooth Granite Slab", - "block.me.cracked_smooth_granite_vertical_slab": "Cracked Smooth Granite Vertical Slab", - "block.me.cracked_smooth_granite_stairs": "Cracked Smooth Granite Stairs", - "block.me.cracked_smooth_granite_wall": "Cracked Smooth Granite Wall", - "block.me.cobbled_granite": "Pierre de granite", - "block.me.cobbled_granite_slab": "Dalle en pierre de granite", - "block.me.cobbled_granite_vertical_slab": "Dalle verticale en pierre de granite", - "block.me.cobbled_granite_stairs": "Escaliers en pierre de granite", - "block.me.cobbled_granite_wall": "Muret en pierre de granite", - "block.me.mossy_cobbled_granite": "Pierre de granite moussue", - "block.me.mossy_cobbled_granite_slab": "Dalle en pierre de granite moussue", - "block.me.mossy_cobbled_granite_vertical_slab": "Dalle verticale en pierre de granite moussue", - "block.me.mossy_cobbled_granite_stairs": "Escaliers en pierre de granite moussue", - "block.me.mossy_cobbled_granite_wall": "Murret en pierre de granite moussue", - "block.me.granite_vertical_slab": "Dalle verticale en granite", - "block.me.granite_pillar": "Pilier en granite", - "block.me.mossy_granite_pillar": "Pilier en granite moussue", - "block.me.cracked_granite_pillar": "Pilier en granite craquelé", - "block.me.granite_bricks": "Briques en granite", - "block.me.granite_bricks_slab": "Dalle en briques de granite", - "block.me.granite_bricks_vertical_slab": "Dalle verticale en briques de granite", - "block.me.granite_bricks_stairs": "Escaliers en briques de granite", - "block.me.granite_bricks_wall": "Muret de briques de granite", - "block.me.mossy_granite_bricks": "Briques de granite moussue", - "block.me.mossy_granite_bricks_slab": "Dalle en briques de granite moussue", - "block.me.mossy_granite_bricks_vertical_slab": "Dalle verticale en briques de granite moussue", - "block.me.mossy_granite_bricks_stairs": "Escaliers en briques de granite moussue", - "block.me.mossy_granite_bricks_wall": "Muret en briques de granite moussue", - "block.me.cracked_granite_bricks": "Briques de granite craquelée", - "block.me.cracked_granite_bricks_slab": "Dalle en briques de granite craquelée", - "block.me.cracked_granite_bricks_vertical_slab": "Dalle verticale en briques de granite craquelée", - "block.me.cracked_granite_bricks_stairs": "Escaliers en briques de granite craquelée", - "block.me.cracked_granite_bricks_wall": "Muret en briques de granite craquelée", - "block.me.granite_tiles": "Granite carrelée", - "block.me.granite_tiles_slab": "Dalle en granite carrelée", - "block.me.granite_tiles_vertical_slab": "Dalle verticale en granite carrelée", - "block.me.granite_tiles_stairs": "Escaliers en granite carrelée", - "block.me.granite_tiles_wall": "Muret en granite carrelée", - "block.me.mossy_granite_tiles": "Granite carrelée moussue", - "block.me.mossy_granite_tiles_slab": "Dalle en granite carrelée moussue", - "block.me.mossy_granite_tiles_vertical_slab": "Dalle verticale en granite carrelée moussue", - "block.me.mossy_granite_tiles_stairs": "Escaliers en granite carrelée moussue", - "block.me.mossy_granite_tiles_wall": "Muret en granite carrelée moussue", - "block.me.cracked_granite_tiles": "Granite carrelée craquelé", - "block.me.cracked_granite_tiles_slab": "Dalle en granite carrelée craquelé", - "block.me.cracked_granite_tiles_vertical_slab": "Dalle verticale en granite carrelée craquelé", - "block.me.cracked_granite_tiles_stairs": "Escaliers en granite carrelée craquelé", - "block.me.cracked_granite_tiles_wall": "Muret en granite carrelée craquelé", - "block.me.polished_granite_vertical_slab": "Dalle verticale en granite poli", - "block.me.mossy_polished_granite": "Mossy Polished Granite", - "block.me.mossy_polished_granite_slab": "Dalle en granite poli moussue", - "block.me.mossy_polished_granite_vertical_slab": "Dalle verticale en granite poli moussue", - "block.me.mossy_polished_granite_stairs": "Escaliers en granite poli moussue", - "block.me.mossy_polished_granite_wall": "Murret en granite poli moussue", - "block.me.cracked_polished_granite": "Cracked Polished Granite", - "block.me.cracked_polished_granite_slab": "Dalle en granite poli craquelé", - "block.me.cracked_polished_granite_vertical_slab": "Dalle verticale en granite poli craquelé", - "block.me.cracked_polished_granite_stairs": "Escaliers en granite poli craquelé", - "block.me.cracked_polished_granite_wall": "Muret en granite poli craquelé", - "block.me.old_granite": "Old Granite", - "block.me.old_granite_slab": "Old Granite Slab", - "block.me.old_granite_vertical_slab": "Old Granite Vertical Slab", - "block.me.old_granite_stairs": "Old Granite Stairs", - "block.me.old_granite_wall": "Old Granite Wall", - "block.me.granite_brickwork": "Granite Brickwork", - "block.me.granite_brickwork_slab": "Granite Brickwork Slab", - "block.me.granite_brickwork_vertical_slab": "Granite Brickwork Vertical Slab", - "block.me.granite_brickwork_stairs": "Granite Brickwork Stairs", - "block.me.granite_brickwork_wall": "Granite Brickwork Wall", - "block.me.granite_rocks": "Granite Rocks", - "block.me.granite_stool": "Tabouret en granite", - "block.me.granite_table": "Table en granite", - "block.me.granite_chair": "Chaise en granite", - "block.me.chiseled_polished_diorite": "Diorite polie sculptée", - "block.me.chiseled_diorite_bricks": "Briques de diorite sculptée", - "block.me.chiseled_diorite": "Chiseled Diorite", - "block.me.chiseled_diorite_tiles": "Chiseled Diorite Tiles", - "block.me.chiseled_smooth_diorite": "Chiseled Smooth Diorite", - "block.me.smooth_diorite": "Diorite polie", - "block.me.smooth_diorite_slab": "Dalle en diorite polie", - "block.me.smooth_diorite_vertical_slab": "Dalle verticale en diorite polie", - "block.me.smooth_diorite_stairs": "Escaliers en diorite polie", - "block.me.smooth_diorite_wall": "Muret en diorite polie", - "block.me.mossy_smooth_diorite": "Mossy Smooth Diorite", - "block.me.mossy_smooth_diorite_slab": "Mossy Smooth Diorite Slab", - "block.me.mossy_smooth_diorite_vertical_slab": "Mossy Smooth Diorite Vertical Slab", - "block.me.mossy_smooth_diorite_stairs": "Mossy Smooth Diorite Stairs", - "block.me.mossy_smooth_diorite_wall": "Mossy Smooth Diorite Wall", - "block.me.cracked_smooth_diorite": "Cracked Smooth Diorite", - "block.me.cracked_smooth_diorite_slab": "Cracked Smooth Diorite Slab", - "block.me.cracked_smooth_diorite_vertical_slab": "Cracked Smooth Diorite Vertical Slab", - "block.me.cracked_smooth_diorite_stairs": "Cracked Smooth Diorite Stairs", - "block.me.cracked_smooth_diorite_wall": "Cracked Smooth Diorite Wall", - "block.me.cobbled_diorite": "Pierre de diorite", - "block.me.cobbled_diorite_slab": "Dalle en pierre de diorite", - "block.me.cobbled_diorite_vertical_slab": "Dalle verticale en pierre de diorite", - "block.me.cobbled_diorite_stairs": "Escaliers en pierre de diorite", - "block.me.cobbled_diorite_wall": "Murret en pierre de diorite", - "block.me.mossy_cobbled_diorite": "Pierre de diorite moussue", - "block.me.mossy_cobbled_diorite_slab": "Dalle en pierre de diorite moussue", - "block.me.mossy_cobbled_diorite_vertical_slab": "Dalle verticale en pierre de diorite moussue", - "block.me.mossy_cobbled_diorite_stairs": "Escaliers en pierre de diorite moussue", - "block.me.mossy_cobbled_diorite_wall": "Muret en pierre de diorite moussue", - "block.me.diorite_vertical_slab": "Dalle verticale en diorite", - "block.me.diorite_pillar": "Pillier en diorite", - "block.me.mossy_diorite_pillar": "Pilier en diorite moussue", - "block.me.cracked_diorite_pillar": "Pilier en diorite craquelée", - "block.me.diorite_bricks": "Briques de diorite", - "block.me.diorite_bricks_slab": "Dalle en briques de diorite", - "block.me.diorite_bricks_vertical_slab": "Dalle verticale en briques de diorite", - "block.me.diorite_bricks_stairs": "Escaliers en briques de diorite", - "block.me.diorite_bricks_wall": "Muret en briques de diorite", - "block.me.mossy_diorite_bricks": "Briques de diorite moussue", - "block.me.mossy_diorite_bricks_slab": "Dalle en briques de diorite moussue", - "block.me.mossy_diorite_bricks_vertical_slab": "Dalle verticale en briques de diorite moussue", - "block.me.mossy_diorite_bricks_stairs": "Escaliers en briques de diorite moussue", - "block.me.mossy_diorite_bricks_wall": "Muret en briques de diorite moussue", - "block.me.cracked_diorite_bricks": "Briques de diorite craquelée", - "block.me.cracked_diorite_bricks_slab": "Dalle en briques de diorite craquelée", - "block.me.cracked_diorite_bricks_vertical_slab": "Dalle verticale en briques de diorite craquelée", - "block.me.cracked_diorite_bricks_stairs": "Escaliers en briques de diorite craquelée", - "block.me.cracked_diorite_bricks_wall": "Muret en briques de diorite craquelée", - "block.me.diorite_tiles": "Diorite carrelée", - "block.me.diorite_tiles_slab": "Dalle en diorite carrelée", - "block.me.diorite_tiles_vertical_slab": "Dalle verticale en diorite carrelée", - "block.me.diorite_tiles_stairs": "Escaliers en diorite carrelée", - "block.me.diorite_tiles_wall": "Muret en diorite carrelée", - "block.me.mossy_diorite_tiles": "Diorite carrelée moussue", - "block.me.mossy_diorite_tiles_slab": "Dalle en diorite carrelée moussue", - "block.me.mossy_diorite_tiles_vertical_slab": "Dalle verticale en diorite carrelée moussue", - "block.me.mossy_diorite_tiles_stairs": "Escaliers en diorite carrelée moussue", - "block.me.mossy_diorite_tiles_wall": "Muret en diorite carrelée moussue", - "block.me.cracked_diorite_tiles": "Diorite carrelée craquelée", - "block.me.cracked_diorite_tiles_slab": "Dalle en diorite carrelée craquelée", - "block.me.cracked_diorite_tiles_vertical_slab": "Dalle verticale en diorite carrelée craquelée", - "block.me.cracked_diorite_tiles_stairs": "Escaliers en diorite carrelée craquelée", - "block.me.cracked_diorite_tiles_wall": "Muret en diorite carrelée craquelée", - "block.me.polished_diorite_vertical_slab": "Dalle verticale en diorite polie", - "block.me.mossy_polished_diorite": "Mossy Polished Diorite", - "block.me.mossy_polished_diorite_slab": "Dalle en diorite polie moussue", - "block.me.mossy_polished_diorite_vertical_slab": "Dalle verticale en diorite polie moussue", - "block.me.mossy_polished_diorite_stairs": "Escaliers en diorite polie moussue", - "block.me.mossy_polished_diorite_wall": "Muret en diorite polie moussue", - "block.me.cracked_polished_diorite": "Cracked Polished Diorite", - "block.me.cracked_polished_diorite_slab": "Dalle en diorite polie craquelée", - "block.me.cracked_polished_diorite_vertical_slab": "Dalle verticale en diorite polie craquelée", - "block.me.cracked_polished_diorite_stairs": "Escaliers en diorite polie craquelée", - "block.me.cracked_polished_diorite_wall": "Muret en diorite polie craquelée", - "block.me.old_diorite": "Old Diorite", - "block.me.old_diorite_slab": "Old Diorite Slab", - "block.me.old_diorite_vertical_slab": "Old Diorite Vertical Slab", - "block.me.old_diorite_stairs": "Old Diorite Stairs", - "block.me.old_diorite_wall": "Old Diorite Wall", - "block.me.diorite_brickwork": "Diorite Brickwork", - "block.me.diorite_brickwork_slab": "Diorite Brickwork Slab", - "block.me.diorite_brickwork_vertical_slab": "Diorite Brickwork Vertical Slab", - "block.me.diorite_brickwork_stairs": "Diorite Brickwork Stairs", - "block.me.diorite_brickwork_wall": "Diorite Brickwork Wall", - "block.me.diorite_rocks": "Diorite Rocks", - "block.me.diorite_stool": "Tabouret en diorite", - "block.me.diorite_table": "Table en diorite", - "block.me.diorite_chair": "Chaise en diorite", - "block.me.old_tuff": "Old Tuff", - "block.me.old_tuff_slab": "Old Tuff Slab", - "block.me.old_tuff_vertical_slab": "Old Tuff Vertical Slab", - "block.me.old_tuff_stairs": "Old Tuff Stairs", - "block.me.old_tuff_wall": "Old Tuff Wall", - "block.me.smooth_tuff": "Smooth Tuff", - "block.me.smooth_tuff_slab": "Smooth Tuff Slab", - "block.me.smooth_tuff_vertical_slab": "Smooth Tuff Vertical Slab", - "block.me.smooth_tuff_stairs": "Smooth Tuff Stairs", - "block.me.smooth_tuff_wall": "Smooth Tuff Wall", - "block.me.mossy_smooth_tuff": "Mossy Smooth Tuff", - "block.me.mossy_smooth_tuff_slab": "Mossy Smooth Tuff Slab", - "block.me.mossy_smooth_tuff_vertical_slab": "Mossy Smooth Tuff Vertical Slab", - "block.me.mossy_smooth_tuff_stairs": "Mossy Smooth Tuff Stairs", - "block.me.mossy_smooth_tuff_wall": "Mossy Smooth Tuff Wall", - "block.me.cracked_smooth_tuff": "Cracked Smooth Tuff", - "block.me.cracked_smooth_tuff_slab": "Cracked Smooth Tuff Slab", - "block.me.cracked_smooth_tuff_vertical_slab": "Cracked Smooth Tuff Vertical Slab", - "block.me.cracked_smooth_tuff_stairs": "Cracked Smooth Tuff Stairs", - "block.me.cracked_smooth_tuff_wall": "Cracked Smooth Tuff Wall", - "block.me.cobbled_tuff": "Cobbled Tuff", - "block.me.cobbled_tuff_slab": "Cobbled Tuff Slab", - "block.me.cobbled_tuff_vertical_slab": "Cobbled Tuff Vertical Slab", - "block.me.cobbled_tuff_stairs": "Cobbled Tuff Stairs", - "block.me.cobbled_tuff_wall": "Cobbled Tuff Wall", - "block.me.mossy_cobbled_tuff": "Mossy Cobbled Tuff", - "block.me.mossy_cobbled_tuff_slab": "Mossy Cobbled Tuff Slab", - "block.me.mossy_cobbled_tuff_vertical_slab": "Mossy Cobbled Tuff Vertical Slab", - "block.me.mossy_cobbled_tuff_stairs": "Mossy Cobbled Tuff Stairs", - "block.me.mossy_cobbled_tuff_wall": "Mossy Cobbled Tuff Wall", - "block.me.tuff_vertical_slab": "Dalle verticale en tuf", - "block.me.tuff_pillar": "Tuff Pillar", - "block.me.mossy_tuff_pillar": "Mossy Tuff Pillar", - "block.me.cracked_tuff_pillar": "Cracked Tuff Pillar", - "block.me.tuff_bricks": "Tuff Bricks", - "block.me.tuff_bricks_slab": "Tuff Bricks Slab", - "block.me.tuff_brick_vertical_slab": "Tuff Bricks Vertical Slab", - "block.me.tuff_bricks_stairs": "Tuff Bricks Stairs", - "block.me.tuff_bricks_wall": "Tuff Bricks Wall", - "block.me.mossy_tuff_bricks": "Mossy Tuff Bricks", - "block.me.mossy_tuff_bricks_slab": "Mossy Tuff Bricks Slab", - "block.me.mossy_tuff_bricks_vertical_slab": "Mossy Tuff Bricks Vertical Slab", - "block.me.mossy_tuff_bricks_stairs": "Mossy Tuff Bricks Stairs", - "block.me.mossy_tuff_bricks_wall": "Mossy Tuff Bricks Wall", - "block.me.cracked_tuff_bricks": "Cracked Tuff Bricks", - "block.me.cracked_tuff_bricks_slab": "Cracked Tuff Bricks Slab", - "block.me.cracked_tuff_bricks_vertical_slab": "Cracked Tuff Bricks Vertical Slab", - "block.me.cracked_tuff_bricks_stairs": "Cracked Tuff Bricks Stairs", - "block.me.cracked_tuff_bricks_wall": "Cracked Tuff Bricks Wall", - "block.me.tuff_tiles": "Tuff Tiles", - "block.me.tuff_tiles_slab": "Tuff Tiles Slab", - "block.me.tuff_tiles_vertical_slab": "Tuff Tiles Vertical Slab", - "block.me.tuff_tiles_stairs": "Tuff Tiles Stairs", - "block.me.tuff_tiles_wall": "Tuff Tiles Wall", - "block.me.mossy_tuff_tiles": "Mossy Tuff Tiles", - "block.me.mossy_tuff_tiles_slab": "Mossy Tuff Tiles Slab", - "block.me.mossy_tuff_tiles_vertical_slab": "Mossy Tuff Tiles Vertical Slab", - "block.me.mossy_tuff_tiles_stairs": "Mossy Tuff Tiles Stairs", - "block.me.mossy_tuff_tiles_wall": "Mossy Tuff Tiles Wall", - "block.me.cracked_tuff_tiles": "Cracked Tuff Tiles", - "block.me.cracked_tuff_tiles_slab": "Cracked Tuff Tiles Slab", - "block.me.cracked_tuff_tiles_vertical_slab": "Cracked Tuff Tiles Vertical Slab", - "block.me.cracked_tuff_tiles_stairs": "Cracked Tuff Tiles Stairs", - "block.me.cracked_tuff_tiles_wall": "Cracked Tuff Tiles Wall", - "block.me.polished_tuff_vertical_slab": "Polished Tuff Vertical Slab", - "block.me.mossy_polished_tuff": "Mossy Polished Tuff", - "block.me.mossy_polished_tuff_slab": "Mossy Polished Tuff Slab", - "block.me.mossy_polished_tuff_vertical_slab": "Mossy Polished Tuff Vertical Slab", - "block.me.mossy_polished_tuff_stairs": "Mossy Polished Tuff Stairs", - "block.me.mossy_polished_tuff_wall": "Mossy Polished Tuff Wall", - "block.me.cracked_polished_tuff": "Cracked Polished Tuff", - "block.me.cracked_polished_tuff_slab": "Cracked Polished Tuff Slab", - "block.me.cracked_polished_tuff_vertical_slab": "Cracked Polished Tuff Vertical Slab", - "block.me.cracked_polished_tuff_stairs": "Cracked Polished Tuff Stairs", - "block.me.cracked_polished_tuff_wall": "Cracked Polished Tuff Wall", - "block.me.chiseled_polished_tuff": "Chiseled Polished Tuff", - "block.me.chiseled_tuff_bricks": "Chiseled Tuff Bricks", - "block.me.chiseled_tuff_tiles": "Chiseled Tuff Tiles", - "block.me.chiseled_smooth_tuff": "Chiseled Smooth Tuff", - "block.me.tuff_brickwork": "Tuff Brickwork", - "block.me.tuff_brickwork_slab": "Tuff Brickwork Slab", - "block.me.tuff_brickwork_vertical_slab": "Tuff Brickwork Vertical Slab", - "block.me.tuff_brickwork_stairs": "Tuff Brickwork Stairs", - "block.me.tuff_brickwork_wall": "Tuff Brickwork Wall", - "block.me.tuff_carved_window": "Tuff Carved Window", - "block.me.tuff_carved_window_pane": "Tuff Carved Window Pane", - "block.me.tuff_rocks": "Tuff Rocks", - "block.me.tuff_stool": "Tabouret en tuf", - "block.me.tuff_table": "Table en tuf", - "block.me.tuff_chair": "Chaise en tuf", - "block.me.chiseled_polished_andesite": "Andésite polie sculptée", - "block.me.chiseled_andesite_bricks": "Briques d'andésite sculptée", - "block.me.chiseled_andesite": "Chiseled Andesite", - "block.me.chiseled_andesite_tiles": "Chiseled Andesite Tiles", - "block.me.chiseled_smooth_andesite": "Chiseled Smooth Andesite", - "block.me.smooth_andesite": "Smooth Andesite", - "block.me.smooth_andesite_slab": "Smooth Andesite Slab", - "block.me.smooth_andesite_vertical_slab": "Smooth Andesite Vertical Slab", - "block.me.smooth_andesite_stairs": "Smooth Andesite Stairs", - "block.me.smooth_andesite_wall": "Smooth Andesite Wall", - "block.me.mossy_smooth_andesite": "Mossy Smooth Andesite", - "block.me.mossy_smooth_andesite_slab": "Mossy Smooth Andesite Slab", - "block.me.mossy_smooth_andesite_vertical_slab": "Mossy Smooth Andesite Vertical Slab", - "block.me.mossy_smooth_andesite_stairs": "Mossy Smooth Andesite Stairs", - "block.me.mossy_smooth_andesite_wall": "Mossy Smooth Andesite Wall", - "block.me.cracked_smooth_andesite": "Cracked Smooth Andesite", - "block.me.cracked_smooth_andesite_slab": "Cracked Smooth Andesite Slab", - "block.me.cracked_smooth_andesite_vertical_slab": "Cracked Smooth Andesite Vertical Slab", - "block.me.cracked_smooth_andesite_stairs": "Cracked Smooth Andesite Stairs", - "block.me.cracked_smooth_andesite_wall": "Cracked Smooth Andesite Wall", - "block.me.cobbled_andesite": "Pierre d'andésite", - "block.me.cobbled_andesite_slab": "Dalle en pierre d'andésite", - "block.me.cobbled_andesite_vertical_slab": "Dalle verticale en pierre d'andésite", - "block.me.cobbled_andesite_stairs": "Escaliers en pierre d'andésite", - "block.me.cobbled_andesite_wall": "Muret en pierre d'andésite", - "block.me.mossy_cobbled_andesite": "Pierre d'andésite moussue", - "block.me.mossy_cobbled_andesite_slab": "Dalle en pierre d'andésite moussue", - "block.me.mossy_cobbled_andesite_vertical_slab": "Dalle verticale en pierre d'andésite moussue", - "block.me.mossy_cobbled_andesite_stairs": "Escaliers en pierre d'andésite moussue", - "block.me.mossy_cobbled_andesite_wall": "Muret en pierre d'andésite moussue", - "block.me.andesite_vertical_slab": "Dalle verticale en andésite", - "block.me.andesite_pillar": "Pilier en andésite", - "block.me.mossy_andesite_pillar": "Pilier en andésite moussue", - "block.me.cracked_andesite_pillar": "Pilier en andésite craquelé", - "block.me.andesite_bricks": "Briques d'andésite", - "block.me.andesite_bricks_slab": "Dalle en briques d'andésite", - "block.me.andesite_bricks_vertical_slab": "Dalle verticale en briques d'andésite", - "block.me.andesite_bricks_stairs": "Escaliers en briques d'andésite", - "block.me.andesite_bricks_wall": "Muret en briques d'andésite", - "block.me.mossy_andesite_bricks": "Briques d'andésite moussue", - "block.me.mossy_andesite_bricks_slab": "Dalle en briques d'andésite moussue", - "block.me.mossy_andesite_bricks_vertical_slab": "Dalle verticale en briques d'andésite moussue", - "block.me.mossy_andesite_bricks_stairs": "Escaliers en briques d'andésite moussue", - "block.me.mossy_andesite_bricks_wall": "Muret en briques d'andésite moussue", - "block.me.cracked_andesite_bricks": "Briques d'andésite craquelée", - "block.me.cracked_andesite_bricks_slab": "Dalle en briques d'andésite craquelée", - "block.me.cracked_andesite_bricks_vertical_slab": "Dalle verticale en briques d'andésite craquelée", - "block.me.cracked_andesite_bricks_stairs": "Escaliers en briques d'andésite craquelée", - "block.me.cracked_andesite_bricks_wall": "Muret en briques d'andésite craquelée", - "block.me.andesite_tiles": "Andésite carrelée", - "block.me.andesite_tiles_slab": "Dalle en andésite carrelée", - "block.me.andesite_tiles_vertical_slab": "Dalle verticale en andésite carrelée", - "block.me.andesite_tiles_stairs": "Escaliers en andésite carrelée", - "block.me.andesite_tiles_wall": "Muret en andésite carrelée", - "block.me.mossy_andesite_tiles": "Andésite carrelée moussue", - "block.me.mossy_andesite_tiles_slab": "Dalle en andésite carrelée moussue", - "block.me.mossy_andesite_tiles_vertical_slab": "Dalle verticale en andésite carrelée moussue", - "block.me.mossy_andesite_tiles_stairs": "Escaliers en andésite carrelée moussue", - "block.me.mossy_andesite_tiles_wall": "Muret en andésite carrelée moussue", - "block.me.cracked_andesite_tiles": "Andésite carrelée craquelée", - "block.me.cracked_andesite_tiles_slab": "Dalle en andésite carrelée craquelée", - "block.me.cracked_andesite_tiles_vertical_slab": "Dalle verticale en andésite carrelée craquelée", - "block.me.cracked_andesite_tiles_stairs": "Escaliers en andésite carrelée craquelée", - "block.me.cracked_andesite_tiles_wall": "Muret en andésite carrelée craquelée", - "block.me.polished_andesite_vertical_slab": "Dalle verticale en andésite carrelée craquelée", - "block.me.mossy_polished_andesite": "Mossy Polished Andesite", - "block.me.mossy_polished_andesite_slab": "Dalle en andésite polie moussue", - "block.me.mossy_polished_andesite_vertical_slab": "Dalle verticale en andésite polie moussue", - "block.me.mossy_polished_andesite_stairs": "Escaliers en andésite polie moussue", - "block.me.mossy_polished_andesite_wall": "Muret en andésite polie moussue", - "block.me.cracked_polished_andesite": "Cracked Polished Andesite", - "block.me.cracked_polished_andesite_slab": "Dalle en andésite polie craquelée", - "block.me.cracked_polished_andesite_vertical_slab": "Dalle verticale en andésite polie craquelée", - "block.me.cracked_polished_andesite_stairs": "Escaliers en andésite polie craquelée", - "block.me.cracked_polished_andesite_wall": "Muret en andésite polie craquelée", - "block.me.old_andesite": "Old Andesite", - "block.me.old_andesite_slab": "Old Andesite Slab", - "block.me.old_andesite_vertical_slab": "Old Andesite Vertical Slab", - "block.me.old_andesite_stairs": "Old Andesite Stairs", - "block.me.old_andesite_wall": "Old Andesite Wall", - "block.me.andesite_brickwork": "Andesite Brickwork", - "block.me.andesite_brickwork_slab": "Andesite Brickwork Slab", - "block.me.andesite_brickwork_vertical_slab": "Andesite Brickwork Vertical Slab", - "block.me.andesite_brickwork_stairs": "Andesite Brickwork Stairs", - "block.me.andesite_brickwork_wall": "Andesite Brickwork Wall", - "block.me.andesite_rocks": "Andesite Rocks", - "block.me.andesite_stool": "Tabouret en andésite", - "block.me.andesite_table": "Table en andésite", - "block.me.andesite_chair": "Chaise en andésite", - "block.me.old_bricks": "Briques anciennes", - "block.me.old_bricks_slab": "Dalle en briques anciennes", - "block.me.old_bricks_vertical_slab": "Dalle verticale en briques anciennes", - "block.me.old_bricks_stairs": "Escaliers en briques anciennes", - "block.me.old_bricks_wall": "Muret en briques anciennes", - "block.me.tan_clay_bricks": "Tan Clay Bricks", - "block.me.tan_clay_bricks_slab": "Tan Clay Bricks Slab", - "block.me.tan_clay_bricks_vertical_slab": "Tan Clay Bricks Vertical Slab", - "block.me.tan_clay_bricks_stairs": "Tan Clay Bricks Stairs", - "block.me.tan_clay_bricks_wall": "Tan Clay Bricks Wall", - "block.me.tan_clay_brickwork": "Tan Clay Brickwork", - "block.me.tan_clay_brickwork_slab": "Tan Clay Brickwork Slab", - "block.me.tan_clay_brickwork_vertical_slab": "Tan Clay Brickwork Vertical Slab", - "block.me.tan_clay_brickwork_stairs": "Tan Clay Brickwork Stairs", - "block.me.tan_clay_brickwork_wall": "Tan Clay Brickwork Wall", - "block.me.old_basalt": "Old Basalt", - "block.me.old_basalt_slab": "Old Basalt Slab", - "block.me.old_basalt_vertical_slab": "Old Basalt Vertical Slab", - "block.me.old_basalt_stairs": "Old Basalt Stairs", - "block.me.old_basalt_wall": "Old Basalt Wall", - "block.me.mossy_smooth_basalt": "Mossy Smooth Basalt", - "block.me.mossy_smooth_basalt_slab": "Mossy Smooth Basalt Slab", - "block.me.mossy_smooth_basalt_vertical_slab": "Mossy Smooth Basalt Vertical Slab", - "block.me.mossy_smooth_basalt_stairs": "Mossy Smooth Basalt Stairs", - "block.me.mossy_smooth_basalt_wall": "Mossy Smooth Basalt Wall", - "block.me.cracked_smooth_basalt": "Cracked Smooth Basalt", - "block.me.cracked_smooth_basalt_slab": "Cracked Smooth Basalt Slab", - "block.me.cracked_smooth_basalt_vertical_slab": "Cracked Smooth Basalt Vertical Slab", - "block.me.cracked_smooth_basalt_stairs": "Cracked Smooth Basalt Stairs", - "block.me.cracked_smooth_basalt_wall": "Cracked Smooth Basalt Wall", - "block.me.cobbled_basalt": "Pierre de basalte", - "block.me.cobbled_basalt_slab": "Dalle en pierre de basalte", - "block.me.cobbled_basalt_vertical_slab": "Dalle verticale en pierre de basalte", - "block.me.cobbled_basalt_stairs": "Escaliers en pierre de basalte", - "block.me.cobbled_basalt_wall": "Muret en pierre de basalte", - "block.me.mossy_cobbled_basalt": "Mossy Cobbled Basalt", - "block.me.mossy_cobbled_basalt_slab": "Mossy Cobbled Basalt Slab", - "block.me.mossy_cobbled_basalt_vertical_slab": "Mossy Cobbled Basalt Vertical Slab", - "block.me.mossy_cobbled_basalt_stairs": "Mossy Cobbled Basalt Stairs", - "block.me.mossy_cobbled_basalt_wall": "Mossy Cobbled Basalt Wall", - "block.me.basalt_pillar": "Pilier en basalte", - "block.me.mossy_basalt_pillar": "Pilier en basalte moussue", - "block.me.cracked_basalt_pillar": "Pilier en basalte craquelé", - "block.me.basalt_bricks": "Briques de basalte", - "block.me.basalt_bricks_slab": "Dalle en briques de basalte", - "block.me.basalt_bricks_vertical_slab": "Dalle verticale en briques de basalte", - "block.me.basalt_bricks_stairs": "Escaliers en briques de basalte", - "block.me.basalt_bricks_wall": "Muret en briques de basalte", - "block.me.mossy_basalt_bricks": "Briques de basalte moussue", - "block.me.mossy_basalt_bricks_slab": "Dalle en briques de basalte moussue", - "block.me.mossy_basalt_bricks_vertical_slab": "Dalle verticale en briques de basalte moussue", - "block.me.mossy_basalt_bricks_stairs": "Escaliers en briques de basalte moussue", - "block.me.mossy_basalt_bricks_wall": "Muret en briques de basalte moussue", - "block.me.cracked_basalt_bricks": "Briques de basalte craquelé", - "block.me.cracked_basalt_bricks_slab": "Dalle en briques de basalte craquelé", - "block.me.cracked_basalt_bricks_vertical_slab": "Dalle verticale en briques de basalte craquelé", - "block.me.cracked_basalt_bricks_stairs": "Escaliers en briques de basalte craquelé", - "block.me.cracked_basalt_bricks_wall": "Muret en briques de basalte craquelé", - "block.me.basalt_tiles": "Basalte carrelé", - "block.me.basalt_tiles_slab": "Dalle en basalte carrelé", - "block.me.basalt_tiles_vertical_slab": "Dalle verticale en basalte carrelé", - "block.me.basalt_tiles_stairs": "Escaliers en basalte carrelé", - "block.me.basalt_tiles_wall": "Muret en basalte carrelé", - "block.me.mossy_basalt_tiles": "Basalte carrelé moussue", - "block.me.mossy_basalt_tiles_slab": "Dalle en basalte carrelé moussue", - "block.me.mossy_basalt_tiles_vertical_slab": "Dalle verticale en basalte carrelé moussue", - "block.me.mossy_basalt_tiles_stairs": "Escaliers en basalte carrelé moussue", - "block.me.mossy_basalt_tiles_wall": "Muret en basalte carrelé moussue", - "block.me.cracked_basalt_tiles": "Basalte carrelé craquelé", - "block.me.cracked_basalt_tiles_slab": "Dalle en basalte carrelé craquelé", - "block.me.cracked_basalt_tiles_vertical_slab": "Dalle verticale en basalte carrelé craquelé", - "block.me.cracked_basalt_tiles_stairs": "Escaliers en basalte carrelé craquelé", - "block.me.cracked_basalt_tiles_wall": "Muret en basalte carrelé craquelé", - "block.me.polished_basalt_slab": "Polished Basalt Slab", - "block.me.polished_basalt_vertical_slab": "Dalle verticale en basalte poli", - "block.me.polished_basalt_stairs": "Polished Basalt Stairs", - "block.me.polished_basalt_wall": "Polished Basalt Wall", - "block.me.mossy_polished_basalt": "Mossy Polished Basalt", - "block.me.mossy_polished_basalt_slab": "Dalle en basalte poli moussue", - "block.me.mossy_polished_basalt_vertical_slab": "Dalle verticale en basalte poli moussue", - "block.me.mossy_polished_basalt_stairs": "Escaliers en basalte poli moussue", - "block.me.mossy_polished_basalt_wall": "Muret en basalte poli moussue", - "block.me.cracked_polished_basalt": "Cracked Polished Basalt", - "block.me.cracked_polished_basalt_slab": "Dalle en basalte poli craquelé", - "block.me.cracked_polished_basalt_vertical_slab": "Dalle verticale en basalte poli craquelé", - "block.me.cracked_polished_basalt_stairs": "Escaliers en basalte poli craquelé", - "block.me.cracked_polished_basalt_wall": "Muret en basalte poli craquelé", - "block.me.chiseled_polished_basalt": "Basalte poli sculpté", - "block.me.chiseled_basalt_bricks": "Briques de basalte sculptée", - "block.me.chiseled_basalt": "Chiseled Basalt", - "block.me.chiseled_basalt_tiles": "Chiseled Basalt Tiles", - "block.me.chiseled_smooth_basalt": "Chiseled Smooth Basalt", - "block.me.basalt_brickwork": "Basalt Brickwork", - "block.me.basalt_brickwork_slab": "Basalt Brickwork Slab", - "block.me.basalt_brickwork_vertical_slab": "Basalt Brickwork Vertical Slab", - "block.me.basalt_brickwork_stairs": "Basalt Brickwork Stairs", - "block.me.basalt_brickwork_wall": "Basalt Brickwork Wall", - "block.me.basalt_pressure_plate": "Basalt Pressure Plate", - "block.me.basalt_button": "Basalt Button", - "block.me.basalt_rocks": "Basalt Rocks", - "block.me.basalt_stool": "Tabouret en basalte", - "block.me.basalt_table": "Table en basalte", - "block.me.basalt_chair": "Chaise en basalte", - "block.me.cobbled_jadeite": "Pierre de jadéite", - "block.me.cobbled_jadeite_slab": "Dalle en pierre de jadéite", - "block.me.cobbled_jadeite_vertical_slab": "Dalle verticale en pierre de jadéite", - "block.me.cobbled_jadeite_stairs": "Escaliers en pierre de jadéite", - "block.me.cobbled_jadeite_wall": "Muret en pierre de jadéite", - "block.me.jadeite": "Jadéite", - "block.me.jadeite_slab": "Dalle en jadéite", - "block.me.jadeite_vertical_slab": "Dalle verticale en jadéite", - "block.me.jadeite_stairs": "Escaliers en jadéite", - "block.me.jadeite_wall": "Muret en jadéite", - "block.me.jadeite_pillar": "Pilier en jadéite", - "block.me.mossy_jadeite_pillar": "Pilier en jadéite", - "block.me.cracked_jadeite_pillar": "Pilier en jadéite craquelé", - "block.me.jadeite_bricks": "Briques en jadéite", - "block.me.jadeite_bricks_slab": "Dalle en briques en jadéite", - "block.me.jadeite_bricks_vertical_slab": "Dalle verticale en briques en jadéite", - "block.me.jadeite_bricks_stairs": "Escaliers en briques en jadéite", - "block.me.jadeite_bricks_wall": "Muret en briques en jadéite", - "block.me.mossy_jadeite_bricks": "Briques de jadéite moussue", - "block.me.mossy_jadeite_bricks_slab": "Dalle en briques de jadéite moussue", - "block.me.mossy_jadeite_bricks_vertical_slab": "Dalle verticale en briques de jadéite moussue", - "block.me.mossy_jadeite_bricks_stairs": "Escaliers en briques de jadéite moussue", - "block.me.mossy_jadeite_bricks_wall": "Muret en briques de jadéite moussue", - "block.me.cracked_jadeite_bricks": "Briques de jadéite craquelée", - "block.me.cracked_jadeite_bricks_slab": "Dalle en briques de jadéite craquelée", - "block.me.cracked_jadeite_bricks_vertical_slab": "Dalle verticale en briques de jadéite craquelée", - "block.me.cracked_jadeite_bricks_stairs": "Escaliers en briques de jadéite craquelée", - "block.me.cracked_jadeite_bricks_wall": "Muret en briques de jadéite craquelée", - "block.me.jadeite_tiles": "Jadéite carrelée", - "block.me.jadeite_tiles_slab": "Dalle en jadéite carrelée", - "block.me.jadeite_tiles_vertical_slab": "Dalle verticale en jadéite carrelée", - "block.me.jadeite_tiles_stairs": "Escaliers en jadéite carrelée", - "block.me.jadeite_tiles_wall": "Muret en jadéite carrelée", - "block.me.mossy_jadeite_tiles": "Jadéite carrelée moussue", - "block.me.mossy_jadeite_tiles_slab": "Dalle en jadéite carrelée moussue", - "block.me.mossy_jadeite_tiles_vertical_slab": "Dalle verticale en jadéite carrelée moussue", - "block.me.mossy_jadeite_tiles_stairs": "Escaliers en jadéite carrelée moussue", - "block.me.mossy_jadeite_tiles_wall": "Muret en jadéite carrelée moussue", - "block.me.cracked_jadeite_tiles": "Jadéite carrelée craquelée", - "block.me.cracked_jadeite_tiles_slab": "Dalle en jadéite carrelée craquelée", - "block.me.cracked_jadeite_tiles_vertical_slab": "Dalle verticale en jadéite carrelée craquelée", - "block.me.cracked_jadeite_tiles_stairs": "Escaliers en jadéite carrelée craquelée", - "block.me.cracked_jadeite_tiles_wall": "Muret en jadéite carrelée craquelée", - "block.me.polished_jadeite": "Jadéite polie", - "block.me.polished_jadeite_slab": "Dalle en jadéite polie", - "block.me.polished_jadeite_vertical_slab": "Dalle verticale en jadéite polie", - "block.me.polished_jadeite_stairs": "Escaliers en jadéite polie", - "block.me.polished_jadeite_wall": "Muret en jadéite polie", - "block.me.mossy_polished_jadeite": "Mossy Polished Jadeite", - "block.me.mossy_polished_jadeite_slab": "Dalle en jadéite polie moussue", - "block.me.mossy_polished_jadeite_vertical_slab": "Dalle verticale en jadéite polie moussue", - "block.me.mossy_polished_jadeite_stairs": "Escaliers en jadéite polie moussue", - "block.me.mossy_polished_jadeite_wall": "Muret en jadéite polie moussue", - "block.me.cracked_polished_jadeite": "Cracked Polished Jadeite", - "block.me.cracked_polished_jadeite_slab": "Dalle en jadéite polie craquelée", - "block.me.cracked_polished_jadeite_vertical_slab": "Dalle verticale en jadéite polie craquelée", - "block.me.cracked_polished_jadeite_stairs": "Escaliers en jadéite polie craquelée", - "block.me.cracked_polished_jadeite_wall": "Muret en jadéite polie craquelée", - "block.me.chiseled_polished_jadeite": "Jadéite polie sculptée", - "block.me.chiseled_jadeite_bricks": "Briques en jadéite sculptée", - "block.me.jadeite_pressure_plate": "Plaque de pression en jadéite", - "block.me.jadeite_button": "Bouton en jadéite", - "block.me.jadeite_trapdoor": "Jadeite Trapdoor", - "block.me.jadeite_rocks": "Jadeite Rocks", - "block.me.jadeite_stool": "Tabouret en jadéite", - "block.me.jadeite_table": "Table en jadéite", - "block.me.jadeite_chair": "Chaise en jadéite", - "block.me.cobbled_quartzite": "Pierre de quartzite", - "block.me.cobbled_quartzite_slab": "Dalle en pierre de quartzite", - "block.me.cobbled_quartzite_vertical_slab": "Dalle verticale en pierre de quartzite", - "block.me.cobbled_quartzite_stairs": "Escaliers en pierre de quartzite", - "block.me.cobbled_quartzite_wall": "Muret en pierre de quartzite", - "block.me.quartzite": "Quartzite", - "block.me.quartzite_slab": "Dalle en quartzite", - "block.me.quartzite_vertical_slab": "Dalle verticale en quartzite", - "block.me.quartzite_stairs": "Escaliers en quartzite", - "block.me.quartzite_wall": "Muret en quartzite", - "block.me.quartzite_pillar": "Pilier en quartzite", - "block.me.mossy_quartzite_pillar": "Pilier en quartzite moussue", - "block.me.cracked_quartzite_pillar": "Pilier en quartzite craquelé", - "block.me.quartzite_bricks": "Briques de quartzite", - "block.me.quartzite_bricks_slab": "Dalle en briques de quartzite", - "block.me.quartzite_bricks_vertical_slab": "Dalle verticale en briques de quartzite", - "block.me.quartzite_bricks_stairs": "Escaliers en briques de quartzite", - "block.me.quartzite_bricks_wall": "Muret en briques de quartzite", - "block.me.mossy_quartzite_bricks": "Briques de quartzite moussue", - "block.me.mossy_quartzite_bricks_slab": "Dalle en briques de quartzite moussue", - "block.me.mossy_quartzite_bricks_vertical_slab": "Dalle verticale en briques de quartzite moussue", - "block.me.mossy_quartzite_bricks_stairs": "Escaliers en briques de quartzite moussue", - "block.me.mossy_quartzite_bricks_wall": "Muret en briques de quartzite moussue", - "block.me.cracked_quartzite_bricks": "Briques de quartzite craquelée", - "block.me.cracked_quartzite_bricks_slab": "Dalle en briques de quartzite craquelée", - "block.me.cracked_quartzite_bricks_vertical_slab": "Dalle verticale en briques de quartzite craquelée", - "block.me.cracked_quartzite_bricks_stairs": "Escaliers en briques de quartzite craquelée", - "block.me.cracked_quartzite_bricks_wall": "Muret en briques de quartzite craquelée", - "block.me.quartzite_tiles": "Quartzite carrelée", - "block.me.quartzite_tiles_slab": "Dalle en quartzite carrelée", - "block.me.quartzite_tiles_vertical_slab": "Dalle verticale en quartzite carrelée", - "block.me.quartzite_tiles_stairs": "Escaliers en quartzite carrelée", - "block.me.quartzite_tiles_wall": "Muret en quartzite carrelée", - "block.me.mossy_quartzite_tiles": "Quartzite carrelée moussue", - "block.me.mossy_quartzite_tiles_slab": "Dalle en quartzite carrelée moussue", - "block.me.mossy_quartzite_tiles_vertical_slab": "Dalle verticale en quartzite carrelée moussue", - "block.me.mossy_quartzite_tiles_stairs": "Escaliers en quartzite carrelée moussue", - "block.me.mossy_quartzite_tiles_wall": "Muret en quartzite carrelée moussue", - "block.me.cracked_quartzite_tiles": "Quartzite carrelée craquelée", - "block.me.cracked_quartzite_tiles_slab": "Dalle en quartzite carrelée craquelée", - "block.me.cracked_quartzite_tiles_vertical_slab": "Dalle verticale en quartzite carrelée craquelée", - "block.me.cracked_quartzite_tiles_stairs": "Escaliers en quartzite carrelée craquelée", - "block.me.cracked_quartzite_tiles_wall": "Muret en quartzite carrelée craquelée", - "block.me.polished_quartzite": "Quartzite polie", - "block.me.polished_quartzite_slab": "Dalle en quartzite polie", - "block.me.polished_quartzite_vertical_slab": "Dalle verticale en quartzite polie", - "block.me.polished_quartzite_stairs": "Escaliers en quartzite polie", - "block.me.polished_quartzite_wall": "Muret en quartzite polie", - "block.me.mossy_polished_quartzite": "Mossy Polished Quartzite", - "block.me.mossy_polished_quartzite_slab": "Dalle en quartzite polie moussue", - "block.me.mossy_polished_quartzite_vertical_slab": "Dalle verticale en quartzite polie moussue", - "block.me.mossy_polished_quartzite_stairs": "Escaliers en quartzite polie moussue", - "block.me.mossy_polished_quartzite_wall": "Muret en quartzite polie moussue", - "block.me.cracked_polished_quartzite": "Cracked Polished Quartzite", - "block.me.cracked_polished_quartzite_slab": "Dalle en quartzite polie craquelée", - "block.me.cracked_polished_quartzite_vertical_slab": "Dalle verticale en quartzite polie craquelée", - "block.me.cracked_polished_quartzite_stairs": "Escaliers en quartzite polie craquelée", - "block.me.cracked_polished_quartzite_wall": "Muret en quartzite polie craquelée", - "block.me.chiseled_polished_quartzite": "Quartzite polie sculptée", - "block.me.chiseled_quartzite_bricks": "Briques de quartzite sculptée", - "block.me.quartzite_pressure_plate": "Plaque de pression en quartzite", - "block.me.quartzite_button": "Bouton en quartzite", - "block.me.quartzite_trapdoor": "Quartzite Trapdoor", - "block.me.quartzite_rocks": "Quartzite Rocks", - "block.me.quartzite_stool": "Tabouret en quartzite", - "block.me.quartzite_table": "Table en quartzite", - "block.me.quartzite_chair": "Chaise en quartzite", - "block.me.smooth_ironstone": "Smooth Ironstone", - "block.me.smooth_ironstone_slab": "Smooth Ironstone Slab", - "block.me.smooth_ironstone_vertical_slab": "Smooth Ironstone Vertical Slab", - "block.me.smooth_ironstone_stairs": "Smooth Ironstone Stairs", - "block.me.smooth_ironstone_wall": "Smooth Ironstone Wall", - "block.me.mossy_cobbled_ironstone": "Mossy Cobbled Ironstone", - "block.me.mossy_cobbled_ironstone_slab": "Mossy Cobbled Ironstone Slab", - "block.me.mossy_cobbled_ironstone_vertical_slab": "Mossy Cobbled Ironstone Vertical Slab", - "block.me.mossy_cobbled_ironstone_stairs": "Mossy Cobbled Ironstone Stairs", - "block.me.mossy_cobbled_ironstone_wall": "Mossy Cobbled Ironstone Wall", - "block.me.cobbled_ironstone": "Cobbled Ironstone", - "block.me.cobbled_ironstone_slab": "Cobbled Ironstone Slab", - "block.me.cobbled_ironstone_vertical_slab": "Cobbled Ironstone Vertical Slab", - "block.me.cobbled_ironstone_stairs": "Cobbled Ironstone Stairs", - "block.me.cobbled_ironstone_wall": "Cobbled Ironstone Wall", - "block.me.ironstone": "Ironstone", - "block.me.ironstone_slab": "Ironstone Slab", - "block.me.ironstone_vertical_slab": "Ironstone Vertical Slab", - "block.me.ironstone_stairs": "Ironstone Stairs", - "block.me.ironstone_wall": "Ironstone Wall", - "block.me.ironstone_pillar": "Ironstone Pillar", - "block.me.mossy_ironstone_pillar": "Mossy Ironstone Pillar", - "block.me.cracked_ironstone_pillar": "Cracked Ironstone Pillar", - "block.me.ironstone_bricks": "Ironstone Bricks", - "block.me.ironstone_bricks_slab": "Ironstone Bricks Slab", - "block.me.ironstone_bricks_vertical_slab": "Ironstone Bricks Vertical Slab", - "block.me.ironstone_bricks_stairs": "Ironstone Bricks Stairs", - "block.me.ironstone_bricks_wall": "Ironstone Bricks Wall", - "block.me.mossy_ironstone_bricks": "Mossy Ironstone Bricks", - "block.me.mossy_ironstone_bricks_slab": "Mossy Ironstone Bricks Slab", - "block.me.mossy_ironstone_bricks_vertical_slab": "Mossy Ironstone Bricks Vertical Slab", - "block.me.mossy_ironstone_bricks_stairs": "Mossy Ironstone Bricks Stairs", - "block.me.mossy_ironstone_bricks_wall": "Mossy Ironstone Bricks Wall", - "block.me.cracked_ironstone_bricks": "Cracked Ironstone Bricks", - "block.me.cracked_ironstone_bricks_slab": "Cracked Ironstone Bricks Slab", - "block.me.cracked_ironstone_bricks_vertical_slab": "Cracked Ironstone Bricks Vertical Slab", - "block.me.cracked_ironstone_bricks_stairs": "Cracked Ironstone Bricks Stairs", - "block.me.cracked_ironstone_bricks_wall": "Cracked Ironstone Bricks Wall", - "block.me.ironstone_tiles": "Ironstone Tiles", - "block.me.ironstone_tiles_slab": "Ironstone Tiles Slab", - "block.me.ironstone_tiles_vertical_slab": "Ironstone Tiles Vertical Slab", - "block.me.ironstone_tiles_stairs": "Ironstone Tiles Stairs", - "block.me.ironstone_tiles_wall": "Ironstone Tiles Wall", - "block.me.mossy_ironstone_tiles": "Mossy Ironstone Tiles", - "block.me.mossy_ironstone_tiles_slab": "Mossy Ironstone Tiles Slab", - "block.me.mossy_ironstone_tiles_vertical_slab": "Mossy Ironstone Tiles Vertical Slab", - "block.me.mossy_ironstone_tiles_stairs": "Mossy Ironstone Tiles Stairs", - "block.me.mossy_ironstone_tiles_wall": "Mossy Ironstone Tiles Wall", - "block.me.cracked_ironstone_tiles": "Cracked Ironstone Tiles", - "block.me.cracked_ironstone_tiles_slab": "Cracked Ironstone Tiles Slab", - "block.me.cracked_ironstone_tiles_vertical_slab": "Cracked Ironstone Tiles Vertical Slab", - "block.me.cracked_ironstone_tiles_stairs": "Cracked Ironstone Tiles Stairs", - "block.me.cracked_ironstone_tiles_wall": "Cracked Ironstone Tiles Wall", - "block.me.polished_ironstone": "Polished Ironstone", - "block.me.polished_ironstone_slab": "Polished Ironstone Slab", - "block.me.polished_ironstone_vertical_slab": "Polished Ironstone Vertical Slab", - "block.me.polished_ironstone_stairs": "Polished Ironstone Stairs", - "block.me.polished_ironstone_wall": "Polished Ironstone Wall", - "block.me.mossy_polished_ironstone": "Mossy Polished Ironstone", - "block.me.mossy_polished_ironstone_slab": "Mossy Polished Ironstone Slab", - "block.me.mossy_polished_ironstone_vertical_slab": "Mossy Polished Ironstone Vertical Slab", - "block.me.mossy_polished_ironstone_stairs": "Mossy Polished Ironstone Stairs", - "block.me.mossy_polished_ironstone_wall": "Mossy Polished Ironstone Wall", - "block.me.cracked_polished_ironstone": "Cracked Polished Ironstone", - "block.me.cracked_polished_ironstone_slab": "Cracked Polished Ironstone Slab", - "block.me.cracked_polished_ironstone_vertical_slab": "Cracked Polished Ironstone Vertical Slab", - "block.me.cracked_polished_ironstone_stairs": "Cracked Polished Ironstone Stairs", - "block.me.cracked_polished_ironstone_wall": "Cracked Polished Ironstone Wall", - "block.me.chiseled_polished_ironstone": "Chiseled Polished Ironstone", - "block.me.chiseled_ironstone_bricks": "Chiseled Ironstone Bricks", - "block.me.chiseled_ironstone": "Chiseled Ironstone", - "block.me.ironstone_pressure_plate": "Ironstone Pressure Plate", - "block.me.ironstone_button": "Ironstone Button", - "block.me.ironstone_trapdoor": "Ironstone Trapdoor", - "block.me.ironstone_rocks": "Ironstone Rocks", - "block.me.ironstone_stool": "Ironstone Stool", - "block.me.ironstone_table": "Ironstone Table", - "block.me.ironstone_chair": "Ironstone Chair", - "block.me.smooth_hematite": "Smooth Hematite", - "block.me.smooth_hematite_slab": "Smooth Hematite Slab", - "block.me.smooth_hematite_vertical_slab": "Smooth Hematite Vertical Slab", - "block.me.smooth_hematite_stairs": "Smooth Hematite Stairs", - "block.me.smooth_hematite_wall": "Smooth Hematite Wall", - "block.me.mossy_cobbled_hematite": "Mossy Cobbled Hematite", - "block.me.mossy_cobbled_hematite_slab": "Mossy Cobbled Hematite Slab", - "block.me.mossy_cobbled_hematite_vertical_slab": "Mossy Cobbled Hematite Vertical Slab", - "block.me.mossy_cobbled_hematite_stairs": "Mossy Cobbled Hematite Stairs", - "block.me.mossy_cobbled_hematite_wall": "Mossy Cobbled Hematite Wall", - "block.me.cobbled_hematite": "Cobbled Hematite", - "block.me.cobbled_hematite_slab": "Cobbled Hematite Slab", - "block.me.cobbled_hematite_vertical_slab": "Cobbled Hematite Vertical Slab", - "block.me.cobbled_hematite_stairs": "Cobbled Hematite Stairs", - "block.me.cobbled_hematite_wall": "Cobbled Hematite Wall", - "block.me.hematite": "Hematite", - "block.me.hematite_slab": "Hematite Slab", - "block.me.hematite_vertical_slab": "Hematite Vertical Slab", - "block.me.hematite_stairs": "Hematite Stairs", - "block.me.hematite_wall": "Hematite Wall", - "block.me.hematite_pillar": "Hematite Pillar", - "block.me.mossy_hematite_pillar": "Mossy Hematite Pillar", - "block.me.cracked_hematite_pillar": "Cracked Hematite Pillar", - "block.me.hematite_bricks": "Hematite Bricks", - "block.me.hematite_bricks_slab": "Hematite Bricks Slab", - "block.me.hematite_bricks_vertical_slab": "Hematite Bricks Vertical Slab", - "block.me.hematite_bricks_stairs": "Hematite Bricks Stairs", - "block.me.hematite_bricks_wall": "Hematite Bricks Wall", - "block.me.mossy_hematite_bricks": "Mossy Hematite Bricks", - "block.me.mossy_hematite_bricks_slab": "Mossy Hematite Bricks Slab", - "block.me.mossy_hematite_bricks_vertical_slab": "Mossy Hematite Bricks Vertical Slab", - "block.me.mossy_hematite_bricks_stairs": "Mossy Hematite Bricks Stairs", - "block.me.mossy_hematite_bricks_wall": "Mossy Hematite Bricks Wall", - "block.me.cracked_hematite_bricks": "Cracked Hematite Bricks", - "block.me.cracked_hematite_bricks_slab": "Cracked Hematite Bricks Slab", - "block.me.cracked_hematite_bricks_vertical_slab": "Cracked Hematite Bricks Vertical Slab", - "block.me.cracked_hematite_bricks_stairs": "Cracked Hematite Bricks Stairs", - "block.me.cracked_hematite_bricks_wall": "Cracked Hematite Bricks Wall", - "block.me.hematite_tiles": "Hematite Tiles", - "block.me.hematite_tiles_slab": "Hematite Tiles Slab", - "block.me.hematite_tiles_vertical_slab": "Hematite Tiles Vertical Slab", - "block.me.hematite_tiles_stairs": "Hematite Tiles Stairs", - "block.me.hematite_tiles_wall": "Hematite Tiles Wall", - "block.me.mossy_hematite_tiles": "Mossy Hematite Tiles", - "block.me.mossy_hematite_tiles_slab": "Mossy Hematite Tiles Slab", - "block.me.mossy_hematite_tiles_vertical_slab": "Mossy Hematite Tiles Vertical Slab", - "block.me.mossy_hematite_tiles_stairs": "Mossy Hematite Tiles Stairs", - "block.me.mossy_hematite_tiles_wall": "Mossy Hematite Tiles Wall", - "block.me.cracked_hematite_tiles": "Cracked Hematite Tiles", - "block.me.cracked_hematite_tiles_slab": "Cracked Hematite Tiles Slab", - "block.me.cracked_hematite_tiles_vertical_slab": "Cracked Hematite Tiles Vertical Slab", - "block.me.cracked_hematite_tiles_stairs": "Cracked Hematite Tiles Stairs", - "block.me.cracked_hematite_tiles_wall": "Cracked Hematite Tiles Wall", - "block.me.polished_hematite": "Polished Hematite", - "block.me.polished_hematite_slab": "Polished Hematite Slab", - "block.me.polished_hematite_vertical_slab": "Polished Hematite Vertical Slab", - "block.me.polished_hematite_stairs": "Polished Hematite Stairs", - "block.me.polished_hematite_wall": "Polished Hematite Wall", - "block.me.mossy_polished_hematite": "Mossy Polished Hematite", - "block.me.mossy_polished_hematite_slab": "Mossy Polished Hematite Slab", - "block.me.mossy_polished_hematite_vertical_slab": "Mossy Polished Hematite Vertical Slab", - "block.me.mossy_polished_hematite_stairs": "Mossy Polished Hematite Stairs", - "block.me.mossy_polished_hematite_wall": "Mossy Polished Hematite Wall", - "block.me.cracked_polished_hematite": "Cracked Polished Hematite", - "block.me.cracked_polished_hematite_slab": "Cracked Polished Hematite Slab", - "block.me.cracked_polished_hematite_vertical_slab": "Cracked Polished Hematite Vertical Slab", - "block.me.cracked_polished_hematite_stairs": "Cracked Polished Hematite Stairs", - "block.me.cracked_polished_hematite_wall": "Cracked Polished Hematite Wall", - "block.me.chiseled_polished_hematite": "Chiseled Polished Hematite", - "block.me.chiseled_hematite_bricks": "Chiseled Hematite Bricks", - "block.me.chiseled_hematite": "Chiseled Hematite", - "block.me.hematite_brickwork": "Hematite Brickwork", - "block.me.hematite_brickwork_slab": "Hematite Brickwork Slab", - "block.me.hematite_brickwork_vertical_slab": "Hematite Brickwork Vertical Slab", - "block.me.hematite_brickwork_stairs": "Hematite Brickwork Stairs", - "block.me.hematite_brickwork_wall": "Hematite Brickwork Wall", - "block.me.hematite_pressure_plate": "Hematite Pressure Plate", - "block.me.hematite_button": "Hematite Button", - "block.me.hematite_trapdoor": "Hematite Trapdoor", - "block.me.hematite_rocks": "Hematite Rocks", - "block.me.hematite_stool": "Hematite Stool", - "block.me.hematite_table": "Hematite Table", - "block.me.hematite_chair": "Hematite Chair", - "block.me.smooth_gneiss": "Smooth Gneiss", - "block.me.smooth_gneiss_slab": "Smooth Gneiss Slab", - "block.me.smooth_gneiss_vertical_slab": "Smooth Gneiss Vertical Slab", - "block.me.smooth_gneiss_stairs": "Smooth Gneiss Stairs", - "block.me.smooth_gneiss_wall": "Smooth Gneiss Wall", - "block.me.mossy_cobbled_gneiss": "Mossy Cobbled Gneiss", - "block.me.mossy_cobbled_gneiss_slab": "Mossy Cobbled Gneiss Slab", - "block.me.mossy_cobbled_gneiss_vertical_slab": "Mossy Cobbled Gneiss Vertical Slab", - "block.me.mossy_cobbled_gneiss_stairs": "Mossy Cobbled Gneiss Stairs", - "block.me.mossy_cobbled_gneiss_wall": "Mossy Cobbled Gneiss Wall", - "block.me.cobbled_gneiss": "Cobbled Gneiss", - "block.me.cobbled_gneiss_slab": "Cobbled Gneiss Slab", - "block.me.cobbled_gneiss_vertical_slab": "Cobbled Gneiss Vertical Slab", - "block.me.cobbled_gneiss_stairs": "Cobbled Gneiss Stairs", - "block.me.cobbled_gneiss_wall": "Cobbled Gneiss Wall", - "block.me.gneiss": "Gneiss", - "block.me.gneiss_slab": "Gneiss Slab", - "block.me.gneiss_vertical_slab": "Gneiss Vertical Slab", - "block.me.gneiss_stairs": "Gneiss Stairs", - "block.me.gneiss_wall": "Gneiss Wall", - "block.me.gneiss_pillar": "Gneiss Pillar", - "block.me.mossy_gneiss_pillar": "Mossy Gneiss Pillar", - "block.me.cracked_gneiss_pillar": "Cracked Gneiss Pillar", - "block.me.gneiss_bricks": "Gneiss Bricks", - "block.me.gneiss_bricks_slab": "Gneiss Bricks Slab", - "block.me.gneiss_bricks_vertical_slab": "Gneiss Bricks Vertical Slab", - "block.me.gneiss_bricks_stairs": "Gneiss Bricks Stairs", - "block.me.gneiss_bricks_wall": "Gneiss Bricks Wall", - "block.me.mossy_gneiss_bricks": "Mossy Gneiss Bricks", - "block.me.mossy_gneiss_bricks_slab": "Mossy Gneiss Bricks Slab", - "block.me.mossy_gneiss_bricks_vertical_slab": "Mossy Gneiss Bricks Vertical Slab", - "block.me.mossy_gneiss_bricks_stairs": "Mossy Gneiss Bricks Stairs", - "block.me.mossy_gneiss_bricks_wall": "Mossy Gneiss Bricks Wall", - "block.me.cracked_gneiss_bricks": "Cracked Gneiss Bricks", - "block.me.cracked_gneiss_bricks_slab": "Cracked Gneiss Bricks Slab", - "block.me.cracked_gneiss_bricks_vertical_slab": "Cracked Gneiss Bricks Vertical Slab", - "block.me.cracked_gneiss_bricks_stairs": "Cracked Gneiss Bricks Stairs", - "block.me.cracked_gneiss_bricks_wall": "Cracked Gneiss Bricks Wall", - "block.me.gneiss_tiles": "Gneiss Tiles", - "block.me.gneiss_tiles_slab": "Gneiss Tiles Slab", - "block.me.gneiss_tiles_vertical_slab": "Gneiss Tiles Vertical Slab", - "block.me.gneiss_tiles_stairs": "Gneiss Tiles Stairs", - "block.me.gneiss_tiles_wall": "Gneiss Tiles Wall", - "block.me.mossy_gneiss_tiles": "Mossy Gneiss Tiles", - "block.me.mossy_gneiss_tiles_slab": "Mossy Gneiss Tiles Slab", - "block.me.mossy_gneiss_tiles_vertical_slab": "Mossy Gneiss Tiles Vertical Slab", - "block.me.mossy_gneiss_tiles_stairs": "Mossy Gneiss Tiles Stairs", - "block.me.mossy_gneiss_tiles_wall": "Mossy Gneiss Tiles Wall", - "block.me.cracked_gneiss_tiles": "Cracked Gneiss Tiles", - "block.me.cracked_gneiss_tiles_slab": "Cracked Gneiss Tiles Slab", - "block.me.cracked_gneiss_tiles_vertical_slab": "Cracked Gneiss Tiles Vertical Slab", - "block.me.cracked_gneiss_tiles_stairs": "Cracked Gneiss Tiles Stairs", - "block.me.cracked_gneiss_tiles_wall": "Cracked Gneiss Tiles Wall", - "block.me.polished_gneiss": "Polished Gneiss", - "block.me.polished_gneiss_slab": "Polished Gneiss Slab", - "block.me.polished_gneiss_vertical_slab": "Polished Gneiss Vertical Slab", - "block.me.polished_gneiss_stairs": "Polished Gneiss Stairs", - "block.me.polished_gneiss_wall": "Polished Gneiss Wall", - "block.me.mossy_polished_gneiss": "Mossy Polished Gneiss", - "block.me.mossy_polished_gneiss_slab": "Mossy Polished Gneiss Slab", - "block.me.mossy_polished_gneiss_vertical_slab": "Mossy Polished Gneiss Vertical Slab", - "block.me.mossy_polished_gneiss_stairs": "Mossy Polished Gneiss Stairs", - "block.me.mossy_polished_gneiss_wall": "Mossy Polished Gneiss Wall", - "block.me.cracked_polished_gneiss": "Cracked Polished Gneiss", - "block.me.cracked_polished_gneiss_slab": "Cracked Polished Gneiss Slab", - "block.me.cracked_polished_gneiss_vertical_slab": "Cracked Polished Gneiss Vertical Slab", - "block.me.cracked_polished_gneiss_stairs": "Cracked Polished Gneiss Stairs", - "block.me.cracked_polished_gneiss_wall": "Cracked Polished Gneiss Wall", - "block.me.chiseled_polished_gneiss": "Chiseled Polished Gneiss", - "block.me.chiseled_gneiss_bricks": "Chiseled Gneiss Bricks", - "block.me.chiseled_gneiss": "Chiseled Gneiss", - "block.me.gneiss_brickwork": "Gneiss Brickwork", - "block.me.gneiss_brickwork_slab": "Gneiss Brickwork Slab", - "block.me.gneiss_brickwork_vertical_slab": "Gneiss Brickwork Vertical Slab", - "block.me.gneiss_brickwork_stairs": "Gneiss Brickwork Stairs", - "block.me.gneiss_brickwork_wall": "Gneiss Brickwork Wall", - "block.me.gneiss_pressure_plate": "Gneiss Pressure Plate", - "block.me.gneiss_button": "Gneiss Button", - "block.me.gneiss_trapdoor": "Gneiss Trapdoor", - "block.me.gneiss_rocks": "Gneiss Rocks", - "block.me.gneiss_stool": "Gneiss Stool", - "block.me.gneiss_table": "Gneiss Table", - "block.me.gneiss_chair": "Gneiss Chair", - "block.me.smooth_zigilaban": "Smooth Zigil'Aban", - "block.me.smooth_zigilaban_slab": "Smooth Zigil'Aban Slab", - "block.me.smooth_zigilaban_vertical_slab": "Smooth Zigil'Aban Vertical Slab", - "block.me.smooth_zigilaban_stairs": "Smooth Zigil'Aban Stairs", - "block.me.smooth_zigilaban_wall": "Smooth Zigil'Aban Wall", - "block.me.mossy_cobbled_zigilaban": "Mossy Cobbled Zigil'Aban", - "block.me.mossy_cobbled_zigilaban_slab": "Mossy Cobbled Zigil'Aban Slab", - "block.me.mossy_cobbled_zigilaban_vertical_slab": "Mossy Cobbled Zigil'Aban Vertical Slab", - "block.me.mossy_cobbled_zigilaban_stairs": "Mossy Cobbled Zigil'Aban Stairs", - "block.me.mossy_cobbled_zigilaban_wall": "Mossy Cobbled Zigil'Aban Wall", - "block.me.cobbled_zigilaban": "Cobbled Zigil'Aban", - "block.me.cobbled_zigilaban_slab": "Cobbled Zigil'Aban Slab", - "block.me.cobbled_zigilaban_vertical_slab": "Cobbled Zigil'Aban Vertical Slab", - "block.me.cobbled_zigilaban_stairs": "Cobbled Zigil'Aban Stairs", - "block.me.cobbled_zigilaban_wall": "Cobbled Zigil'Aban Wall", - "block.me.zigilaban": "Zigil'Aban", - "block.me.zigilaban_slab": "Zigil'Aban Slab", - "block.me.zigilaban_vertical_slab": "Zigil'Aban Vertical Slab", - "block.me.zigilaban_stairs": "Zigil'Aban Stairs", - "block.me.zigilaban_wall": "Zigil'Aban Wall", - "block.me.zigilaban_pillar": "Zigil'Aban Pillar", - "block.me.mossy_zigilaban_pillar": "Mossy Zigil'Aban Pillar", - "block.me.cracked_zigilaban_pillar": "Cracked Zigil'Aban Pillar", - "block.me.zigilaban_bricks": "Zigil'Aban Bricks", - "block.me.zigilaban_bricks_slab": "Zigil'Aban Bricks Slab", - "block.me.zigilaban_bricks_vertical_slab": "Zigil'Aban Bricks Vertical Slab", - "block.me.zigilaban_bricks_stairs": "Zigil'Aban Bricks Stairs", - "block.me.zigilaban_bricks_wall": "Zigil'Aban Bricks Wall", - "block.me.mossy_zigilaban_bricks": "Mossy Zigil'Aban Bricks", - "block.me.mossy_zigilaban_bricks_slab": "Mossy Zigil'Aban Bricks Slab", - "block.me.mossy_zigilaban_bricks_vertical_slab": "Mossy Zigil'Aban Bricks Vertical Slab", - "block.me.mossy_zigilaban_bricks_stairs": "Mossy Zigil'Aban Bricks Stairs", - "block.me.mossy_zigilaban_bricks_wall": "Mossy Zigil'Aban Bricks Wall", - "block.me.cracked_zigilaban_bricks": "Cracked Zigil'Aban Bricks", - "block.me.cracked_zigilaban_bricks_slab": "Cracked Zigil'Aban Bricks Slab", - "block.me.cracked_zigilaban_bricks_vertical_slab": "Cracked Zigil'Aban Bricks Vertical Slab", - "block.me.cracked_zigilaban_bricks_stairs": "Cracked Zigil'Aban Bricks Stairs", - "block.me.cracked_zigilaban_bricks_wall": "Cracked Zigil'Aban Bricks Wall", - "block.me.zigilaban_tiles": "Zigil'Aban Tiles", - "block.me.zigilaban_tiles_slab": "Zigil'Aban Tiles Slab", - "block.me.zigilaban_tiles_vertical_slab": "Zigil'Aban Tiles Vertical Slab", - "block.me.zigilaban_tiles_stairs": "Zigil'Aban Tiles Stairs", - "block.me.zigilaban_tiles_wall": "Zigil'Aban Tiles Wall", - "block.me.mossy_zigilaban_tiles": "Mossy Zigil'Aban Tiles", - "block.me.mossy_zigilaban_tiles_slab": "Mossy Zigil'Aban Tiles Slab", - "block.me.mossy_zigilaban_tiles_vertical_slab": "Mossy Zigil'Aban Tiles Vertical Slab", - "block.me.mossy_zigilaban_tiles_stairs": "Mossy Zigil'Aban Tiles Stairs", - "block.me.mossy_zigilaban_tiles_wall": "Mossy Zigil'Aban Tiles Wall", - "block.me.cracked_zigilaban_tiles": "Cracked Zigil'Aban Tiles", - "block.me.cracked_zigilaban_tiles_slab": "Cracked Zigil'Aban Tiles Slab", - "block.me.cracked_zigilaban_tiles_vertical_slab": "Cracked Zigil'Aban Tiles Vertical Slab", - "block.me.cracked_zigilaban_tiles_stairs": "Cracked Zigil'Aban Tiles Stairs", - "block.me.cracked_zigilaban_tiles_wall": "Cracked Zigil'Aban Tiles Wall", - "block.me.polished_zigilaban": "Polished Zigil'Aban", - "block.me.polished_zigilaban_slab": "Polished Zigil'Aban Slab", - "block.me.polished_zigilaban_vertical_slab": "Polished Zigil'Aban Vertical Slab", - "block.me.polished_zigilaban_stairs": "Polished Zigil'Aban Stairs", - "block.me.polished_zigilaban_wall": "Polished Zigil'Aban Wall", - "block.me.mossy_polished_zigilaban": "Mossy Polished Zigil'Aban", - "block.me.mossy_polished_zigilaban_slab": "Mossy Polished Zigil'Aban Slab", - "block.me.mossy_polished_zigilaban_vertical_slab": "Mossy Polished Zigil'Aban Vertical Slab", - "block.me.mossy_polished_zigilaban_stairs": "Mossy Polished Zigil'Aban Stairs", - "block.me.mossy_polished_zigilaban_wall": "Mossy Polished Zigil'Aban Wall", - "block.me.cracked_polished_zigilaban": "Cracked Polished Zigil'Aban", - "block.me.cracked_polished_zigilaban_slab": "Cracked Polished Zigil'Aban Slab", - "block.me.cracked_polished_zigilaban_vertical_slab": "Cracked Polished Zigil'Aban Vertical Slab", - "block.me.cracked_polished_zigilaban_stairs": "Cracked Polished Zigil'Aban Stairs", - "block.me.cracked_polished_zigilaban_wall": "Cracked Polished Zigil'Aban Wall", - "block.me.chiseled_polished_zigilaban": "Chiseled Polished Zigil'Aban", - "block.me.chiseled_zigilaban_bricks": "Chiseled Zigil'Aban Bricks", - "block.me.chiseled_zigilaban": "Chiseled Zigil'Aban", - "block.me.zigilaban_brickwork": "Zigil'Aban Brickwork", - "block.me.zigilaban_brickwork_slab": "Zigil'Aban Brickwork Slab", - "block.me.zigilaban_brickwork_vertical_slab": "Zigil'Aban Brickwork Vertical Slab", - "block.me.zigilaban_brickwork_stairs": "Zigil'Aban Brickwork Stairs", - "block.me.zigilaban_brickwork_wall": "Zigil'Aban Brickwork Wall", - "block.me.zigilaban_pressure_plate": "Zigil'Aban Pressure Plate", - "block.me.zigilaban_button": "Zigil'Aban Button", - "block.me.zigilaban_trapdoor": "Zigil'Aban Trapdoor", - "block.me.zigilaban_rocks": "Zigil'Aban Rocks", - "block.me.zigilaban_stool": "Zigil'Aban Stool", - "block.me.zigilaban_table": "Zigil'Aban Table", - "block.me.zigilaban_chair": "Zigil'Aban Chair", - "block.me.pointed_izheraban": "Pointed Izhêr'Aban", - "block.me.old_izheraban": "Old Izhêr'Aban", - "block.me.old_izheraban_slab": "Old Izhêr'Aban Slab", - "block.me.old_izheraban_vertical_slab": "Old Izhêr'Aban Vertical Slab", - "block.me.old_izheraban_stairs": "Old Izhêr'Aban Stairs", - "block.me.old_izheraban_wall": "Old Izhêr'Aban Wall", - "block.me.smooth_izheraban": "Smooth Izhêr'Aban", - "block.me.smooth_izheraban_slab": "Smooth Izhêr'Aban Slab", - "block.me.smooth_izheraban_vertical_slab": "Smooth Izhêr'Aban Vertical Slab", - "block.me.smooth_izheraban_stairs": "Smooth Izhêr'Aban Stairs", - "block.me.smooth_izheraban_wall": "Smooth Izhêr'Aban Wall", - "block.me.mossy_smooth_izheraban": "Mossy Smooth Izhêr'Aban", - "block.me.mossy_smooth_izheraban_slab": "Mossy Smooth Izhêr'Aban Slab", - "block.me.mossy_smooth_izheraban_vertical_slab": "Mossy Smooth Izhêr'Aban Vertical Slab", - "block.me.mossy_smooth_izheraban_stairs": "Mossy Smooth Izhêr'Aban Stairs", - "block.me.mossy_smooth_izheraban_wall": "Mossy Smooth Izhêr'Aban Wall", - "block.me.cracked_smooth_izheraban": "Cracked Smooth Izhêr'Aban", - "block.me.cracked_smooth_izheraban_slab": "Cracked Smooth Izhêr'Aban Slab", - "block.me.cracked_smooth_izheraban_vertical_slab": "Cracked Smooth Izhêr'Aban Vertical Slab", - "block.me.cracked_smooth_izheraban_stairs": "Cracked Smooth Izhêr'Aban Stairs", - "block.me.cracked_smooth_izheraban_wall": "Cracked Smooth Izhêr'Aban Wall", - "block.me.cobbled_izheraban": "Cobbled Izhêr'Aban", - "block.me.cobbled_izheraban_slab": "Cobbled Izhêr'Aban Slab", - "block.me.cobbled_izheraban_vertical_slab": "Cobbled Izhêr'Aban Vertical Slab", - "block.me.cobbled_izheraban_stairs": "Cobbled Izhêr'Aban Stairs", - "block.me.cobbled_izheraban_wall": "Cobbled Izhêr'Aban Wall", - "block.me.mossy_cobbled_izheraban": "Mossy Cobbled Izhêr'Aban", - "block.me.mossy_cobbled_izheraban_slab": "Mossy Cobbled Izhêr'Aban Slab", - "block.me.mossy_cobbled_izheraban_vertical_slab": "Mossy Cobbled Izhêr'Aban Vertical Slab", - "block.me.mossy_cobbled_izheraban_stairs": "Mossy Cobbled Izhêr'Aban Stairs", - "block.me.mossy_cobbled_izheraban_wall": "Mossy Cobbled Izhêr'Aban Wall", - "block.me.izheraban": "Izhêr'Aban", - "block.me.izheraban_slab": "Izhêr'Aban Slab", - "block.me.izheraban_vertical_slab": "Izhêr'Aban Vertical Slab", - "block.me.izheraban_stairs": "Izhêr'Aban Stairs", - "block.me.izheraban_wall": "Izhêr'Aban Wall", - "block.me.izheraban_pillar": "Izhêr'Aban Pillar", - "block.me.mossy_izheraban_pillar": "Mossy Izhêr'Aban Pillar", - "block.me.cracked_izheraban_pillar": "Cracked Izhêr'Aban Pillar", - "block.me.izheraban_bricks": "Izhêr'Aban Bricks", - "block.me.izheraban_bricks_slab": "Izhêr'Aban Bricks Slab", - "block.me.izheraban_bricks_vertical_slab": "Izhêr'Aban Bricks Vertical Slab", - "block.me.izheraban_bricks_stairs": "Izhêr'Aban Bricks Stairs", - "block.me.izheraban_bricks_wall": "Izhêr'Aban Bricks Wall", - "block.me.mossy_izheraban_bricks": "Mossy Izhêr'Aban Bricks", - "block.me.mossy_izheraban_bricks_slab": "Mossy Izhêr'Aban Bricks Slab", - "block.me.mossy_izheraban_bricks_vertical_slab": "Mossy Izhêr'Aban Bricks Vertical Slab", - "block.me.mossy_izheraban_bricks_stairs": "Mossy Izhêr'Aban Bricks Stairs", - "block.me.mossy_izheraban_bricks_wall": "Mossy Izhêr'Aban Bricks Wall", - "block.me.cracked_izheraban_bricks": "Cracked Izhêr'Aban Bricks", - "block.me.cracked_izheraban_bricks_slab": "Cracked Izhêr'Aban Bricks Slab", - "block.me.cracked_izheraban_bricks_vertical_slab": "Cracked Izhêr'Aban Bricks Vertical Slab", - "block.me.cracked_izheraban_bricks_stairs": "Cracked Izhêr'Aban Bricks Stairs", - "block.me.cracked_izheraban_bricks_wall": "Cracked Izhêr'Aban Bricks Wall", - "block.me.izheraban_tiles": "Izhêr'Aban Tiles", - "block.me.izheraban_tiles_slab": "Izhêr'Aban Tiles Slab", - "block.me.izheraban_tiles_vertical_slab": "Izhêr'Aban Tiles Vertical Slab", - "block.me.izheraban_tiles_stairs": "Izhêr'Aban Tiles Stairs", - "block.me.izheraban_tiles_wall": "Izhêr'Aban Tiles Wall", - "block.me.mossy_izheraban_tiles": "Mossy Izhêr'Aban Tiles", - "block.me.mossy_izheraban_tiles_slab": "Mossy Izhêr'Aban Tiles Slab", - "block.me.mossy_izheraban_tiles_vertical_slab": "Mossy Izhêr'Aban Tiles Vertical Slab", - "block.me.mossy_izheraban_tiles_stairs": "Mossy Izhêr'Aban Tiles Stairs", - "block.me.mossy_izheraban_tiles_wall": "Mossy Izhêr'Aban Tiles Wall", - "block.me.cracked_izheraban_tiles": "Cracked Izhêr'Aban Tiles", - "block.me.cracked_izheraban_tiles_slab": "Cracked Izhêr'Aban Tiles Slab", - "block.me.cracked_izheraban_tiles_vertical_slab": "Cracked Izhêr'Aban Tiles Vertical Slab", - "block.me.cracked_izheraban_tiles_stairs": "Cracked Izhêr'Aban Tiles Stairs", - "block.me.cracked_izheraban_tiles_wall": "Cracked Izhêr'Aban Tiles Wall", - "block.me.polished_izheraban": "Polished Izhêr'Aban", - "block.me.polished_izheraban_slab": "Polished Izhêr'Aban Slab", - "block.me.polished_izheraban_vertical_slab": "Polished Izhêr'Aban Vertical Slab", - "block.me.polished_izheraban_stairs": "Polished Izhêr'Aban Stairs", - "block.me.polished_izheraban_wall": "Polished Izhêr'Aban Wall", - "block.me.mossy_polished_izheraban": "Mossy Polished Izhêr'Aban", - "block.me.mossy_polished_izheraban_slab": "Mossy Polished Izhêr'Aban Slab", - "block.me.mossy_polished_izheraban_vertical_slab": "Mossy Polished Izhêr'Aban Vertical Slab", - "block.me.mossy_polished_izheraban_stairs": "Mossy Polished Izhêr'Aban Stairs", - "block.me.mossy_polished_izheraban_wall": "Mossy Polished Izhêr'Aban Wall", - "block.me.cracked_polished_izheraban": "Cracked Polished Izhêr'Aban", - "block.me.cracked_polished_izheraban_slab": "Cracked Polished Izhêr'Aban Slab", - "block.me.cracked_polished_izheraban_vertical_slab": "Cracked Polished Izhêr'Aban Vertical Slab", - "block.me.cracked_polished_izheraban_stairs": "Cracked Polished Izhêr'Aban Stairs", - "block.me.cracked_polished_izheraban_wall": "Cracked Polished Izhêr'Aban Wall", - "block.me.chiseled_polished_izheraban": "Chiseled Polished Izhêr'Aban", - "block.me.chiseled_izheraban_bricks": "Chiseled Izhêr'Aban Bricks", - "block.me.chiseled_izheraban_tiles": "Chiseled Izhêr'Aban Tiles", - "block.me.chiseled_izheraban": "Chiseled Izhêr'Aban", - "block.me.chiseled_smooth_izheraban": "Chiseled Smooth Izhêr'Aban", - "block.me.izheraban_brickwork": "Izhêr'Aban Brickwork", - "block.me.izheraban_brickwork_slab": "Izhêr'Aban Brickwork Slab", - "block.me.izheraban_brickwork_vertical_slab": "Izhêr'Aban Brickwork Vertical Slab", - "block.me.izheraban_brickwork_stairs": "Izhêr'Aban Brickwork Stairs", - "block.me.izheraban_brickwork_wall": "Izhêr'Aban Brickwork Wall", - "block.me.izheraban_pressure_plate": "Izhêr'Aban Pressure Plate", - "block.me.izheraban_button": "Izhêr'Aban Button", - "block.me.izheraban_trapdoor": "Izhêr'Aban Trapdoor", - "block.me.izheraban_rocks": "Izhêr'Aban Rocks", - "block.me.izheraban_carved_window": "Izhêr'Aban Carved Window", - "block.me.izheraban_carved_window_pane": "Izhêr'Aban Carved Window Pane", - "block.me.izheraban_stool": "Izhêr'Aban Stool", - "block.me.izheraban_table": "Izhêr'Aban Table", - "block.me.izheraban_chair": "Izhêr'Aban Chair", - "block.me.cobbled_nurgon": "Cobbled Núrgon", - "block.me.cobbled_nurgon_slab": "Cobbled Núrgon Slab", - "block.me.cobbled_nurgon_vertical_slab": "Cobbled Núrgon Vertical Slab", - "block.me.cobbled_nurgon_stairs": "Cobbled Núrgon Stairs", - "block.me.cobbled_nurgon_wall": "Cobbled Núrgon Wall", - "block.me.nurgon": "Núrgon", - "block.me.nurgon_slab": "Núrgon Slab", - "block.me.nurgon_vertical_slab": "Núrgon Vertical Slab", - "block.me.nurgon_stairs": "Núrgon Stairs", - "block.me.nurgon_wall": "Núrgon Wall", - "block.me.nurgon_pillar": "Núrgon Pillar", - "block.me.mossy_nurgon_pillar": "Mossy Núrgon Pillar", - "block.me.cracked_nurgon_pillar": "Cracked Núrgon Pillar", - "block.me.nurgon_bricks": "Núrgon Bricks", - "block.me.nurgon_bricks_slab": "Núrgon Bricks Slab", - "block.me.nurgon_bricks_vertical_slab": "Núrgon Bricks Vertical Slab", - "block.me.nurgon_bricks_stairs": "Núrgon Bricks Stairs", - "block.me.nurgon_bricks_wall": "Núrgon Bricks Wall", - "block.me.mossy_nurgon_bricks": "Mossy Núrgon Bricks", - "block.me.mossy_nurgon_bricks_slab": "Mossy Núrgon Bricks Slab", - "block.me.mossy_nurgon_bricks_vertical_slab": "Mossy Núrgon Bricks Vertical Slab", - "block.me.mossy_nurgon_bricks_stairs": "Mossy Núrgon Bricks Stairs", - "block.me.mossy_nurgon_bricks_wall": "Mossy Núrgon Bricks Wall", - "block.me.cracked_nurgon_bricks": "Cracked Núrgon Bricks", - "block.me.cracked_nurgon_bricks_slab": "Cracked Núrgon Bricks Slab", - "block.me.cracked_nurgon_bricks_vertical_slab": "Cracked Núrgon Bricks Vertical Slab", - "block.me.cracked_nurgon_bricks_stairs": "Cracked Núrgon Bricks Stairs", - "block.me.cracked_nurgon_bricks_wall": "Cracked Núrgon Bricks Wall", - "block.me.nurgon_tiles": "Núrgon Tiles", - "block.me.nurgon_tiles_slab": "Núrgon Tiles Slab", - "block.me.nurgon_tiles_vertical_slab": "Núrgon Tiles Vertical Slab", - "block.me.nurgon_tiles_stairs": "Núrgon Tiles Stairs", - "block.me.nurgon_tiles_wall": "Núrgon Tiles Wall", - "block.me.mossy_nurgon_tiles": "Mossy Núrgon Tiles", - "block.me.mossy_nurgon_tiles_slab": "Mossy Núrgon Tiles Slab", - "block.me.mossy_nurgon_tiles_vertical_slab": "Mossy Núrgon Tiles Vertical Slab", - "block.me.mossy_nurgon_tiles_stairs": "Mossy Núrgon Tiles Stairs", - "block.me.mossy_nurgon_tiles_wall": "Mossy Núrgon Tiles Wall", - "block.me.cracked_nurgon_tiles": "Cracked Núrgon Tiles", - "block.me.cracked_nurgon_tiles_slab": "Cracked Núrgon Tiles Slab", - "block.me.cracked_nurgon_tiles_vertical_slab": "Cracked Núrgon Tiles Vertical Slab", - "block.me.cracked_nurgon_tiles_stairs": "Cracked Núrgon Tiles Stairs", - "block.me.cracked_nurgon_tiles_wall": "Cracked Núrgon Tiles Wall", - "block.me.polished_nurgon": "Polished Núrgon", - "block.me.polished_nurgon_slab": "Polished Núrgon Slab", - "block.me.polished_nurgon_vertical_slab": "Polished Núrgon Vertical Slab", - "block.me.polished_nurgon_stairs": "Polished Núrgon Stairs", - "block.me.polished_nurgon_wall": "Polished Núrgon Wall", - "block.me.mossy_polished_nurgon": "Mossy Polished Núrgon", - "block.me.mossy_polished_nurgon_slab": "Mossy Polished Núrgon Slab", - "block.me.mossy_polished_nurgon_vertical_slab": "Mossy Polished Núrgon Vertical Slab", - "block.me.mossy_polished_nurgon_stairs": "Mossy Polished Núrgon Stairs", - "block.me.mossy_polished_nurgon_wall": "Mossy Polished Núrgon Wall", - "block.me.cracked_polished_nurgon": "Cracked Polished Núrgon", - "block.me.cracked_polished_nurgon_slab": "Cracked Polished Núrgon Slab", - "block.me.cracked_polished_nurgon_vertical_slab": "Cracked Polished Núrgon Vertical Slab", - "block.me.cracked_polished_nurgon_stairs": "Cracked Polished Núrgon Stairs", - "block.me.cracked_polished_nurgon_wall": "Cracked Polished Núrgon Wall", - "block.me.chiseled_polished_nurgon": "Chiseled Polished Núrgon", - "block.me.chiseled_nurgon_bricks": "Chiseled Núrgon Bricks", - "block.me.nurgon_pressure_plate": "Núrgon Pressure Plate", - "block.me.nurgon_button": "Núrgon Button", - "block.me.nurgon_trapdoor": "Núrgon Trapdoor", - "block.me.nurgon_rocks": "Núrgon Rocks", - "block.me.nurgon_stool": "Núrgon Stool", - "block.me.nurgon_table": "Núrgon Table", - "block.me.nurgon_chair": "Núrgon Chair", - "block.me.old_medgon": "Old Medgon", - "block.me.old_medgon_slab": "Old Medgon Slab", - "block.me.old_medgon_vertical_slab": "Old Medgon Vertical Slab", - "block.me.old_medgon_stairs": "Old Medgon Stairs", - "block.me.old_medgon_wall": "Old Medgon Wall", - "block.me.smooth_medgon": "Smooth Medgon", - "block.me.smooth_medgon_slab": "Smooth Medgon Slab", - "block.me.smooth_medgon_vertical_slab": "Smooth Medgon Vertical Slab", - "block.me.smooth_medgon_stairs": "Smooth Medgon Stairs", - "block.me.smooth_medgon_wall": "Smooth Medgon Wall", - "block.me.mossy_smooth_medgon": "Mossy Smooth Medgon", - "block.me.mossy_smooth_medgon_slab": "Mossy Smooth Medgon Slab", - "block.me.mossy_smooth_medgon_vertical_slab": "Mossy Smooth Medgon Vertical Slab", - "block.me.mossy_smooth_medgon_stairs": "Mossy Smooth Medgon Stairs", - "block.me.mossy_smooth_medgon_wall": "Mossy Smooth Medgon Wall", - "block.me.cracked_smooth_medgon": "Cracked Smooth Medgon", - "block.me.cracked_smooth_medgon_slab": "Cracked Smooth Medgon Slab", - "block.me.cracked_smooth_medgon_vertical_slab": "Cracked Smooth Medgon Vertical Slab", - "block.me.cracked_smooth_medgon_stairs": "Cracked Smooth Medgon Stairs", - "block.me.cracked_smooth_medgon_wall": "Cracked Smooth Medgon Wall", - "block.me.cobbled_medgon": "Cobbled Medgon", - "block.me.cobbled_medgon_slab": "Cobbled Medgon Slab", - "block.me.cobbled_medgon_vertical_slab": "Cobbled Medgon Vertical Slab", - "block.me.cobbled_medgon_stairs": "Cobbled Medgon Stairs", - "block.me.cobbled_medgon_wall": "Cobbled Medgon Wall", - "block.me.mossy_cobbled_medgon": "Mossy Cobbled Medgon", - "block.me.mossy_cobbled_medgon_slab": "Mossy Cobbled Medgon Slab", - "block.me.mossy_cobbled_medgon_vertical_slab": "Mossy Cobbled Medgon Vertical Slab", - "block.me.mossy_cobbled_medgon_stairs": "Mossy Cobbled Medgon Stairs", - "block.me.mossy_cobbled_medgon_wall": "Mossy Cobbled Medgon Wall", - "block.me.medgon": "Medgon", - "block.me.medgon_slab": "Medgon Slab", - "block.me.medgon_vertical_slab": "Medgon Vertical Slab", - "block.me.medgon_stairs": "Medgon Stairs", - "block.me.medgon_wall": "Medgon Wall", - "block.me.medgon_pillar": "Medgon Pillar", - "block.me.mossy_medgon_pillar": "Mossy Medgon Pillar", - "block.me.cracked_medgon_pillar": "Cracked Medgon Pillar", - "block.me.medgon_bricks": "Medgon Bricks", - "block.me.medgon_bricks_slab": "Medgon Bricks Slab", - "block.me.medgon_bricks_vertical_slab": "Medgon Bricks Vertical Slab", - "block.me.medgon_bricks_stairs": "Medgon Bricks Stairs", - "block.me.medgon_bricks_wall": "Medgon Bricks Wall", - "block.me.mossy_medgon_bricks": "Mossy Medgon Bricks", - "block.me.mossy_medgon_bricks_slab": "Mossy Medgon Bricks Slab", - "block.me.mossy_medgon_bricks_vertical_slab": "Mossy Medgon Bricks Vertical Slab", - "block.me.mossy_medgon_bricks_stairs": "Mossy Medgon Bricks Stairs", - "block.me.mossy_medgon_bricks_wall": "Mossy Medgon Bricks Wall", - "block.me.cracked_medgon_bricks": "Cracked Medgon Bricks", - "block.me.cracked_medgon_bricks_slab": "Cracked Medgon Bricks Slab", - "block.me.cracked_medgon_bricks_vertical_slab": "Cracked Medgon Bricks Vertical Slab", - "block.me.cracked_medgon_bricks_stairs": "Cracked Medgon Bricks Stairs", - "block.me.cracked_medgon_bricks_wall": "Cracked Medgon Bricks Wall", - "block.me.medgon_tiles": "Medgon Tiles", - "block.me.medgon_tiles_slab": "Medgon Tiles Slab", - "block.me.medgon_tiles_vertical_slab": "Medgon Tiles Vertical Slab", - "block.me.medgon_tiles_stairs": "Medgon Tiles Stairs", - "block.me.medgon_tiles_wall": "Medgon Tiles Wall", - "block.me.mossy_medgon_tiles": "Mossy Medgon Tiles", - "block.me.mossy_medgon_tiles_slab": "Mossy Medgon Tiles Slab", - "block.me.mossy_medgon_tiles_vertical_slab": "Mossy Medgon Tiles Vertical Slab", - "block.me.mossy_medgon_tiles_stairs": "Mossy Medgon Tiles Stairs", - "block.me.mossy_medgon_tiles_wall": "Mossy Medgon Tiles Wall", - "block.me.cracked_medgon_tiles": "Cracked Medgon Tiles", - "block.me.cracked_medgon_tiles_slab": "Cracked Medgon Tiles Slab", - "block.me.cracked_medgon_tiles_vertical_slab": "Cracked Medgon Tiles Vertical Slab", - "block.me.cracked_medgon_tiles_stairs": "Cracked Medgon Tiles Stairs", - "block.me.cracked_medgon_tiles_wall": "Cracked Medgon Tiles Wall", - "block.me.polished_medgon": "Polished Medgon", - "block.me.polished_medgon_slab": "Polished Medgon Slab", - "block.me.polished_medgon_vertical_slab": "Polished Medgon Vertical Slab", - "block.me.polished_medgon_stairs": "Polished Medgon Stairs", - "block.me.polished_medgon_wall": "Polished Medgon Wall", - "block.me.mossy_polished_medgon": "Mossy Polished Medgon", - "block.me.mossy_polished_medgon_slab": "Mossy Polished Medgon Slab", - "block.me.mossy_polished_medgon_vertical_slab": "Mossy Polished Medgon Vertical Slab", - "block.me.mossy_polished_medgon_stairs": "Mossy Polished Medgon Stairs", - "block.me.mossy_polished_medgon_wall": "Mossy Polished Medgon Wall", - "block.me.cracked_polished_medgon": "Cracked Polished Medgon", - "block.me.cracked_polished_medgon_slab": "Cracked Polished Medgon Slab", - "block.me.cracked_polished_medgon_vertical_slab": "Cracked Polished Medgon Vertical Slab", - "block.me.cracked_polished_medgon_stairs": "Cracked Polished Medgon Stairs", - "block.me.cracked_polished_medgon_wall": "Cracked Polished Medgon Wall", - "block.me.chiseled_polished_medgon": "Chiseled Polished Medgon", - "block.me.chiseled_medgon_bricks": "Chiseled Medgon Bricks", - "block.me.chiseled_medgon": "Chiseled Medgon", - "block.me.chiseled_medgon_tiles": "Chiseled Medgon Tiles", - "block.me.chiseled_smooth_medgon": "Chiseled Smooth Medgon", - "block.me.medgon_brickwork": "Medgon Brickwork", - "block.me.medgon_brickwork_slab": "Medgon Brickwork Slab", - "block.me.medgon_brickwork_vertical_slab": "Medgon Brickwork Vertical Slab", - "block.me.medgon_brickwork_stairs": "Medgon Brickwork Stairs", - "block.me.medgon_brickwork_wall": "Medgon Brickwork Wall", - "block.me.medgon_pressure_plate": "Medgon Pressure Plate", - "block.me.medgon_button": "Medgon Button", - "block.me.medgon_trapdoor": "Medgon Trapdoor", - "block.me.medgon_carved_window": "Medgon Carved Window", - "block.me.medgon_carved_window_pane": "Medgon Carved Window Pane", - "block.me.medgon_rocks": "Medgon Rocks", - "block.me.medgon_stool": "Medgon Stool", - "block.me.medgon_table": "Medgon Table", - "block.me.medgon_chair": "Medgon Chair", - "block.me.mixed_stones": "Pierres mixte", - "block.me.mixed_stones_slab": "Dalle en pierres mixte", - "block.me.mixed_stones_vertical_slab": "Dalle verticale en pierres mixte", - "block.me.mixed_stones_stairs": "Mixed Stones Stairs", - "block.me.mixed_stones_wall": "Muret en pierres mixte", - "block.me.mossy_mixed_stones": "Pierres mixte moussue", - "block.me.mossy_mixed_stones_slab": "Dalle en pierres mixte moussue", - "block.me.mossy_mixed_stones_vertical_slab": "Dalle verticale en pierres mixte moussue", - "block.me.mossy_mixed_stones_stairs": "Mossy Mixed Stones Stairs", - "block.me.mossy_mixed_stones_wall": "Muret en pierres mixte moussue", - "block.me.cracked_mixed_stones": "Pierres mixtes craquelée", - "block.me.cracked_mixed_stones_slab": "Dalle en pierres mixte craquelée", - "block.me.cracked_mixed_stones_vertical_slab": "Dalle verticale en pierres mixte craquelée", - "block.me.cracked_mixed_stones_stairs": "Cracked Mixed Stones Stairs", - "block.me.cracked_mixed_stones_wall": "Muret en pierres mixte craquelée", - "block.me.quartz_block": "Bloc de quartz", - "block.me.budding_quartz": "Druse de quartz", - "block.me.quartz_cluster": "Amas de quartz", - "block.me.small_quartz_bud": "Petit cristal de quartz", - "block.me.medium_quartz_bud": "Cristal moyen de quartz", - "block.me.large_quartz_bud": "Grand cristal de quartz", - "block.me.red_agate_block": "Bloc d'agate rouge", - "block.me.budding_red_agate": "Druse d'agate rouge", - "block.me.red_agate_cluster": "Amas d'agate rouge", - "block.me.small_red_agate_bud": "Petit cristal d'agate rouge", - "block.me.medium_red_agate_bud": "Cristal moyen d'agate rouge", - "block.me.large_red_agate_bud": "Grand cristal d'agate rouge", - "block.me.citrine_block": "Bloc de citrine", - "block.me.budding_citrine": "Druse de citrine", - "block.me.citrine_cluster": "Amas de citrine", - "block.me.small_citrine_bud": "Petit cristal de citrine", - "block.me.medium_citrine_bud": "Cristal moyen de citrine", - "block.me.large_citrine_bud": "Grand cristal de citrine", - "block.me.glowstone_block": "Bloc de pierre lumineuse", - "block.me.budding_glowstone": "Drune de pierre lumineuse", - "block.me.glowstone_cluster": "Amas de pierre lumineuse", - "block.me.small_glowstone_bud": "Petit cristal de pierre lumineuse", - "block.me.medium_glowstone_bud": "Cristal moyen de pierre lumineuse", - "block.me.large_glowstone_bud": "Grand cristal de pierre lumineuse", - "block.me.dry_dirt": "Terre sèche", - "block.me.dry_dirt_slab": "Dalle de terre sèche", - "block.me.dry_dirt_stairs": "Escaliers de terre sèche", - "block.me.dirty_roots": "Dirty Roots", - "block.me.dirty_roots_slab": "Dirty Roots Slab", - "block.me.dirty_roots_stairs": "Dirty Roots Stairs", - "block.me.ashen_dirt": "Terre cendrée", - "block.me.ashen_dirt_slab": "Dalle de terre cendrée", - "block.me.ashen_dirt_stairs": "Escaliers de terre cendrée", - "block.me.dirt_slab": "Dalle de terre", - "block.me.dirt_stairs": "Escaliers de terre", - "block.me.rooted_dirt_slab": "Dalle de terre racineuse", - "block.me.rooted_dirt_stairs": "Escaliers de terre racineuse", - "block.me.coarse_dirt_slab": "Dalle de terre stérile", - "block.me.coarse_dirt_stairs": "Escalier de terre stérile", - "block.me.mud_slab": "Dalle de boue", - "block.me.mud_stairs": "Escaliers de boue", - "block.me.moss_slab": "Moss Slab", - "block.me.moss_stairs": "Moss Stairs", - "block.me.packed_mire": "Packed Mire", - "block.me.packed_mire_slab": "Packed Mire Slab", - "block.me.packed_mire_vertical_slab": "Packed Mire Vertical Slab", - "block.me.packed_mire_stairs": "Packed Mire Stairs", - "block.me.packed_mire_wall": "Packed Mire Wall", - "block.me.mire_bricks": "Mire Bricks", - "block.me.mire_bricks_slab": "Mire Brick Slab", - "block.me.mire_bricks_vertical_slab": "Mire Brick Vertical Slab", - "block.me.mire_bricks_stairs": "Mire Brick Stairs", - "block.me.mire_bricks_wall": "Mire Brick Wall", - "block.me.snowy_grass_block": "Snowy Grass Block", - "block.me.snowy_dirt": "Snowy Dirt", - "block.me.snowy_dirt_slab": "Snowy Dirt Slab", - "block.me.snowy_dirt_stairs": "Snowy Dirt Stairs", - "block.me.cobbly_dirt": "Cobbly Dirt", - "block.me.cobbly_dirt_slab": "Cobbly Dirt Slab", - "block.me.cobbly_dirt_stairs": "Cobbly Dirt Stairs", - "block.me.cobbly_ashen_dirt": "Cobbly Ashen Dirt", - "block.me.cobbly_ashen_dirt_slab": "Cobbly Ashen Dirt Slab", - "block.me.cobbly_ashen_dirt_stairs": "Cobbly Ashen Dirt Stairs", - "block.me.grassy_dirt": "Grassy Dirt", - "block.me.grassy_dirt_slab": "Grassy Dirt Slab", - "block.me.grassy_dirt_stairs": "Grassy Dirt Stairs", - "block.me.turf": "Turf", - "block.me.turf_slab": "Turf Slab", - "block.me.turf_vertical_slab": "Turf Vertical Slab", - "block.me.turf_stairs": "Turf Stairs", - "block.me.mire": "Mire", - "block.me.mire_slab": "Mire Slab", - "block.me.mire_stairs": "Mire Stairs", - "block.me.beech_leaves": "Feuilles de hêtre", - "block.me.beech_log": "Bûche de hêtre", - "block.me.beech_wood": "Planches de hêtre", - "block.me.beech_wood_wall": "Murret en hêtre", - "block.me.beech_wood_fence": "Barrière en hêtre", - "block.me.stripped_beech_log": "Bûche de hêtre écorcée", - "block.me.stripped_beech_wood": "Bois de hêtre écorcé", - "block.me.stripped_beech_wood_wall": "Murret en hêtre écorcé", - "block.me.stripped_beech_wood_fence": "Clôture en bois de hêtre écorcé", - "block.me.beech_planks": "Planches de hêtre", - "block.me.beech_slab": "Dalle en hêtre", - "block.me.beech_vertical_slab": "Dalle verticale en hêtre", - "block.me.beech_stairs": "Escaliers en hêtre", - "block.me.beech_fence": "Clôture en hêtre", - "block.me.beech_fence_gate": "Portillon en hêtre", - "block.me.beech_pressure_plate": "Plaque de pression en hêtre", - "block.me.beech_button": "Bouton en hêtre", - "block.me.beech_door": "Porte en hêtre", - "block.me.beech_trapdoor": "Trappe en hêtre", - "block.me.beech_shingles": "Bardeaux en hêtre", - "block.me.beech_shingles_stairs": "Escalier de bardeaux en hêtre", - "block.me.beech_shingles_slab": "Dalle de bardeaux en hêtre", - "block.me.beech_shingles_vertical_slab": "Dalle verticale de bardeaux en hêtre", - "block.me.beech_shingles_wall": "Murret de bardeaux en hêtre", - "block.me.beech_roofing": "Beech Roofing", - "block.me.beech_roofing_stairs": "Beech Roofing Stairs", - "block.me.beech_roofing_slab": "Beech Roofing Slab", - "block.me.beech_roofing_vertical_slab": "Beech Roofing Vertical Slab", - "block.me.beech_roofing_wall": "Beech Roofing Wall", - "block.me.beech_wood_slab": "Dalle en bois de hêtre", - "block.me.beech_wood_vertical_slab": "Dalle verticale en bois de hêtre", - "block.me.beech_wood_stairs": "Escaliers en bois de hêtre", - "block.me.stripped_beech_wood_slab": "Dalle en bois de hêtre écorcée", - "block.me.stripped_beech_wood_vertical_slab": "Dalle verticale en bois de hêtre écorcée", - "block.me.stripped_beech_wood_stairs": "Escaliers en bois de hêtre écorcée", - "block.me.beech_stool": "Tabouret en hêtre", - "block.me.beech_bench": "Beech Bench", - "block.me.beech_table": "Table en hêtre", - "block.me.beech_chair": "Chaise en hêtre", - "block.me.beech_ladder": "Beech Ladder", - "block.me.larch_leaves": "Feuilles de mélèze", - "block.me.dry_larch_leaves": "Dry Larch Leaves", - "block.me.larch_log": "Bûche de mélèze", - "block.me.larch_wood": "Planches de mélèze", - "block.me.larch_wood_wall": "Murret en mélèze", - "block.me.larch_wood_fence": "Barrière en mélèze", - "block.me.stripped_larch_log": "Bûche de mélèze écorcée", - "block.me.stripped_larch_wood": "Bois de mélèze écorcé", - "block.me.stripped_larch_wood_wall": "Bois en mélèze écorcé", - "block.me.stripped_larch_wood_fence": "Barrière en bois de hêtre écorcé", - "block.me.larch_planks": "Planches de mélèze", - "block.me.larch_slab": "Dalle en mélèze", - "block.me.larch_vertical_slab": "Dalle verticale en mélèze", - "block.me.larch_stairs": "Escaliers en mélèze", - "block.me.larch_fence": "Barrière en mélèze", - "block.me.larch_fence_gate": "Portillon en mélèze", - "block.me.larch_pressure_plate": "Plaque de pression en mélèze", - "block.me.larch_button": "Bouton en mélèze", - "block.me.larch_door": "Porte en mélèze", - "block.me.larch_trapdoor": "Trappe en mélèze", - "block.me.larch_shingles": "Bardeaux en mélèze", - "block.me.larch_shingles_stairs": "Escalier de bardeaux en mélèze", - "block.me.larch_shingles_slab": "Dalle de bardeaux en mélèze", - "block.me.larch_shingles_vertical_slab": "Dalle verticale de bardeaux en mélèze", - "block.me.larch_shingles_wall": "Murret de bardeaux en mélèze", - "block.me.larch_roofing": "Larch Roofing", - "block.me.larch_roofing_stairs": "Larch Roofing Stairs", - "block.me.larch_roofing_slab": "Larch Roofing Slab", - "block.me.larch_roofing_vertical_slab": "Larch Roofing Vertical Slab", - "block.me.larch_roofing_wall": "Larch Roofing Wall", - "block.me.larch_wood_slab": "Dalle en bois de mélèze", - "block.me.larch_wood_vertical_slab": "Dalle verticale en bois de mélèze", - "block.me.larch_wood_stairs": "Escaliers en bois de mélèze", - "block.me.stripped_larch_wood_slab": "Dalle en bois de mélèze écorcé", - "block.me.stripped_larch_wood_vertical_slab": "Dalle verticale en bois de mélèze écorcé", - "block.me.stripped_larch_wood_stairs": "Escaliers en bois de mélèze écorcé", - "block.me.larch_stool": "Tabouret en mélèze", - "block.me.larch_bench": "Larch Bench", - "block.me.larch_table": "Table en mélèze", - "block.me.larch_chair": "Chaise en mélèze", - "block.me.larch_ladder": "Larch Ladder", - "block.me.lebethron_leaves": "Feuilles de Lebethron", - "block.me.black_lebethron_log": "Bûche de Lebethron noir", - "block.me.black_lebethron_wood": "Bois Lebethron noir", - "block.me.black_lebethron_wood_wall": "Murret en bois de Lebethron noir", - "block.me.black_lebethron_wood_fence": "Clôture en bois de Lebethron noir", - "block.me.stripped_black_lebethron_log": "Bûche de Lebethron noir écorcé", - "block.me.stripped_black_lebethron_wood": "Bois de Lebethron noir écorcé", - "block.me.stripped_black_lebethron_wood_wall": "Murret en bois de Lebethron noir", - "block.me.stripped_black_lebethron_wood_fence": "Barrière en bois de Lebethron noir écorcé", - "block.me.black_lebethron_planks": "Planches de Lebethron noir", - "block.me.black_lebethron_slab": "Dalle en Lebethron noir", - "block.me.black_lebethron_vertical_slab": "Dalle verticale en Lebethron noir", - "block.me.black_lebethron_stairs": "Escaliers en Lebethron noir", - "block.me.black_lebethron_fence": "Barrière en Lebethron noir", - "block.me.black_lebethron_fence_gate": "Portillion en Lebethron noir", - "block.me.black_lebethron_pressure_plate": "Plaque de pression en Lebethron noir", - "block.me.black_lebethron_button": "Bouton en Lebethron noir", - "block.me.black_lebethron_door": "Porte en Lebethron noire", - "block.me.black_lebethron_trapdoor": "Trappe en Lebethron noir", - "block.me.black_lebethron_shingles": "Bardeaux en Lebethron noir", - "block.me.black_lebethron_shingles_stairs": "Escaliers en bardeaux de Lebethron noir", - "block.me.black_lebethron_shingles_slab": "Dalle en bardeaux de Lebethron noir", - "block.me.black_lebethron_shingles_vertical_slab": "Dalle verticale en bardeaux de Lebethron noir", - "block.me.black_lebethron_shingles_wall": "Murret en bardeaux de Lebethron noir", - "block.me.black_lebethron_roofing": "Black Lebethron Roofing", - "block.me.black_lebethron_roofing_stairs": "Black Lebethron Roofing Stairs", - "block.me.black_lebethron_roofing_slab": "Black Lebethron Roofing Slab", - "block.me.black_lebethron_roofing_vertical_slab": "Black Lebethron Roofing Vertical Slab", - "block.me.black_lebethron_roofing_wall": "Black Lebethron Roofing Wall", - "block.me.black_lebethron_wood_slab": "Dalle en bois de Lebethron noir", - "block.me.black_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron noir", - "block.me.black_lebethron_wood_stairs": "Escaliers en bois de Lebethron noir", - "block.me.stripped_black_lebethron_wood_slab": "Dalle en bois de Lebethron noir écorcé", - "block.me.stripped_black_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron noir écorcé", - "block.me.stripped_black_lebethron_wood_stairs": "Escaliers en bois de Lebethron noir écorcé", - "block.me.black_lebethron_stool": "Tabouret en Lebethron noir", - "block.me.black_lebethron_bench": "Black Lebethron Bench", - "block.me.black_lebethron_table": "Table en Lebethron noir", - "block.me.black_lebethron_chair": "Chaise en Lebethron noire", - "block.me.black_lebethron_ladder": "Black Lebethron Ladder", - "block.me.white_lebethron_log": "Bûche de Lebethron blanc", - "block.me.white_lebethron_wood": "Bois de Lebethron blanc", - "block.me.white_lebethron_wood_wall": "Murret en bois de Lebethron blanc", - "block.me.white_lebethron_wood_fence": "Barrière en bois de Lebethron blanc", - "block.me.stripped_white_lebethron_log": "Bûche de Lebethron blanc écorcé", - "block.me.stripped_white_lebethron_wood": "Bois de Lebethron blanc écorcé", - "block.me.stripped_white_lebethron_wood_wall": "Murret en bois de Lebethron blanc écorcé", - "block.me.stripped_white_lebethron_wood_fence": "Barrière en bois de Lebethron blanc écorcé", - "block.me.white_lebethron_planks": "Planches de Lebethron blanc", - "block.me.white_lebethron_slab": "Dalle de Lebethron blanc", - "block.me.white_lebethron_vertical_slab": "Dalle verticale en Lebethron blanc", - "block.me.white_lebethron_stairs": "Escaliers en Lebethron blanc", - "block.me.white_lebethron_fence": "Barrière en Lebethron blanc", - "block.me.white_lebethron_fence_gate": "Portillon en Lebethron blanc", - "block.me.white_lebethron_pressure_plate": "Plaque de pression en Lebethron blanc", - "block.me.white_lebethron_button": "Bouton en Lebethron blanc", - "block.me.white_lebethron_door": "Porte en Lebethron blanc", - "block.me.white_lebethron_trapdoor": "Trappe en Lebethron blanc", - "block.me.white_lebethron_shingles": "Bardeaux en Lebethron blanc", - "block.me.white_lebethron_shingles_stairs": "Escaliers en bardeaux de Lebethron blanc", - "block.me.white_lebethron_shingles_slab": "Dalle en bardeaux de Lebethron blanc", - "block.me.white_lebethron_shingles_vertical_slab": "Dalle verticale en bardeaux de Lebethron blanc", - "block.me.white_lebethron_shingles_wall": "Murret en bardeaux de Lebethron blanc", - "block.me.white_lebethron_roofing": "White Lebethron Roofing", - "block.me.white_lebethron_roofing_stairs": "White Lebethron Roofing Stairs", - "block.me.white_lebethron_roofing_slab": "White Lebethron Roofing Slab", - "block.me.white_lebethron_roofing_vertical_slab": "White Lebethron Roofing Vertical Slab", - "block.me.white_lebethron_roofing_wall": "White Lebethron Roofing Wall", - "block.me.white_lebethron_wood_slab": "Dalle en bois de Lebethron blanc", - "block.me.white_lebethron_wood_vertical_slab": "Murret en bois de Lebethron blanc", - "block.me.white_lebethron_wood_stairs": "Escaliers en bois de Lebethron blanc", - "block.me.stripped_white_lebethron_wood_slab": "Dalle en bois de Lebethron blanc écorcé", - "block.me.stripped_white_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron blanc écorcé", - "block.me.stripped_white_lebethron_wood_stairs": "Escaliers en bois de Lebethron blanc écorcé", - "block.me.white_lebethron_stool": "Tabouret en Lebethron blanc", - "block.me.white_lebethron_bench": "White Lebethron Bench", - "block.me.white_lebethron_table": "Table en Lebethron blanc", - "block.me.white_lebethron_chair": "Chaise en Lebethron blanc", - "block.me.white_lebethron_ladder": "White Lebethron Ladder", - "block.me.chestnut_leaves": "Chestnut Leaves", - "block.me.chestnut_log": "Chestnut Log", - "block.me.chestnut_wood": "Chestnut Wood", - "block.me.chestnut_wood_wall": "Chestnut Wood Wall", - "block.me.chestnut_wood_fence": "Chestnut Wood Fence", - "block.me.stripped_chestnut_log": "Stripped Chestnut Log", - "block.me.stripped_chestnut_wood": "Stripped Chestnut Wood", - "block.me.stripped_chestnut_wood_wall": "Stripped Chestnut Wood Wall", - "block.me.stripped_chestnut_wood_fence": "Stripped Chestnut Wood Fence", - "block.me.chestnut_planks": "Chestnut Planks", - "block.me.chestnut_slab": "Chestnut Slab", - "block.me.chestnut_vertical_slab": "Chestnut Vertical Slab", - "block.me.chestnut_stairs": "Chestnut Stairs", - "block.me.chestnut_fence": "Chestnut Fence", - "block.me.chestnut_fence_gate": "Chestnut Fence Gate", - "block.me.chestnut_pressure_plate": "Chestnut Pressure Plate", - "block.me.chestnut_button": "Chestnut Button", - "block.me.chestnut_door": "Chestnut Door", - "block.me.chestnut_trapdoor": "Chestnut Trapdoor", - "block.me.chestnut_shingles": "Chestnut Shingles", - "block.me.chestnut_shingles_stairs": "Chestnut Shingles Stairs", - "block.me.chestnut_shingles_slab": "Chestnut Shingles Slab", - "block.me.chestnut_shingles_vertical_slab": "Chestnut Shingles Vertical Slab", - "block.me.chestnut_shingles_wall": "Chestnut Shingles Wall", - "block.me.chestnut_roofing": "Chestnut Roofing", - "block.me.chestnut_roofing_stairs": "Chestnut Roofing Stairs", - "block.me.chestnut_roofing_slab": "Chestnut Roofing Slab", - "block.me.chestnut_roofing_vertical_slab": "Chestnut Roofing Vertical Slab", - "block.me.chestnut_roofing_wall": "Chestnut Roofing Wall", - "block.me.chestnut_wood_slab": "Chestnut Wood Slab", - "block.me.chestnut_wood_vertical_slab": "Chestnut Wood Vertical Slab", - "block.me.chestnut_wood_stairs": "Chestnut Wood Stairs", - "block.me.stripped_chestnut_wood_slab": "Stripped Chestnut Wood Slab", - "block.me.stripped_chestnut_wood_vertical_slab": "Stripped Chestnut Wood Vertical Slab", - "block.me.stripped_chestnut_wood_stairs": "Stripped Chestnut Wood Stairs", - "block.me.chestnut_stool": "Chestnut Stool", - "block.me.chestnut_bench": "Chestnut Bench", - "block.me.chestnut_table": "Chestnut Table", - "block.me.chestnut_chair": "Chestnut Chair", - "block.me.chestnut_ladder": "Chestnut Ladder", - "block.me.holly_leaves": "Holly Leaves", - "block.me.berry_holly_leaves": "Berry Holly Leaves", - "block.me.holly_log": "Holly Log", - "block.me.holly_wood": "Holly Wood", - "block.me.holly_wood_wall": "Holly Wood Wall", - "block.me.holly_wood_fence": "Holly Wood Fence", - "block.me.stripped_holly_log": "Stripped Holly Log", - "block.me.stripped_holly_wood": "Stripped Holly Wood", - "block.me.stripped_holly_wood_wall": "Stripped Holly Wood Wall", - "block.me.stripped_holly_wood_fence": "Stripped Holly Wood Fence", - "block.me.holly_planks": "Holly Planks", - "block.me.holly_slab": "Holly Slab", - "block.me.holly_vertical_slab": "Holly Vertical Slab", - "block.me.holly_stairs": "Holly Stairs", - "block.me.holly_fence": "Holly Fence", - "block.me.holly_fence_gate": "Holly Fence Gate", - "block.me.holly_pressure_plate": "Holly Pressure Plate", - "block.me.holly_button": "Holly Button", - "block.me.holly_door": "Holly Door", - "block.me.holly_trapdoor": "Holly Trapdoor", - "block.me.holly_shingles": "Holly Shingles", - "block.me.holly_shingles_stairs": "Holly Shingles Stairs", - "block.me.holly_shingles_slab": "Holly Shingles Slab", - "block.me.holly_shingles_vertical_slab": "Holly Shingles Vertical Slab", - "block.me.holly_shingles_wall": "Holly Shingles Wall", - "block.me.holly_roofing": "Holly Roofing", - "block.me.holly_roofing_stairs": "Holly Roofing Stairs", - "block.me.holly_roofing_slab": "Holly Roofing Slab", - "block.me.holly_roofing_vertical_slab": "Holly Roofing Vertical Slab", - "block.me.holly_roofing_wall": "Holly Roofing Wall", - "block.me.holly_wood_slab": "Holly Wood Slab", - "block.me.holly_wood_vertical_slab": "Holly Wood Vertical Slab", - "block.me.holly_wood_stairs": "Holly Wood Stairs", - "block.me.stripped_holly_wood_slab": "Stripped Holly Wood Slab", - "block.me.stripped_holly_wood_vertical_slab": "Stripped Holly Wood Vertical Slab", - "block.me.stripped_holly_wood_stairs": "Stripped Holly Wood Stairs", - "block.me.holly_stool": "Holly Stool", - "block.me.holly_bench": "Holly Bench", - "block.me.holly_table": "Holly Table", - "block.me.holly_chair": "Holly Chair", - "block.me.holly_ladder": "Holly Ladder", - "block.me.mallorn_leaves": "Feuilles de Mallorn", - "block.me.flowering_mallorn_leaves": "Flowering Mallorn Leaves", - "block.me.fallen_mallorn_leaves": "Fallen Mallorn Leaves", - "block.me.mallorn_log": "Bûche de Mallorn", - "block.me.mallorn_wood": "Bois de Mallorn", - "block.me.mallorn_wood_wall": "Mur en bois de Mallorn", - "block.me.mallorn_wood_fence": "Barrière en bois de Mallorn", - "block.me.stripped_mallorn_log": "Bûche de Mallorn écorcé", - "block.me.stripped_mallorn_wood": "Bois de Mallorn écorcé", - "block.me.stripped_mallorn_wood_wall": "Muret en bois de Mallorn écorcé", - "block.me.stripped_mallorn_wood_fence": "Barrière en bois de Mallorn écorcé", - "block.me.mallorn_planks": "Planches de Mallorn", - "block.me.mallorn_slab": "Dalle en Mallorn", - "block.me.mallorn_vertical_slab": "Dalle verticale en Mallorn", - "block.me.mallorn_stairs": "Escaliers en Mallorn", - "block.me.mallorn_fence": "Barrière en Mallorn", - "block.me.mallorn_fence_gate": "Portillion en Mallorn", - "block.me.mallorn_pressure_plate": "Plaque de pression en Mallorn", - "block.me.mallorn_button": "Bouton en Mallorn", - "block.me.mallorn_door": "Porte en Mallorn", - "block.me.mallorn_trapdoor": "Trappe en Mallorn", - "block.me.mallorn_shingles": "Bardeaux en Mallorn", - "block.me.mallorn_shingles_stairs": "Escaliers en bardeaux de Mallorn", - "block.me.mallorn_shingles_slab": "Dalle en bardeaux de Mallorn", - "block.me.mallorn_shingles_vertical_slab": "Dalle verticale en bardeaux de Mallorn", - "block.me.mallorn_shingles_wall": "Muret en bardeaux de Mallorn", - "block.me.mallorn_roofing": "Mallorn Roofing", - "block.me.mallorn_roofing_stairs": "Mallorn Roofing Stairs", - "block.me.mallorn_roofing_slab": "Mallorn Roofing Slab", - "block.me.mallorn_roofing_vertical_slab": "Mallorn Roofing Vertical Slab", - "block.me.mallorn_roofing_wall": "Mallorn Roofing Wall", - "block.me.mallorn_wood_slab": "Dalle en bois de Mallorn", - "block.me.mallorn_wood_vertical_slab": "Dalle verticale en bois de Mallorn", - "block.me.mallorn_wood_stairs": "Escaliers en bois de Mallorn", - "block.me.stripped_mallorn_wood_slab": "Dalle en bois de Mallorn écorcé", - "block.me.stripped_mallorn_wood_vertical_slab": "Dalle verticale en bois de Mallorn écorcé", - "block.me.stripped_mallorn_wood_stairs": "Escaliers en bois de Mallorn écorcé", - "block.me.mallorn_stool": "Tabouret en Mallorn", - "block.me.mallorn_bench": "Mallorn Bench", - "block.me.mallorn_table": "Table en Mallorn", - "block.me.mallorn_chair": "Chaise en Mallorn", - "block.me.mallorn_ladder": "Mallorn Ladder", - "block.me.maple_leaves": "Feuilles d'érable", - "block.me.orange_maple_leaves": "Orange Maple Leaves", - "block.me.red_maple_leaves": "Red Maple Leaves", - "block.me.yellow_maple_leaves": "Yellow Maple Leaves", - "block.me.maple_log": "Bûche d'érable", - "block.me.maple_wood": "Bois d'érable", - "block.me.maple_wood_wall": "Muret en bois d'érable", - "block.me.maple_wood_fence": "Barrière en bois d'érable", - "block.me.stripped_maple_log": "Bûche d'érable écorcée", - "block.me.stripped_maple_wood": "Bois d'érable écorcé", - "block.me.stripped_maple_wood_wall": "Muret en bois d'érable écorcé", - "block.me.stripped_maple_wood_fence": "Barrière en bois d'érable écorcé", - "block.me.maple_planks": "Planches d'érable", - "block.me.maple_slab": "Dalle en érable", - "block.me.maple_vertical_slab": "Dalle verticale en érable", - "block.me.maple_stairs": "Escaliers en érable", - "block.me.maple_fence": "Barrière en érable", - "block.me.maple_fence_gate": "Portillon en érable", - "block.me.maple_pressure_plate": "Plaque de pression en érable", - "block.me.maple_button": "Bouton en érable", - "block.me.maple_door": "Porte en érable", - "block.me.maple_trapdoor": "Trappe en érable", - "block.me.maple_shingles": "Bardeaux d'érable", - "block.me.maple_shingles_stairs": "Escaliers en bardeaux d'érable", - "block.me.maple_shingles_slab": "Dalle en bardeaux d'érable", - "block.me.maple_shingles_vertical_slab": "Dalle verticale en bardeaux d'érable", - "block.me.maple_shingles_wall": "Muret en bardeaux d'érable", - "block.me.maple_roofing": "Maple Roofing", - "block.me.maple_roofing_stairs": "Maple Roofing Stairs", - "block.me.maple_roofing_slab": "Maple Roofing Slab", - "block.me.maple_roofing_vertical_slab": "Maple Roofing Vertical Slab", - "block.me.maple_roofing_wall": "Maple Roofing Wall", - "block.me.maple_wood_slab": "Dalle en bois d'érable", - "block.me.maple_wood_vertical_slab": "Dalle verticale en bois d'érable", - "block.me.maple_wood_stairs": "Escaliers en bois d'érable", - "block.me.stripped_maple_wood_slab": "Dalle en bois d'érable écorcé", - "block.me.stripped_maple_wood_vertical_slab": "Dalle verticale en bois d'érable écorcé", - "block.me.stripped_maple_wood_stairs": "Escaliers en bois d'érable écorcé", - "block.me.maple_stool": "Tabouret d'érable", - "block.me.maple_bench": "Maple Bench", - "block.me.maple_table": "Table d'érable", - "block.me.maple_chair": "Chaise d'érable", - "block.me.maple_ladder": "Maple Ladder", - "block.me.silver_maple_log": "Silver Maple Log", - "block.me.silver_maple_wood": "Silver Maple Wood", - "block.me.silver_maple_wood_wall": "Silver Maple Wood Wall", - "block.me.silver_maple_wood_fence": "Silver Maple Wood Fence", - "block.me.stripped_silver_maple_log": "Stripped Silver Maple Log", - "block.me.stripped_silver_maple_wood": "Stripped Silver Maple Wood", - "block.me.stripped_silver_maple_wood_wall": "Stripped Silver Maple Wood Wall", - "block.me.stripped_silver_maple_wood_fence": "Stripped Silver Maple Wood Fence", - "block.me.silver_maple_planks": "Silver Maple Planks", - "block.me.silver_maple_slab": "Silver Maple Slab", - "block.me.silver_maple_vertical_slab": "Silver Maple Vertical Slab", - "block.me.silver_maple_stairs": "Silver Maple Stairs", - "block.me.silver_maple_fence": "Silver Maple Fence", - "block.me.silver_maple_fence_gate": "Silver Maple Fence Gate", - "block.me.silver_maple_pressure_plate": "Silver Maple Pressure Plate", - "block.me.silver_maple_button": "Silver Maple Button", - "block.me.silver_maple_door": "Silver Maple Door", - "block.me.silver_maple_trapdoor": "Silver Maple Trapdoor", - "block.me.silver_maple_shingles": "Silver Maple Shingles", - "block.me.silver_maple_shingles_stairs": "Silver Maple Shingles Stairs", - "block.me.silver_maple_shingles_slab": "Silver Maple Shingles Slab", - "block.me.silver_maple_shingles_vertical_slab": "Silver Maple Shingles Vertical Slab", - "block.me.silver_maple_shingles_wall": "Silver Maple Shingles Wall", - "block.me.silver_maple_roofing": "Silver Maple Roofing", - "block.me.silver_maple_roofing_stairs": "Silver Maple Roofing Stairs", - "block.me.silver_maple_roofing_slab": "Silver Maple Roofing Slab", - "block.me.silver_maple_roofing_vertical_slab": "Silver Maple Roofing Vertical Slab", - "block.me.silver_maple_roofing_wall": "Silver Maple Roofing Wall", - "block.me.silver_maple_wood_slab": "Silver Maple Wood Slab", - "block.me.silver_maple_wood_vertical_slab": "Silver Maple Wood Vertical Slab", - "block.me.silver_maple_wood_stairs": "Silver Maple Wood Stairs", - "block.me.stripped_silver_maple_wood_slab": "Stripped Silver Maple Wood Slab", - "block.me.stripped_silver_maple_wood_vertical_slab": "Stripped Silver Maple Wood Vertical Slab", - "block.me.stripped_silver_maple_wood_stairs": "Stripped Silver Maple Wood Stairs", - "block.me.silver_maple_stool": "Silver Maple Stool", - "block.me.silver_maple_bench": "Silver Maple Bench", - "block.me.silver_maple_table": "Silver Maple Table", - "block.me.silver_maple_chair": "Silver Maple Chair", - "block.me.silver_maple_ladder": "Silver Maple Ladder", - "block.me.mirkwood_leaves": "Feuilles de la Forêt noire", - "block.me.fallen_mirkwood_leaves": "Fallen Mirkwood Leaves", - "block.me.mirkwood_vines": "Mirkwood Vines", - "block.me.mirkwood_vines_plant": "Mirkwood Vines Plant", - "block.me.mirkwood_log": "Bûche de la Forêt noire", - "block.me.mirkwood_wood": "Bois de la Forêt noire", - "block.me.mirkwood_wood_wall": "Muret en bois de la Forêt noire", - "block.me.mirkwood_wood_fence": "Barrière en bois de la Forêt noire", - "block.me.stripped_mirkwood_log": "Bûche écorcée de la Forêt noire", - "block.me.stripped_mirkwood_wood": "Bois de la Forêt noire écorcé", - "block.me.stripped_mirkwood_wood_wall": "Muret en bois de la Forêt noire écorcé", - "block.me.stripped_mirkwood_wood_fence": "Barrière en bois de la Forêt noire écorcé", - "block.me.mirkwood_planks": "Planches de la Forêt noire", - "block.me.mirkwood_slab": "Dalle de la Forêt noire", - "block.me.mirkwood_vertical_slab": "Dalle verticale de la Forêt noire", - "block.me.mirkwood_stairs": "Escaliers de la Forêt noire", - "block.me.mirkwood_fence": "Barrière de la Forêt noire", - "block.me.mirkwood_fence_gate": "Portillon de la Forêt noire", - "block.me.mirkwood_pressure_plate": "Plaque de pression de la Forêt noire", - "block.me.mirkwood_button": "Bouton de la Forêt noire", - "block.me.mirkwood_door": "Porte de la Forêt noire", - "block.me.mirkwood_trapdoor": "Trappe de la Forêt noire", - "block.me.mirkwood_shingles": "Bardeaux de la Forêt noire", - "block.me.mirkwood_shingles_stairs": "Escaliers en bardeaux de la Forêt noire", - "block.me.mirkwood_shingles_slab": "Dalle en bardeaux de la Forêt noire", - "block.me.mirkwood_shingles_vertical_slab": "Dalle verticale en bardeaux de la Forêt noire", - "block.me.mirkwood_shingles_wall": "Muret en bardeaux de la Forêt noire", - "block.me.mirkwood_roofing": "Mirkwood Roofing", - "block.me.mirkwood_roofing_stairs": "Mirkwood Roofing Stairs", - "block.me.mirkwood_roofing_slab": "Mirkwood Roofing Slab", - "block.me.mirkwood_roofing_vertical_slab": "Mirkwood Roofing Vertical Slab", - "block.me.mirkwood_roofing_wall": "Mirkwood Roofing Wall", - "block.me.mirkwood_wood_slab": "Muret en bois de la Forêt noire", - "block.me.mirkwood_wood_vertical_slab": "Dalle verticale en bois de la Forêt noire", - "block.me.mirkwood_wood_stairs": "Escaliers en bois de la Forêt noire", - "block.me.stripped_mirkwood_wood_slab": "Muret en bois de la Forêt noire écorcé", - "block.me.stripped_mirkwood_wood_vertical_slab": "Dalle verticale en bois de la Forêt noire écorcé", - "block.me.stripped_mirkwood_wood_stairs": "Escaliers en bois de la Forêt noire écorcé", - "block.me.mirkwood_stool": "Tabouret de la Forêt noire", - "block.me.mirkwood_bench": "Mirkwood Bench", - "block.me.mirkwood_table": "Table de la Forêt noire", - "block.me.mirkwood_chair": "Chaise de la Forêt noire", - "block.me.mirkwood_ladder": "Mirkwood Ladder", - "block.me.palm_leaves": "Feuilles de palmier", - "block.me.palm_log": "Bûche de palmier", - "block.me.palm_wood": "Bois de palmier", - "block.me.palm_wood_wall": "Muret en bois de palmier", - "block.me.palm_wood_fence": "Barrière en bois de palmier", - "block.me.stripped_palm_log": "Bûche de palmier écorcée", - "block.me.stripped_palm_wood": "Bois de palmier écorcé", - "block.me.stripped_palm_wood_wall": "Muret en bois de palmier écorcé", - "block.me.stripped_palm_wood_fence": "Barrière en bois de palmier", - "block.me.palm_planks": "Planches de palmier", - "block.me.palm_slab": "Dalle en palmier", - "block.me.palm_vertical_slab": "Dalle verticale en palmier", - "block.me.palm_stairs": "Escaliers en palmier", - "block.me.palm_fence": "Barrière en palmier", - "block.me.palm_fence_gate": "Portillon en palmier", - "block.me.palm_pressure_plate": "Plaque de pression en palmier", - "block.me.palm_button": "Bouton en palmier", - "block.me.palm_door": "Porte en palmier", - "block.me.palm_trapdoor": "Trappe en palmier", - "block.me.palm_shingles": "Bardeaux de palmier", - "block.me.palm_shingles_stairs": "Escaliers en bardeaux de palmier", - "block.me.palm_shingles_slab": "Dalle en bardeaux de palmier", - "block.me.palm_shingles_vertical_slab": "Dalle verticale en bardeaux de palmier", - "block.me.palm_shingles_wall": "Muret en bardeaux de palmier", - "block.me.palm_roofing": "Palm Roofing", - "block.me.palm_roofing_stairs": "Palm Roofing Stairs", - "block.me.palm_roofing_slab": "Palm Roofing Slab", - "block.me.palm_roofing_vertical_slab": "Palm Roofing Vertical Slab", - "block.me.palm_roofing_wall": "Palm Roofing Wall", - "block.me.palm_wood_slab": "Dalle en bois de palmier", - "block.me.palm_wood_vertical_slab": "Dalle verticale en bois de palmier", - "block.me.palm_wood_stairs": "Escaliers en bois de palmier", - "block.me.stripped_palm_wood_slab": "Dalle en bois de palmier écorcé", - "block.me.stripped_palm_wood_vertical_slab": "Dalle verticale en bois de palmier écorcé", - "block.me.stripped_palm_wood_stairs": "Escaliers en bois de palmier écorcé", - "block.me.palm_stool": "Tabouret en palmier", - "block.me.palm_bench": "Palm Bench", - "block.me.palm_table": "Table en palmier", - "block.me.palm_chair": "Chaise en palmier", - "block.me.palm_ladder": "Palm Ladder", - "block.me.white_palm_leaves": "Feuilles de palmier blanc", - "block.me.white_palm_log": "Bûche de palmier blanc", - "block.me.white_palm_wood": "Bois de palmier blanc", - "block.me.white_palm_wood_wall": "Murret en bois de palmier blanc", - "block.me.white_palm_wood_fence": "Barrière en bois de palmier blanc", - "block.me.stripped_white_palm_log": "Bûche de palmier blanc écorcé", - "block.me.stripped_white_palm_wood": "Bois de palmier blanc écorcé", - "block.me.stripped_white_palm_wood_wall": "Murret en bois de palmier blanc écorcé", - "block.me.stripped_white_palm_wood_fence": "Barrière en bois de palmier blanc écorcé", - "block.me.white_palm_planks": "Planches de palmier blanc", - "block.me.white_palm_slab": "Dalle en palmier blanc", - "block.me.white_palm_vertical_slab": "Dalle verticale en palmier blanc", - "block.me.white_palm_stairs": "Escaliers en palmier blanc", - "block.me.white_palm_fence": "Barrière en palmier blanc", - "block.me.white_palm_fence_gate": "Portillon en palmier blanc", - "block.me.white_palm_pressure_plate": "Plaque de pression en palmier blanc", - "block.me.white_palm_button": "Bouton en palmier blanc", - "block.me.white_palm_door": "Porte en palmier blanc", - "block.me.white_palm_trapdoor": "Trappe en palmier blanc", - "block.me.white_palm_shingles": "Bardeaux de palmier blanc", - "block.me.white_palm_shingles_stairs": "Escaliers en bardeaux de palmier blanc", - "block.me.white_palm_shingles_slab": "Dalle en bardeaux de palmier blanc", - "block.me.white_palm_shingles_vertical_slab": "Dalle verticale en bardeaux de palmier blanc", - "block.me.white_palm_shingles_wall": "White Palm Shingles Wall", - "block.me.white_palm_roofing": "White Palm Roofing", - "block.me.white_palm_roofing_stairs": "White Palm Roofing Stairs", - "block.me.white_palm_roofing_slab": "White Palm Roofing Slab", - "block.me.white_palm_roofing_vertical_slab": "White Palm Roofing Vertical Slab", - "block.me.white_palm_roofing_wall": "White Palm Roofing Wall", - "block.me.white_palm_wood_slab": "Dalle en bois de palmier blanc", - "block.me.white_palm_wood_vertical_slab": "Dalle verticale en bois de palmier blanc", - "block.me.white_palm_wood_stairs": "Escaliers en bois de palmier blanc", - "block.me.stripped_white_palm_wood_slab": "Dalle en bois de palmier blanc écorcé", - "block.me.stripped_white_palm_wood_vertical_slab": "Dalle verticale en bois de palmier blanc écorcé", - "block.me.stripped_white_palm_wood_stairs": "Escaliers en bois de palmier blanc écorcé", - "block.me.white_palm_stool": "Tabouret en palmier blanc", - "block.me.white_palm_bench": "White Palm Bench", - "block.me.white_palm_table": "Table en palmier blanc", - "block.me.white_palm_chair": "Chaise en palmier blanc", - "block.me.white_palm_ladder": "White Palm Ladder", - "block.me.pine_leaves": "Feuilles de pin", - "block.me.pine_branches": "Pine Branches", - "block.me.dry_pine_leaves": "Dry Pine Leaves", - "block.me.pine_log": "Bûche de pin", - "block.me.pine_wood": "Bois de pin", - "block.me.pine_wood_wall": "Muret en bois de pin", - "block.me.pine_wood_fence": "Barrière en bois de pin", - "block.me.stripped_pine_log": "Bûche de pin écorcée", - "block.me.stripped_pine_wood": "Bois de pin écorcé", - "block.me.stripped_pine_wood_wall": "Murret en pin écorcé", - "block.me.stripped_pine_wood_fence": "Barrière en bois de pin écorcé", - "block.me.pine_planks": "Planches de pin", - "block.me.pine_slab": "Dalle en pin", - "block.me.pine_vertical_slab": "Dalle verticale en pin", - "block.me.pine_stairs": "Escaliers en pin", - "block.me.pine_fence": "Barrière en pin", - "block.me.pine_fence_gate": "Portillon en pin", - "block.me.pine_pressure_plate": "Plaque de pression en Pin", - "block.me.pine_button": "Bouton en pin", - "block.me.pine_door": "Porte en pin", - "block.me.pine_trapdoor": "Trappe en Pin", - "block.me.pine_shingles": "Bardeaux de pin", - "block.me.pine_shingles_stairs": "Escaliers en bardeaux de pin", - "block.me.pine_shingles_slab": "Dalle en bardeaux de pin", - "block.me.pine_shingles_vertical_slab": "Dalle verticale en bardeaux de pin", - "block.me.pine_shingles_wall": "Muret en bardeaux de pin", - "block.me.pine_roofing": "Pine Roofing", - "block.me.pine_roofing_stairs": "Pine Roofing Stairs", - "block.me.pine_roofing_slab": "Pine Roofing Slab", - "block.me.pine_roofing_vertical_slab": "Pine Roofing Vertical Slab", - "block.me.pine_roofing_wall": "Pine Roofing Wall", - "block.me.pine_wood_slab": "Dalle en bois de pin", - "block.me.pine_wood_vertical_slab": "Dalle verticale en bois de pin", - "block.me.pine_wood_stairs": "Escaliers en bois de pin", - "block.me.stripped_pine_wood_slab": "Dalle en bois de pin écorcé", - "block.me.stripped_pine_wood_vertical_slab": "Dalle verticale en bois de pin écorcé", - "block.me.stripped_pine_wood_stairs": "Escaliers en bois de pin écorcé", - "block.me.pine_stool": "Tabouret en pin", - "block.me.pine_bench": "Pine Bench", - "block.me.pine_table": "Table en pin", - "block.me.pine_chair": "Chaise en pin", - "block.me.pine_ladder": "Pine Ladder", - "block.me.black_pine_leaves": "Black Pine Leaves", - "block.me.black_pine_branches": "Black Pine Branches", - "block.me.dry_black_pine_leaves": "Dry Black Pine Leaves", - "block.me.black_pine_log": "Black Pine Log", - "block.me.black_pine_wood": "Black Pine Wood", - "block.me.black_pine_wood_wall": "Black Pine Wood Wall", - "block.me.black_pine_wood_fence": "Black Pine Wood Fence", - "block.me.stripped_black_pine_log": "Stripped Black Pine Log", - "block.me.stripped_black_pine_wood": "Stripped Black Pine Wood", - "block.me.stripped_black_pine_wood_wall": "Stripped Black Pine Wood Wall", - "block.me.stripped_black_pine_wood_fence": "Stripped Black Pine Wood Fence", - "block.me.black_pine_planks": "Black Pine Planks", - "block.me.black_pine_slab": "Black Pine Slab", - "block.me.black_pine_vertical_slab": "Black Pine Vertical Slab", - "block.me.black_pine_stairs": "Black Pine Stairs", - "block.me.black_pine_fence": "Black Pine Fence", - "block.me.black_pine_fence_gate": "Black Pine Fence Gate", - "block.me.black_pine_pressure_plate": "Black Pine Pressure Plate", - "block.me.black_pine_button": "Black Pine Button", - "block.me.black_pine_door": "Black Pine Door", - "block.me.black_pine_trapdoor": "Black Pine Trapdoor", - "block.me.black_pine_shingles": "Black Pine Shingles", - "block.me.black_pine_shingles_stairs": "Black Pine Shingles Stairs", - "block.me.black_pine_shingles_slab": "Black Pine Shingles Slab", - "block.me.black_pine_shingles_vertical_slab": "Black Pine Shingles Vertical Slab", - "block.me.black_pine_shingles_wall": "Black Pine Shingles Wall", - "block.me.black_pine_roofing": "Black Pine Roofing", - "block.me.black_pine_roofing_stairs": "Black Pine Roofing Stairs", - "block.me.black_pine_roofing_slab": "Black Pine Roofing Slab", - "block.me.black_pine_roofing_vertical_slab": "Black Pine Roofing Vertical Slab", - "block.me.black_pine_roofing_wall": "Black Pine Roofing Wall", - "block.me.black_pine_wood_slab": "Black Pine Wood Slab", - "block.me.black_pine_wood_vertical_slab": "Black Pine Wood Vertical Slab", - "block.me.black_pine_wood_stairs": "Black Pine Wood Stairs", - "block.me.stripped_black_pine_wood_slab": "Stripped Black Pine Wood Slab", - "block.me.stripped_black_pine_wood_vertical_slab": "Stripped Black Pine Wood Vertical Slab", - "block.me.stripped_black_pine_wood_stairs": "Stripped Black Pine Wood Stairs", - "block.me.black_pine_stool": "Black Pine Stool", - "block.me.black_pine_bench": "Black Pine Bench", - "block.me.black_pine_table": "Black Pine Table", - "block.me.black_pine_chair": "Black Pine Chair", - "block.me.black_pine_ladder": "Black Pine Ladder", - "block.me.willow_leaves": "Feuilles de saule", - "block.me.willow_log": "Bûche de saule", - "block.me.willow_wood": "Bois de saule", - "block.me.willow_wood_wall": "Muret en bois de saule", - "block.me.willow_wood_fence": "Barrière en bois de saule", - "block.me.stripped_willow_log": "Bûche de saule écorcée", - "block.me.stripped_willow_wood": "Bois de saule écorcé", - "block.me.stripped_willow_wood_wall": "Muret en bois de saule écorcé", - "block.me.stripped_willow_wood_fence": "Barrière en bois de saule écorcé", - "block.me.willow_planks": "Planches de saule", - "block.me.willow_slab": "Dalle en saule", - "block.me.willow_vertical_slab": "Dalle verticale en saule", - "block.me.willow_stairs": "Escaliers en saule", - "block.me.willow_fence": "Barrière en saule", - "block.me.willow_fence_gate": "Portillon en saule", - "block.me.willow_pressure_plate": "Plaque de pression en saule", - "block.me.willow_button": "Bouton en saule", - "block.me.willow_door": "Porte en saule", - "block.me.willow_trapdoor": "Trappe en saule", - "block.me.willow_shingles": "Bardeaux de saule", - "block.me.willow_shingles_stairs": "Escalier en bardeaux de saule", - "block.me.willow_shingles_slab": "Dalle en bardeaux de saule", - "block.me.willow_shingles_vertical_slab": "Dalle verticale en bardeaux de saule", - "block.me.willow_shingles_wall": "Muret en bardeaux de saule", - "block.me.willow_roofing": "Willow Roofing", - "block.me.willow_roofing_stairs": "Willow Roofing Stairs", - "block.me.willow_roofing_slab": "Willow Roofing Slab", - "block.me.willow_roofing_vertical_slab": "Willow Roofing Vertical Slab", - "block.me.willow_roofing_wall": "Willow Roofing Wall", - "block.me.willow_wood_slab": "Dalle en bois de saule", - "block.me.willow_wood_vertical_slab": "Dalle verticale en bois de saule", - "block.me.willow_wood_stairs": "Escalier en bois de saule", - "block.me.stripped_willow_wood_slab": "Dalle en bois de saule écorcé", - "block.me.stripped_willow_wood_vertical_slab": "Dalle verticale en bois de saule écorcé", - "block.me.stripped_willow_wood_stairs": "Escalier en bois de saule écorcé", - "block.me.willow_stool": "Tabouret en saule", - "block.me.willow_bench": "Willow Bench", - "block.me.willow_table": "Table en saule", - "block.me.willow_chair": "Chaise en saule", - "block.me.willow_ladder": "Willow Ladder", - "block.me.scorched_log": "Scorched Log", - "block.me.scorched_wood": "Scorched Wood", - "block.me.scorched_wood_wall": "Scorched Wood Wall", - "block.me.scorched_wood_fence": "Scorched Wood Fence", - "block.me.stripped_scorched_log": "Stripped Scorched Log", - "block.me.stripped_scorched_wood": "Stripped Scorched Wood", - "block.me.stripped_scorched_wood_wall": "Stripped Scorched Wood Wall", - "block.me.stripped_scorched_wood_fence": "Stripped Scorched Wood Fence", - "block.me.scorched_planks": "Scorched Planks", - "block.me.scorched_slab": "Scorched Slab", - "block.me.scorched_vertical_slab": "Scorched Vertical Slab", - "block.me.scorched_stairs": "Scorched Stairs", - "block.me.scorched_fence": "Scorched Fence", - "block.me.scorched_fence_gate": "Scorched Fence Gate", - "block.me.scorched_pressure_plate": "Scorched Pressure Plate", - "block.me.scorched_button": "Scorched Button", - "block.me.scorched_door": "Scorched Door", - "block.me.scorched_trapdoor": "Scorched Trapdoor", - "block.me.scorched_shingles": "Scorched Shingles", - "block.me.scorched_shingles_stairs": "Scorched Shingles Stairs", - "block.me.scorched_shingles_slab": "Scorched Shingles Slab", - "block.me.scorched_shingles_vertical_slab": "Scorched Shingles Vertical Slab", - "block.me.scorched_shingles_wall": "Scorched Shingles Wall", - "block.me.scorched_roofing": "Scorched Roofing", - "block.me.scorched_roofing_stairs": "Scorched Roofing Stairs", - "block.me.scorched_roofing_slab": "Scorched Roofing Slab", - "block.me.scorched_roofing_vertical_slab": "Scorched Roofing Vertical Slab", - "block.me.scorched_roofing_wall": "Scorched Roofing Wall", - "block.me.scorched_wood_slab": "Scorched Wood Slab", - "block.me.scorched_wood_vertical_slab": "Scorched Wood Vertical Slab", - "block.me.scorched_wood_stairs": "Scorched Wood Stairs", - "block.me.stripped_scorched_wood_slab": "Stripped Scorched Wood Slab", - "block.me.stripped_scorched_wood_vertical_slab": "Stripped Scorched Wood Vertical Slab", - "block.me.stripped_scorched_wood_stairs": "Stripped Scorched Wood Stairs", - "block.me.scorched_stool": "Scorched Stool", - "block.me.scorched_bench": "Scorched Bench", - "block.me.scorched_table": "Scorched Table", - "block.me.scorched_chair": "Scorched Chair", - "block.me.scorched_ladder": "Scorched Ladder", - "block.me.mushroom_stem_wall": "Mushroom Stem Wall", - "block.me.mushroom_stem_fence": "Mushroom Stem Fence", - "block.me.mushroom_planks": "Planches de champignon", - "block.me.mushroom_slab": "Dalle en champignon", - "block.me.mushroom_vertical_slab": "Dalle verticale en champignon", - "block.me.mushroom_stairs": "Escalier en champignon", - "block.me.mushroom_fence": "Barrière en champignon", - "block.me.mushroom_fence_gate": "Portillon en champignon", - "block.me.mushroom_pressure_plate": "Plaque de pression en champignon", - "block.me.mushroom_button": "Bouton en champignon", - "block.me.mushroom_door": "Porte en champignon", - "block.me.mushroom_trapdoor": "Trappe en champignon", - "block.me.mushroom_shingles": "Bardeaux de champignon", - "block.me.mushroom_shingles_stairs": "Escaliers en bardeaux de champignon", - "block.me.mushroom_shingles_slab": "Dalle en bardeaux de champignon", - "block.me.mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon", - "block.me.mushroom_shingles_wall": "Muret en bardeaux de champignon", - "block.me.mushroom_stool": "Tabouret en champignon", - "block.me.mushroom_bench": "Mushroom Bench", - "block.me.mushroom_table": "Table en champignon", - "block.me.mushroom_chair": "Chaise en champignon", - "block.me.mushroom_ladder": "Mushroom Ladder", - "block.me.dark_mushroom_stem": "Tige de champignon noir", - "block.me.dark_mushroom_stem_wall": "Dark Mushroom Stem Wall", - "block.me.dark_mushroom_stem_fence": "Dark Mushroom Stem Fence", - "block.me.dark_mushroom_planks": "Planches de champignon noir", - "block.me.dark_mushroom_slab": "Dalle en champignon noir", - "block.me.dark_mushroom_vertical_slab": "Dalle verticale en champignon noir", - "block.me.dark_mushroom_stairs": "Escaliers en champignon noir", - "block.me.dark_mushroom_fence": "Barrière en champignon noir", - "block.me.dark_mushroom_fence_gate": "Portillon en champignon noir", - "block.me.dark_mushroom_pressure_plate": "Plaque de pression en champignon noir", - "block.me.dark_mushroom_button": "Bouton en champignon noir", - "block.me.dark_mushroom_door": "Porte en champignon noir", - "block.me.dark_mushroom_trapdoor": "Trappe en champignon noir", - "block.me.dark_mushroom_shingles": "Bardeaux en champignon noir", - "block.me.dark_mushroom_shingles_stairs": "Escaliers en bardeaux de champignon noir", - "block.me.dark_mushroom_shingles_slab": "Dalle en bardeaux de champignon noir", - "block.me.dark_mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon noir", - "block.me.dark_mushroom_shingles_wall": "Muret en bardeaux de champignon noir", - "block.me.dark_mushroom_stool": "Tabouret en champignon noir", - "block.me.dark_mushroom_bench": "Dark Mushroom Bench", - "block.me.dark_mushroom_table": "Table en champignon noir", - "block.me.dark_mushroom_chair": "Chaise en champignon noir", - "block.me.dark_mushroom_ladder": "Dark Mushroom Ladder", - "block.me.gray_mushroom_stem": "Tige de champignon gris", - "block.me.gray_mushroom_stem_wall": "Gray Mushroom Stem Wall", - "block.me.gray_mushroom_stem_fence": "Gray Mushroom Stem Fence", - "block.me.gray_mushroom_planks": "Planches de champignon gris", - "block.me.gray_mushroom_slab": "Dalle en champignon gris", - "block.me.gray_mushroom_vertical_slab": "Dalle verticale en champignon gris", - "block.me.gray_mushroom_stairs": "Escaliers en champignon gris", - "block.me.gray_mushroom_fence": "Barrière en champignon gris", - "block.me.gray_mushroom_fence_gate": "Portillon en champignon gris", - "block.me.gray_mushroom_pressure_plate": "Plaque de pression en champignon gris", - "block.me.gray_mushroom_button": "Bouton en champignon gris", - "block.me.gray_mushroom_door": "Porte en champignon gris", - "block.me.gray_mushroom_trapdoor": "Trappe en champignon gris", - "block.me.gray_mushroom_shingles": "Bardeaux en champignon gris", - "block.me.gray_mushroom_shingles_stairs": "Escaliers en bardeaux de champignon gris", - "block.me.gray_mushroom_shingles_slab": "Dalle en bardeaux de champignon gris", - "block.me.gray_mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon gris", - "block.me.gray_mushroom_shingles_wall": "Muret en bardeaux de champignon gris", - "block.me.gray_mushroom_stool": "Tabouret en champignon gris", - "block.me.gray_mushroom_bench": "Gray Mushroom Bench", - "block.me.gray_mushroom_table": "Table en champignon gris", - "block.me.gray_mushroom_chair": "Chaise en champignon gris", - "block.me.gray_mushroom_ladder": "Gray Mushroom Ladder", - "block.me.oak_shingles": "Bardeau de chêne", - "block.me.oak_shingles_stairs": "Escaliers en bardeaux de chêne", - "block.me.oak_shingles_slab": "Dalle en bardeaux de chêne", - "block.me.oak_shingles_vertical_slab": "Dalle verticale en bardeaux de chêne", - "block.me.spruce_shingles": "Bardeaux de sapin", - "block.me.spruce_shingles_stairs": "Escaliers en bardeaux de sapin", - "block.me.spruce_shingles_slab": "Dalle en bardeaux de sapin", - "block.me.spruce_shingles_vertical_slab": "Dalle verticale en bardeaux de sapin", - "block.me.birch_shingles": "Bardeaux de bouleau", - "block.me.birch_shingles_stairs": "Escaliers en bardeaux de bouleau", - "block.me.birch_shingles_slab": "Dalle en bardeaux de bouleau", - "block.me.birch_shingles_vertical_slab": "Dalle verticale en bardeaux de bouleau", - "block.me.jungle_shingles": "Bardeaux d'acajou", - "block.me.jungle_shingles_stairs": "Escaliers en bardeaux d'acajou", - "block.me.jungle_shingles_slab": "Dalle en bardeaux d'acajou", - "block.me.jungle_shingles_vertical_slab": "Dalle verticale en bardeaux d'acajou", - "block.me.acacia_shingles": "Bardeaux d'acacia", - "block.me.acacia_shingles_stairs": "Escaliers en bardeaux d'acacia", - "block.me.acacia_shingles_slab": "Dalle en bardeaux d'acacia", - "block.me.acacia_shingles_vertical_slab": "Dalle verticale en bardeaux d'acacia", - "block.me.dark_oak_shingles": "Bardeaux de chêne noir", - "block.me.dark_oak_shingles_stairs": "Escaliers en bardeaux de chêne noir", - "block.me.dark_oak_shingles_slab": "Escaliers en bardeaux de chêne noir", - "block.me.dark_oak_shingles_vertical_slab": "Dalle verticale en bardeaux de chêne noir", - "block.me.mangrove_shingles": "Bardeaux de palétuvier", - "block.me.mangrove_shingles_stairs": "Escaliers en bardeaux de palétuvier", - "block.me.mangrove_shingles_slab": "Dalle en bardeaux de palétuvier", - "block.me.mangrove_shingles_vertical_slab": "Dalle verticale en bardeaux de palétuvier", - "block.me.cherry_shingles": "Bardeaux de cerisier", - "block.me.cherry_shingles_stairs": "Escaliers en bardeaux de cerisier", - "block.me.cherry_shingles_slab": "Dalle en bardeaux de cerisier", - "block.me.cherry_shingles_vertical_slab": "Dalle verticale en bardeaux de cerisier", - "block.me.bamboo_shingles": "Bardeaux de bambou", - "block.me.bamboo_shingles_stairs": "Escaliers en bardeaux de bambou", - "block.me.bamboo_shingles_slab": "Dalle en bardeaux de bambou", - "block.me.bamboo_shingles_vertical_slab": "Dalle verticale en bardeaux de bambou", - "block.me.crimson_shingles": "Bardeaux carmin", - "block.me.crimson_shingles_stairs": "Escaliers en bardeaux carmin", - "block.me.crimson_shingles_slab": "Escaliers en bardeaux carmin", - "block.me.crimson_shingles_vertical_slab": "Dalle verticale en bardeaux carmin", - "block.me.warped_shingles": "Bardeaux biscornue", - "block.me.warped_shingles_stairs": "Escaliers en bardeaux biscornue", - "block.me.warped_shingles_slab": "Dalle en bardeaux biscornue", - "block.me.warped_shingles_vertical_slab": "Dalle verticale en bardeaux biscornue", - "block.me.weathered_shingles": "Bardeaux usée", - "block.me.weathered_shingles_stairs": "Escaliers en bardeaux usée", - "block.me.weathered_shingles_slab": "Dalle en bardeaux usée", - "block.me.weathered_shingles_vertical_slab": "Dalle verticale en bardeaux usée", - "block.me.weathered_shingles_wall": "Muret en bardeaux usée", - "block.me.tan_clay_tiles": "Tan Clay Tiles", - "block.me.tan_clay_tiles_stairs": "Tan Clay Tiles Stairs", - "block.me.tan_clay_tiles_slab": "Tan Clay Tiles Slab", - "block.me.tan_clay_tiles_vertical_slab": "Tan Clay Tiles Vertical Slab", - "block.me.tan_clay_tiles_wall": "Tan Clay Tiles Wall", - "block.me.clay_tiling": "Clay Tiling", - "block.me.clay_tiling_stairs": "Clay Tiling Stairs", - "block.me.clay_tiling_slab": "Clay Tiling Slab", - "block.me.clay_tiling_vertical_slab": "Clay Tiling Vertical Slab", - "block.me.clay_tiling_wall": "Clay Tiling Wall", - "block.me.black_clay_tiling": "Tuile d'argile noire", - "block.me.black_clay_tiling_stairs": "Escaliers en tuile d'argile noire", - "block.me.black_clay_tiling_slab": "Dalle en tuile d'argile noire", - "block.me.black_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile noire", - "block.me.black_clay_tiling_wall": "Muret en tuile d'argile noire", - "block.me.blue_clay_tiling": "Tuile d'argile bleu", - "block.me.blue_clay_tiling_stairs": "Escaliers en tuile d'argile bleu", - "block.me.blue_clay_tiling_slab": "Dalle en tuile d'argile bleu", - "block.me.blue_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile bleu", - "block.me.blue_clay_tiling_wall": "Muret en tuile d'argile bleu", - "block.me.brown_clay_tiling": "Tuile d'argile brune", - "block.me.brown_clay_tiling_stairs": "Escaliers en tuile d'argile brune", - "block.me.brown_clay_tiling_slab": "Dalle en tuile d'argile brune", - "block.me.brown_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile brune", - "block.me.brown_clay_tiling_wall": "Muret en tuile d'argile brune", - "block.me.cyan_clay_tiling": "Tuile d'argile cyan", - "block.me.cyan_clay_tiling_stairs": "Escaliers en tuile d'argile cyan", - "block.me.cyan_clay_tiling_slab": "Dalle en tuile d'argile cyan", - "block.me.cyan_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile cyan", - "block.me.cyan_clay_tiling_wall": "Muret en tuile d'argile cyan", - "block.me.gray_clay_tiling": "Tuile d'argile grise", - "block.me.gray_clay_tiling_stairs": "Escaliers en tuile d'argile grise", - "block.me.gray_clay_tiling_slab": "Dalle en tuile d'argile grise", - "block.me.gray_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile grise", - "block.me.gray_clay_tiling_wall": "Muret en tuile d'argile grise", - "block.me.green_clay_tiling": "Tuile d'argile verte", - "block.me.green_clay_tiling_stairs": "Escaliers en tuile d'argile verte", - "block.me.green_clay_tiling_slab": "Dalle en tuile d'argile verte", - "block.me.green_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile verte", - "block.me.green_clay_tiling_wall": "Muret en tuile d'argile verte", - "block.me.light_blue_clay_tiling": "Tuile d'argile bleu clair", - "block.me.light_blue_clay_tiling_stairs": "Escaliers en tuile d'argile bleu clair", - "block.me.light_blue_clay_tiling_slab": "Dalle en tuile d'argile bleu clair", - "block.me.light_blue_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile bleu clair", - "block.me.light_blue_clay_tiling_wall": "Muret en tuile d'argile bleu clair", - "block.me.light_gray_clay_tiling": "Tuile d'argile gris clair", - "block.me.light_gray_clay_tiling_stairs": "Escaliers en tuile d'argile gris clair", - "block.me.light_gray_clay_tiling_slab": "Dalle en tuile d'argile gris clair", - "block.me.light_gray_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile gris clair", - "block.me.light_gray_clay_tiling_wall": "Muret en tuile d'argile gris clair", - "block.me.lime_clay_tiling": "Tuile d'argile vert clair", - "block.me.lime_clay_tiling_stairs": "Escaliers en tuile d'argile vert clair", - "block.me.lime_clay_tiling_slab": "Dalle en tuile d'argile vert clair", - "block.me.lime_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile vert clair", - "block.me.lime_clay_tiling_wall": "Muret en tuile d'argile vert clair", - "block.me.magenta_clay_tiling": "Tuile d'argile magenta", - "block.me.magenta_clay_tiling_stairs": "Escaliers en tuile d'argile magenta", - "block.me.magenta_clay_tiling_slab": "Dalle en tuile d'argile magenta", - "block.me.magenta_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile magenta", - "block.me.magenta_clay_tiling_wall": "Muret en tuile d'argile magenta", - "block.me.orange_clay_tiling": "Tuile d'argile orange", - "block.me.orange_clay_tiling_stairs": "Escaliers en tuile d'argile orange", - "block.me.orange_clay_tiling_slab": "Dalle en tuile d'argile orange", - "block.me.orange_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile orange", - "block.me.orange_clay_tiling_wall": "Muret en tuile d'argile orange", - "block.me.pink_clay_tiling": "Tuile d'argile rose", - "block.me.pink_clay_tiling_stairs": "Escaliers en tuile d'argile rose", - "block.me.pink_clay_tiling_slab": "Dalle en tuile d'argile rose", - "block.me.pink_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile rose", - "block.me.pink_clay_tiling_wall": "Muret en tuile d'argile rose", - "block.me.purple_clay_tiling": "Tuile d'argile violette", - "block.me.purple_clay_tiling_stairs": "Escaliers en tuile d'argile violette", - "block.me.purple_clay_tiling_slab": "Dalle en tuile d'argile violette", - "block.me.purple_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile violette", - "block.me.purple_clay_tiling_wall": "Muret en tuile d'argile violette", - "block.me.red_clay_tiling": "Tuile d'argile rouge", - "block.me.red_clay_tiling_stairs": "Escaliers en tuile d'argile rouge", - "block.me.red_clay_tiling_slab": "Dalle en tuile d'argile rouge", - "block.me.red_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile rouge", - "block.me.red_clay_tiling_wall": "Muret en tuile d'argile rouge", - "block.me.white_clay_tiling": "Tuile d'argile blanche", - "block.me.white_clay_tiling_stairs": "Escaliers en tuile d'argile blanche", - "block.me.white_clay_tiling_slab": "Dalle en tuile d'argile blanche", - "block.me.white_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile blanche", - "block.me.white_clay_tiling_wall": "Muret en tuile d'argile blanche", - "block.me.yellow_clay_tiling": "Tuile d'argile jaune", - "block.me.yellow_clay_tiling_stairs": "Escaliers en tuile d'argile jaune", - "block.me.yellow_clay_tiling_slab": "Dalle en tuile d'argile jaune", - "block.me.yellow_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile jaune", - "block.me.yellow_clay_tiling_wall": "Muret en tuile d'argile jaune", - "block.me.blue_roof_tiles": "Blue Roof Tiles", - "block.me.blue_roof_tiles_stairs": "Blue Roof Tiles Stairs", - "block.me.blue_roof_tiles_slab": "Blue Roof Tiles Slab", - "block.me.blue_roof_tiles_vertical_slab": "Blue Roof Tiles Vertical Slab", - "block.me.blue_roof_tiles_wall": "Blue Roof Tiles Wall", - "block.me.bright_blue_roof_tiles": "Bright Blue Roof Tiles", - "block.me.bright_blue_roof_tiles_stairs": "Bright Blue Roof Tiles Stairs", - "block.me.bright_blue_roof_tiles_slab": "Bright Blue Roof Tiles Slab", - "block.me.bright_blue_roof_tiles_vertical_slab": "Bright Blue Roof Tiles Vertical Slab", - "block.me.bright_blue_roof_tiles_wall": "Bright Blue Roof Tiles Wall", - "block.me.dark_blue_roof_tiles": "Dark Blue Roof Tiles", - "block.me.dark_blue_roof_tiles_stairs": "Dark Blue Roof Tiles Stairs", - "block.me.dark_blue_roof_tiles_slab": "Dark Blue Roof Tiles Slab", - "block.me.dark_blue_roof_tiles_vertical_slab": "Dark Blue Roof Tiles Vertical Slab", - "block.me.dark_blue_roof_tiles_wall": "Dark Blue Roof Tiles Wall", - "block.me.light_blue_roof_tiles": "Light Blue Roof Tiles", - "block.me.light_blue_roof_tiles_stairs": "Light Blue Roof Tiles Stairs", - "block.me.light_blue_roof_tiles_slab": "Light Blue Roof Tiles Slab", - "block.me.light_blue_roof_tiles_vertical_slab": "Light Blue Roof Tiles Vertical Slab", - "block.me.light_blue_roof_tiles_wall": "Light Blue Roof Tiles Wall", - "block.me.off_blue_roof_tiles": "Off Blue Roof Tiles", - "block.me.off_blue_roof_tiles_stairs": "Off Blue Roof Tiles Stairs", - "block.me.off_blue_roof_tiles_slab": "Off Blue Roof Tiles Slab", - "block.me.off_blue_roof_tiles_vertical_slab": "Off Blue Roof Tiles Vertical Slab", - "block.me.off_blue_roof_tiles_wall": "Off Blue Roof Tiles Wall", - "block.me.brown_roof_tiles": "Brown Roof Tiles", - "block.me.brown_roof_tiles_stairs": "Brown Roof Tiles Stairs", - "block.me.brown_roof_tiles_slab": "Brown Roof Tiles Slab", - "block.me.brown_roof_tiles_vertical_slab": "Brown Roof Tiles Vertical Slab", - "block.me.brown_roof_tiles_wall": "Brown Roof Tiles Wall", - "block.me.dark_brown_roof_tiles": "Dark Brown Roof Tiles", - "block.me.dark_brown_roof_tiles_stairs": "Dark Brown Roof Tiles Stairs", - "block.me.dark_brown_roof_tiles_slab": "Dark Brown Roof Tiles Slab", - "block.me.dark_brown_roof_tiles_vertical_slab": "Dark Brown Roof Tiles Vertical Slab", - "block.me.dark_brown_roof_tiles_wall": "Dark Brown Roof Tiles Wall", - "block.me.off_brown_roof_tiles": "Off Brown Roof Tiles", - "block.me.off_brown_roof_tiles_stairs": "Off Brown Roof Tiles Stairs", - "block.me.off_brown_roof_tiles_slab": "Off Brown Roof Tiles Slab", - "block.me.off_brown_roof_tiles_vertical_slab": "Off Brown Roof Tiles Vertical Slab", - "block.me.off_brown_roof_tiles_wall": "Off Brown Roof Tiles Wall", - "block.me.cyan_roof_tiles": "Cyan Roof Tiles", - "block.me.cyan_roof_tiles_stairs": "Cyan Roof Tiles Stairs", - "block.me.cyan_roof_tiles_slab": "Cyan Roof Tiles Slab", - "block.me.cyan_roof_tiles_vertical_slab": "Cyan Roof Tiles Vertical Slab", - "block.me.cyan_roof_tiles_wall": "Cyan Roof Tiles Wall", - "block.me.bright_cyan_roof_tiles": "Bright Cyan Roof Tiles", - "block.me.bright_cyan_roof_tiles_stairs": "Bright Cyan Roof Tiles Stairs", - "block.me.bright_cyan_roof_tiles_slab": "Bright Cyan Roof Tiles Slab", - "block.me.bright_cyan_roof_tiles_vertical_slab": "Bright Cyan Roof Tiles Vertical Slab", - "block.me.bright_cyan_roof_tiles_wall": "Bright Cyan Roof Tiles Wall", - "block.me.dark_cyan_roof_tiles": "Dark Cyan Roof Tiles", - "block.me.dark_cyan_roof_tiles_stairs": "Dark Cyan Roof Tiles Stairs", - "block.me.dark_cyan_roof_tiles_slab": "Dark Cyan Roof Tiles Slab", - "block.me.dark_cyan_roof_tiles_vertical_slab": "Dark Cyan Roof Tiles Vertical Slab", - "block.me.dark_cyan_roof_tiles_wall": "Dark Cyan Roof Tiles Wall", - "block.me.light_cyan_roof_tiles": "Light Cyan Roof Tiles", - "block.me.light_cyan_roof_tiles_stairs": "Light Blue Roof Tiles Stairs", - "block.me.light_cyan_roof_tiles_slab": "Light Cyan Roof Tiles Slab", - "block.me.light_cyan_roof_tiles_vertical_slab": "Light Cyan Roof Tiles Vertical Slab", - "block.me.light_cyan_roof_tiles_wall": "Light Cyan Roof Tiles Wall", - "block.me.off_cyan_roof_tiles": "Off Cyan Roof Tiles", - "block.me.off_cyan_roof_tiles_stairs": "Off Cyan Roof Tiles Stairs", - "block.me.off_cyan_roof_tiles_slab": "Off Cyan Roof Tiles Slab", - "block.me.off_cyan_roof_tiles_vertical_slab": "Off Cyan Roof Tiles Vertical Slab", - "block.me.off_cyan_roof_tiles_wall": "Off Cyan Roof Tiles Wall", - "block.me.gray_roof_tiles": "Gray Roof Tiles", - "block.me.gray_roof_tiles_stairs": "Gray Roof Tiles Stairs", - "block.me.gray_roof_tiles_slab": "Gray Roof Tiles Slab", - "block.me.gray_roof_tiles_vertical_slab": "Gray Roof Tiles Vertical Slab", - "block.me.gray_roof_tiles_wall": "Gray Roof Tiles Wall", - "block.me.dark_gray_roof_tiles": "Dark Gray Roof Tiles", - "block.me.dark_gray_roof_tiles_stairs": "Dark Gray Roof Tiles Stairs", - "block.me.dark_gray_roof_tiles_slab": "Dark Gray Roof Tiles Slab", - "block.me.dark_gray_roof_tiles_vertical_slab": "Dark Gray Roof Tiles Vertical Slab", - "block.me.dark_gray_roof_tiles_wall": "Dark Gray Roof Tiles Wall", - "block.me.light_gray_roof_tiles": "Light Gray Roof Tiles", - "block.me.light_gray_roof_tiles_stairs": "Light Gray Roof Tiles Stairs", - "block.me.light_gray_roof_tiles_slab": "Light Gray Roof Tiles Slab", - "block.me.light_gray_roof_tiles_vertical_slab": "Light Gray Roof Tiles Vertical Slab", - "block.me.light_gray_roof_tiles_wall": "Light Gray Roof Tiles Wall", - "block.me.off_gray_roof_tiles": "Off Gray Roof Tiles", - "block.me.off_gray_roof_tiles_stairs": "Off Gray Roof Tiles Stairs", - "block.me.off_gray_roof_tiles_slab": "Off Gray Roof Tiles Slab", - "block.me.off_gray_roof_tiles_vertical_slab": "Off Gray Roof Tiles Vertical Slab", - "block.me.off_gray_roof_tiles_wall": "Off Gray Roof Tiles Wall", - "block.me.green_roof_tiles": "Green Roof Tiles", - "block.me.green_roof_tiles_stairs": "Green Roof Tiles Stairs", - "block.me.green_roof_tiles_slab": "Green Roof Tiles Slab", - "block.me.green_roof_tiles_vertical_slab": "Green Roof Tiles Vertical Slab", - "block.me.green_roof_tiles_wall": "Green Roof Tiles Wall", - "block.me.bright_green_roof_tiles": "Bright Green Roof Tiles", - "block.me.bright_green_roof_tiles_stairs": "Bright Green Roof Tiles Stairs", - "block.me.bright_green_roof_tiles_slab": "Bright Green Roof Tiles Slab", - "block.me.bright_green_roof_tiles_vertical_slab": "Bright Green Roof Tiles Vertical Slab", - "block.me.bright_green_roof_tiles_wall": "Bright Green Roof Tiles Wall", - "block.me.dark_green_roof_tiles": "Dark Green Roof Tiles", - "block.me.dark_green_roof_tiles_stairs": "Dark Green Roof Tiles Stairs", - "block.me.dark_green_roof_tiles_slab": "Dark Green Roof Tiles Slab", - "block.me.dark_green_roof_tiles_vertical_slab": "Dark Green Roof Tiles Vertical Slab", - "block.me.dark_green_roof_tiles_wall": "Dark Green Roof Tiles Wall", - "block.me.light_green_roof_tiles": "Light Green Roof Tiles", - "block.me.light_green_roof_tiles_stairs": "Light Green Roof Tiles Stairs", - "block.me.light_green_roof_tiles_slab": "Light Green Roof Tiles Slab", - "block.me.light_green_roof_tiles_vertical_slab": "Light Green Roof Tiles Vertical Slab", - "block.me.light_green_roof_tiles_wall": "Light Green Roof Tiles Wall", - "block.me.off_green_roof_tiles": "Off Green Roof Tiles", - "block.me.off_green_roof_tiles_stairs": "Off Green Roof Tiles Stairs", - "block.me.off_green_roof_tiles_slab": "Off Green Roof Tiles Slab", - "block.me.off_green_roof_tiles_vertical_slab": "Off Green Roof Tiles Vertical Slab", - "block.me.off_green_roof_tiles_wall": "Off Green Roof Tiles Wall", - "block.me.red_roof_tiles": "Red Roof Tiles", - "block.me.red_roof_tiles_stairs": "Red Roof Tiles Stairs", - "block.me.red_roof_tiles_slab": "Red Roof Tiles Slab", - "block.me.red_roof_tiles_vertical_slab": "Red Roof Tiles Vertical Slab", - "block.me.red_roof_tiles_wall": "Red Roof Tiles Wall", - "block.me.bright_red_roof_tiles": "Bright Red Roof Tiles", - "block.me.bright_red_roof_tiles_stairs": "Bright Red Roof Tiles Stairs", - "block.me.bright_red_roof_tiles_slab": "Bright Red Roof Tiles Slab", - "block.me.bright_red_roof_tiles_vertical_slab": "Bright Red Roof Tiles Vertical Slab", - "block.me.bright_red_roof_tiles_wall": "Bright Red Roof Tiles Wall", - "block.me.dark_red_roof_tiles": "Dark Red Roof Tiles", - "block.me.dark_red_roof_tiles_stairs": "Dark Red Roof Tiles Stairs", - "block.me.dark_red_roof_tiles_slab": "Dark Red Roof Tiles Slab", - "block.me.dark_red_roof_tiles_vertical_slab": "Dark Red Roof Tiles Vertical Slab", - "block.me.dark_red_roof_tiles_wall": "Dark Red Roof Tiles Wall", - "block.me.light_red_roof_tiles": "Light Red Roof Tiles", - "block.me.light_red_roof_tiles_stairs": "Light Red Roof Tiles Stairs", - "block.me.light_red_roof_tiles_slab": "Light Red Roof Tiles Slab", - "block.me.light_red_roof_tiles_vertical_slab": "Light Red Roof Tiles Vertical Slab", - "block.me.light_red_roof_tiles_wall": "Light Red Roof Tiles Wall", - "block.me.off_red_roof_tiles": "Off Red Roof Tiles", - "block.me.off_red_roof_tiles_stairs": "Off Red Roof Tiles Stairs", - "block.me.off_red_roof_tiles_slab": "Off Red Roof Tiles Slab", - "block.me.off_red_roof_tiles_vertical_slab": "Off Red Roof Tiles Vertical Slab", - "block.me.off_red_roof_tiles_wall": "Off Red Roof Tiles Wall", - "block.me.yellow_roof_tiles": "Yellow Roof Tiles", - "block.me.yellow_roof_tiles_stairs": "Yellow Roof Tiles Stairs", - "block.me.yellow_roof_tiles_slab": "Yellow Roof Tiles Slab", - "block.me.yellow_roof_tiles_vertical_slab": "Yellow Roof Tiles Vertical Slab", - "block.me.yellow_roof_tiles_wall": "Yellow Roof Tiles Wall", - "block.me.bright_yellow_roof_tiles": "Bright Yellow Roof Tiles", - "block.me.bright_yellow_roof_tiles_stairs": "Bright Yellow Roof Tiles Stairs", - "block.me.bright_yellow_roof_tiles_slab": "Bright Yellow Roof Tiles Slab", - "block.me.bright_yellow_roof_tiles_vertical_slab": "Bright Yellow Roof Tiles Vertical Slab", - "block.me.bright_yellow_roof_tiles_wall": "Bright Yellow Roof Tiles Wall", - "block.me.dark_yellow_roof_tiles": "Dark Yellow Roof Tiles", - "block.me.dark_yellow_roof_tiles_stairs": "Dark Yellow Roof Tiles Stairs", - "block.me.dark_yellow_roof_tiles_slab": "Dark Yellow Roof Tiles Slab", - "block.me.dark_yellow_roof_tiles_vertical_slab": "Dark Yellow Roof Tiles Vertical Slab", - "block.me.dark_yellow_roof_tiles_wall": "Dark Yellow Roof Tiles Wall", - "block.me.light_yellow_roof_tiles": "Light Yellow Roof Tiles", - "block.me.light_yellow_roof_tiles_stairs": "Light Yellow Roof Tiles Stairs", - "block.me.light_yellow_roof_tiles_slab": "Light Yellow Roof Tiles Slab", - "block.me.light_yellow_roof_tiles_vertical_slab": "Light Yellow Roof Tiles Vertical Slab", - "block.me.light_yellow_roof_tiles_wall": "Light Yellow Roof Tiles Wall", - "block.me.off_yellow_roof_tiles": "Off Yellow Roof Tiles", - "block.me.off_yellow_roof_tiles_stairs": "Off Yellow Roof Tiles Stairs", - "block.me.off_yellow_roof_tiles_slab": "Off Yellow Roof Tiles Slab", - "block.me.off_yellow_roof_tiles_vertical_slab": "Off Yellow Roof Tiles Vertical Slab", - "block.me.off_yellow_roof_tiles_wall": "Off Yellow Roof Tiles Wall", - "block.me.thatch": "Chaume", - "block.me.thatch_slab": "Dalle en chaume", - "block.me.thatch_vertical_slab": "Dalle verticale en chaume", - "block.me.thatch_stairs": "Escaliers en chaume", - "block.me.thatch_wall": "Muret en chaume", - "block.me.weathered_thatch": "Chaume altéré", - "block.me.weathered_thatch_slab": "Dalle en chaume altéré", - "block.me.weathered_thatch_vertical_slab": "Dalle verticale en chaume altéré", - "block.me.weathered_thatch_stairs": "Escaliers en chaume altéré", - "block.me.weathered_thatch_wall": "Muret en chaume altéré", - "block.me.aged_thatch": "Chaume vieilli", - "block.me.aged_thatch_slab": "Dalle en chaume vieilli", - "block.me.aged_thatch_vertical_slab": "Dalle verticale en chaume vieilli", - "block.me.aged_thatch_stairs": "Escaliers en chaume vieilli", - "block.me.aged_thatch_wall": "Muret en chaume vieilli", - "block.me.old_thatch": "Chaume ancien", - "block.me.old_thatch_slab": "Dalle en chaume ancien", - "block.me.old_thatch_vertical_slab": "Dalle verticale en chaume ancien", - "block.me.old_thatch_stairs": "Escaliers en chaume ancien", - "block.me.old_thatch_wall": "Muret en chaume ancien", - "block.me.rotten_thatch": "Rotten Thatch", - "block.me.rotten_thatch_slab": "Rotten Thatch Slab", - "block.me.rotten_thatch_vertical_slab": "Rotten Thatch Vertical Slab", - "block.me.rotten_thatch_stairs": "Rotten Thatch Stairs", - "block.me.rotten_thatch_wall": "Rotten Thatch Wall", - "block.me.waxed_thatch": "Chaume ciré", - "block.me.waxed_thatch_slab": "Dalle en chaume ciré", - "block.me.waxed_thatch_vertical_slab": "Dalle verticale en chaume ciré", - "block.me.waxed_thatch_stairs": "Escaliers en chaume ciré", - "block.me.waxed_thatch_wall": "Muret en chaume ciré", - "block.me.waxed_weathered_thatch": "Chaume altéré ciré", - "block.me.waxed_weathered_thatch_slab": "Dalle en chaume altéré ciré", - "block.me.waxed_weathered_thatch_vertical_slab": "Dalle verticale en chaume altéré ciré", - "block.me.waxed_weathered_thatch_stairs": "Escaliers en chaume altéré ciré", - "block.me.waxed_weathered_thatch_wall": "Muret en chaume altéré ciré", - "block.me.waxed_aged_thatch": "Chaume vieilli ciré", - "block.me.waxed_aged_thatch_slab": "Dalle en chaume vieilli ciré", - "block.me.waxed_aged_thatch_vertical_slab": "Dalle verticale en chaume vieilli ciré", - "block.me.waxed_aged_thatch_stairs": "Escaliers en chaume vieilli ciré", - "block.me.waxed_aged_thatch_wall": "Muret en chaume vieilli ciré", - "block.me.waxed_old_thatch": "Chaume ancien ciré", - "block.me.waxed_old_thatch_slab": "Dalle en chaume ancien ciré", - "block.me.waxed_old_thatch_vertical_slab": "Dalle verticale en chaume ancien ciré", - "block.me.waxed_old_thatch_stairs": "Escaliers en chaume ancien ciré", - "block.me.waxed_old_thatch_wall": "Muret en chaume ancien ciré", - "block.me.waxed_rotten_thatch": "Waxed Rotten Thatch", - "block.me.waxed_rotten_thatch_slab": "Waxed Rotten Thatch Slab", - "block.me.waxed_rotten_thatch_vertical_slab": "Waxed Rotten Thatch Vertical Slab", - "block.me.waxed_rotten_thatch_stairs": "Waxed Rotten Thatch Stairs", - "block.me.waxed_rotten_thatch_wall": "Waxed Rotten Thatch Wall", - "block.me.oak_stool": "Tabouret en chêne", - "block.me.oak_bench": "Oak Bench", - "block.me.oak_table": "Table en chêne", - "block.me.oak_chair": "Chaise en chêne", - "block.me.oak_ladder": "Oak Ladder", - "block.me.spruce_stool": "Tabouret en sapin", - "block.me.spruce_bench": "Spruce Bench", - "block.me.spruce_table": "Table en sapin", - "block.me.spruce_chair": "Chaise en sapin", - "block.me.spruce_ladder": "Spruce Ladder", - "block.me.birch_stool": "Tabouret en bouleau", - "block.me.birch_bench": "Birch Bench", - "block.me.birch_table": "Table en bouleau", - "block.me.birch_chair": "Chaise en bouleau", - "block.me.birch_ladder": "Birch Ladder", - "block.me.jungle_stool": "Tabouret en acajou", - "block.me.jungle_bench": "Jungle Bench", - "block.me.jungle_table": "Table en acajou", - "block.me.jungle_chair": "Chaise en acajou", - "block.me.jungle_ladder": "Jungle Ladder", - "block.me.acacia_stool": "Tabouret en acacia", - "block.me.acacia_bench": "Acacia Bench", - "block.me.acacia_table": "Table en acacia", - "block.me.acacia_chair": "Chaise en acacia", - "block.me.acacia_ladder": "Acacia Ladder", - "block.me.dark_oak_stool": "Tabouret en chêne noir", - "block.me.dark_oak_bench": "Dark Oak Bench", - "block.me.dark_oak_table": "Table en chêne noir", - "block.me.dark_oak_chair": "Chaise en chêne noir", - "block.me.dark_oak_ladder": "Dark Oak Ladder", - "block.me.mangrove_stool": "Tabouret en palétuvier", - "block.me.mangrove_bench": "Mangrove Bench", - "block.me.mangrove_table": "Table en palétuvier", - "block.me.mangrove_chair": "Chaise en palétuvier", - "block.me.mangrove_ladder": "Mangrove Ladder", - "block.me.cherry_stool": "Tabouret en cerisier", - "block.me.cherry_bench": "Cherry Bench", - "block.me.cherry_table": "Table en cerisier", - "block.me.cherry_chair": "Chaise en cerisier", - "block.me.cherry_ladder": "Cherry Ladder", - "block.me.bamboo_stool": "Tabouret en bambou", - "block.me.bamboo_bench": "Bamboo Bench", - "block.me.bamboo_table": "Table en bambou", - "block.me.bamboo_chair": "Chaise en bambou", - "block.me.bamboo_ladder": "Bamboo Ladder", - "block.me.crimson_stool": "Tabouret carmin", - "block.me.crimson_bench": "Crimson Bench", - "block.me.crimson_table": "Table carmin", - "block.me.crimson_chair": "Chaise carmin", - "block.me.crimson_ladder": "Crimson Ladder", - "block.me.warped_stool": "Tabouret biscornue", - "block.me.warped_bench": "Warped Bench", - "block.me.warped_table": "Table biscornue", - "block.me.warped_chair": "Chaise biscornue", - "block.me.warped_ladder": "Warped Ladder", - "block.me.treated_wood_stool": "Treated Wood Stool", - "block.me.treated_wood_bench": "Treated Wood Bench", - "block.me.treated_wood_table": "Treated Wood Table", - "block.me.treated_wood_chair": "Treated Wood Chair", - "block.me.treated_wood_ladder": "Treated Wood Ladder", - "block.me.blue_cushion": "Blue Cushion", - "block.me.brown_cushion": "Brown Cushion", - "block.me.dark_blue_cushion": "Dark Blue Cushion", - "block.me.dark_brown_cushion": "Dark Brown Cushion", - "block.me.dark_green_cushion": "Dark Green Cushion", - "block.me.dark_red_cushion": "Dark Red Cushion", - "block.me.green_cushion": "Green Cushion", - "block.me.red_cushion": "Red Cushion", - "block.me.chimney": "Chimney", - "block.me.watering_can": "Watering Can", - "block.me.wooden_bucket": "Wooden Bucket", - "block.me.treated_steel_rod": "Treated Steel Rod", - "block.me.treated_steel_door": "Treated Steel Door", - "block.me.treated_steel_trapdoor": "Treated Steel Trapdoor", - "block.me.treated_steel_bars": "Treated Steel Bars", - "block.me.big_brazier": "Big Brazier", - "block.me.gilded_big_brazier": "Gilded Big Brazier", - "block.me.small_brazier": "Small Brazier", - "block.me.gilded_small_brazier": "Gilded Small Brazier", - "block.me.fire_bowl": "Fire Bowl", - "block.me.bonfire": "Bonfire", - "block.me.sconce": "Sconce", - "block.me.gilded_sconce": "Gilded Sconce", - "block.me.orcish_sconce": "Orcish Sconce", - "block.me.candle_heap": "Candle Heap", - "block.me.ground_book": "Ground Book", - "block.me.dwarven_ground_book": "Dwarven Ground Book", - "block.me.treated_wood": "Treated Wood", - "block.me.treated_wood_slab": "Treated Wood Slab", - "block.me.treated_wood_vertical_slab": "Treated Wood Vertical Slab", - "block.me.treated_wood_stairs": "Treated Wood Stairs", - "block.me.treated_wood_wall": "Treated Wood Wall", - "block.me.treated_wood_planks": "Treated Wood Planks", - "block.me.treated_wood_planks_slab": "Treated Wood Planks Slab", - "block.me.treated_wood_planks_vertical_slab": "Treated Wood Planks Vertical Slab", - "block.me.treated_wood_planks_stairs": "Treated Wood Planks Stairs", - "block.me.treated_wood_planks_wall": "Treated Wood Planks Wall", - "block.me.treated_wood_beam": "Treated Wood Beam", - "block.me.treated_wood_beam_slab": "Treated Wood Beam Slab", - "block.me.treated_wood_beam_vertical_slab": "Treated Wood Beam Vertical Slab", - "block.me.treated_wood_beam_stairs": "Treated Wood Beam Stairs", - "block.me.treated_wood_beam_wall": "Treated Wood Beam Wall", - "block.me.treated_wood_carved_beam": "Treated Wood Carved Beam", - "block.me.treated_wood_carved_beam_slab": "Treated Wood Carved Beam Slab", - "block.me.treated_wood_carved_beam_vertical_slab": "Treated Wood Beam Carved Vertical Slab", - "block.me.treated_wood_carved_beam_stairs": "Treated Wood Carved Beam Stairs", - "block.me.treated_wood_carved_beam_wall": "Treated Wood Carved Beam Wall", - "block.me.treated_wood_panels": "Treated Wood Panels", - "block.me.treated_wood_panels_slab": "Treated Wood Panels Slab", - "block.me.treated_wood_panels_vertical_slab": "Treated Wood Panels Vertical Slab", - "block.me.treated_wood_panels_stairs": "Treated Wood Panels Stairs", - "block.me.treated_wood_panels_wall": "Treated Wood Panels Wall", - "block.me.treated_wood_tiling": "Treated Wood Tiling", - "block.me.treated_wood_tiling_slab": "Treated Wood Tiling Slab", - "block.me.treated_wood_tiling_vertical_slab": "Treated Wood Tiling Vertical Slab", - "block.me.treated_wood_tiling_stairs": "Treated Wood Tiling Stairs", - "block.me.treated_wood_tiling_wall": "Treated Wood Tiling Wall", - "block.me.brown_grass": "Herbe brune", - "block.me.green_shrub": "Arbuste vert", - "block.me.small_dry_shrub": "Small Dry Shrub", - "block.me.frozen_shrub": "Frozen Shrub", - "block.me.mallos": "Mallos", - "block.me.elanor": "Elanor", - "block.me.morgul_ivy": "Lierre de Morgul", - "block.me.hanging_cobweb": "Toile suspendue", - "block.me.corner_cobweb": "Toile de coin", - "block.me.mirkwood_spider_egg": "Oeuf d'araignée de la Fôret Noire", - "block.me.fallen_leaves": "Fallen Leaves", - "block.me.moss": "Mousse", - "block.me.corrupted_moss": "Mousse corrompue", - "block.me.corrupted_moss_block": "Bloc de mousse Corrompue", - "block.me.corrupted_moss_carpet": "Tapis de mousse corrompue", - "block.me.forest_moss": "Mousse de la forêt", - "block.me.forest_moss_block": "Bloc de mousse de la forêt", - "block.me.forest_moss_carpet": "Tapis de mousse de la forêt", - "block.me.reeds": "Roseaux", - "block.me.dry_grass": "Herbe sèche", - "block.me.dying_grass": "Herbe mourante", - "block.me.frozen_grass": "Frozen Grass", - "block.me.grim_grass": "Grim Grass", - "block.me.temperate_grass": "Temperate Grass", - "block.me.grass_tuft": "Pousse d'herbe", - "block.me.frozen_tuft": "Frozen Tuft", - "block.me.heather": "Bruyère", - "block.me.dead_heather": "Dead Heather", - "block.me.dry_heather": "Dry Heather", - "block.me.red_heather": "Bruyère rouge", - "block.me.heath": "Heath", - "block.me.wheatgrass": "Blé en herbe", - "block.me.wild_grass": "Herbe sauvage", - "block.me.wildergrass": "Herbe folle", - "block.me.beach_grass": "Herbe de Plage", - "block.me.coastal_panic_grass": "Panic amer", - "block.me.horokaka": "Disphyma australe", - "block.me.giant_horokaka": "Disphyma australe géante", - "block.me.scorched_grass": "Scorched Grass", - "block.me.scorched_tuft": "Scorched Tuft", - "block.me.scorched_shrub": "Scorched Shrub", - "block.me.sedum": "Sedum", - "block.me.yellow_sedum": "Yellow Sedum", - "block.me.bracken": "Bracken", - "block.me.dead_rushes": "Dead Rushes", - "block.me.false_oatgrass": "False Oatgrass", - "block.me.short_cattails": "Short Cattails", - "block.me.tall_cattails": "Tall Cattails", - "block.me.tall_bulrush": "Tall Bulrush", - "block.me.short_bulrush": "Short Bulrush", - "block.me.shriveled_shrub": "Shriveled Shrub", - "block.me.duckweed": "Duckweed", - "block.me.lily_pads": "Lily Pads", - "block.me.small_lily_pads": "Small Lily Pads", - "block.me.small_flowering_lily_pads": "Small Flowering Lily Pads", - "block.me.azalea_flower_growth": "Azalea Flower Growth", - "block.me.dry_growth": "Dry Growth", - "block.me.frozen_growth": "Frozen Growth", - "block.me.green_growth": "Green Growth", - "block.me.ivy_growth": "Ivy Growth", - "block.me.lilac_flower_growth": "Lilac Flower Growth", - "block.me.pink_flower_growth": "Pink Flower Growth", - "block.me.red_flower_growth": "Red Flower Growth", - "block.me.white_flower_growth": "White Flower Growth", - "block.me.yellow_flower_growth": "Yellow Flower Growth", - "block.me.light_blue_flowers": "Light Blue Flowers", - "block.me.magenta_flowers": "Magenta Flowers", - "block.me.orange_flowers": "Orange Flowers", - "block.me.pink_flowers": "Pink Flowers", - "block.me.purple_flowers": "Purple Flowers", - "block.me.red_flowers": "Red Flowers", - "block.me.white_flowers": "White Flowers", - "block.me.yellow_flowers": "Yellow Flowers", - "block.me.strawberry_bush": "Buisson de fraises", - "block.me.tan_shrub": "Arbuste bruni", - "block.me.tough_berry_bush": "Buisson de baies robuste", - "block.me.yellow_flower": "Fleur jaune", - "block.me.green_jewel_cornflower": "Cornouille verdoyante", - "block.me.white_mushroom": "Champignon blanc", - "block.me.brown_bolete": "Bolet brun", - "block.me.cave_amanita": "Amanite de caverne", - "block.me.deep_firecap": "Champi-feu des profondeurs", - "block.me.ghostshroom": "Champi-fantôme", - "block.me.morsel": "Morsel", - "block.me.sky_firecap": "Champi-feu de surface", - "block.me.trumpet_shroom": "Champi-trompette", - "block.me.tall_trumpet_shroom": "Grande champi-trompette", - "block.me.tubeshroom": "Champi-tube", - "block.me.tall_tubeshroom": "Grand champi-tube", - "block.me.violet_caps": "Champignon violet", - "block.me.yellow_amanita": "Amanite jaune", - "block.me.white_mushroom_tiller": "Talle de champignon blanc", - "block.me.brown_bolete_tiller": "Talle de bolet brun", - "block.me.cave_amanita_tiller": "Talle d'amanite de caverne", - "block.me.deep_firecap_tiller": "Talle de champi-feu des profondeurs", - "block.me.ghostshroom_tiller": "Talle de champi-fantôme", - "block.me.morsel_tiller": "Parterre de morsel", - "block.me.sky_firecap_tiller": "Talle de champi-feu de surface", - "block.me.violet_caps_tiller": "Talle de champignon violet", - "block.me.yellow_amanita_tiller": "Talle d'amanite jaune", - "block.me.brown_bolete_block": "Bloc de bolet brun", - "block.me.cave_amanita_block": "Bloc d'amanite de caverne", - "block.me.deep_firecap_block": "Bloc de champi-feu des profondeurs", - "block.me.sky_firecap_block": "Bloc de champi-feu de surface", - "block.me.yellow_amanita_block": "Bloc d'amanite jaune", - "block.me.beech_sapling": "Pousse de hêtre", - "block.me.chestnut_sapling": "Chestnut Sapling", - "block.me.holly_sapling": "Holly Sapling", - "block.me.larch_sapling": "Pousse de mélèze", - "block.me.lebethron_sapling": "Pousse de Lebethron", - "block.me.white_lebethron_sapling": "Pousse de Lébethron blanc", - "block.me.mallorn_sapling": "Pousse de Mallorn", - "block.me.maple_sapling": "Pousse d'érable", - "block.me.silver_maple_sapling": "Silver Maple Sapling", - "block.me.mirkwood_sapling": "Pousse de la forêt noire", - "block.me.palm_sapling": "Pousse de palmier", - "block.me.white_palm_sapling": "Pousse de palmier blanc", - "block.me.pine_sapling": "Pousse de pin", - "block.me.black_pine_sapling": "Black Pine Sapling", - "block.me.willow_sapling": "Pousse de saule", - "block.me.glowworm_webbing": "Toile de ver luisant", - "block.me.glowworm_main": "Ver luisant principal", - "block.me.mirkwood_roots": "Racines de la Forêt noire", - "block.me.mirkwood_hanging_roots": "Racines pendantes de la Forêt noire", - "block.me.packed_mud_slab": "Dalle de boue compactée", - "block.me.packed_mud_vertical_slab": "Dalle verticale de boue compactée", - "block.me.packed_mud_stairs": "Escalier de boue compactée", - "block.me.packed_mud_wall": "Muret de boue compactée", - "block.me.calcite_slab": "Dalle en calcite", - "block.me.calcite_vertical_slab": "Dalle verticale en calcite", - "block.me.calcite_stairs": "Escalier en calcite", - "block.me.calcite_wall": "Muret en calcite", - "block.me.smooth_basalt_slab": "Dalle de basalte poli", - "block.me.smooth_basalt_vertical_slab": "Dalle verticale en basalte poli", - "block.me.smooth_basalt_stairs": "Escalier en basalte poli", - "block.me.smooth_basalt_wall": "Muret de basalte poli", - "block.me.oak_vertical_slab": "Dalle verticale en chêne", - "block.me.spruce_vertical_slab": "Dalle verticale en sapin", - "block.me.birch_vertical_slab": "Dalle verticale en bouleau", - "block.me.jungle_vertical_slab": "Dalle verticale en acajou", - "block.me.acacia_vertical_slab": "Dalle verticale en acacia", - "block.me.dark_oak_vertical_slab": "Dalle verticale en chêne noir", - "block.me.mangrove_vertical_slab": "Dalle verticale en palétuvier", - "block.me.cherry_vertical_slab": "Dalle verticale en cerisier", - "block.me.bamboo_vertical_slab": "Dalle verticale en bambou", - "block.me.crimson_vertical_slab": "Dalle verticale carmin", - "block.me.warped_vertical_slab": "Dalle verticale biscornu", - "block.me.oak_wood_slab": "Dalle en bois de chêne", - "block.me.spruce_wood_slab": "Dalle en bois de sapin", - "block.me.birch_wood_slab": "Dalle en bois de bouleau", - "block.me.jungle_wood_slab": "Dalle en bois d'acajou", - "block.me.acacia_wood_slab": "Dalle en bois d'acacia", - "block.me.dark_oak_wood_slab": "Dalle en bois de chêne noir", - "block.me.mangrove_wood_slab": "Dalle en bois de palétuvier", - "block.me.cherry_wood_slab": "Dalle en bois de cerisier", - "block.me.bamboo_wood_slab": "Dalle en bois de bambou", - "block.me.crimson_wood_slab": "Dalle en tige carmin", - "block.me.warped_wood_slab": "Dalle de tige biscornu", - "block.me.oak_wood_stairs": "Escalier en bois de chêne", - "block.me.spruce_wood_stairs": "Escalier en bois de sapin", - "block.me.birch_wood_stairs": "Escalier en bois de bouleau", - "block.me.jungle_wood_stairs": "Escalier en bois d'acajou", - "block.me.acacia_wood_stairs": "Escalier en bois d'acacia", - "block.me.dark_oak_wood_stairs": "Escalier en bois de chêne noir", - "block.me.mangrove_wood_stairs": "Escalier en bois de palétuvier", - "block.me.cherry_wood_stairs": "Escalier en bois de cerisier", - "block.me.bamboo_wood_stairs": "Escalier en bois de bambou", - "block.me.crimson_wood_stairs": "Escaliers en tige carmin", - "block.me.warped_wood_stairs": "Escalier de tige biscornu", - "block.me.stripped_oak_wood_stairs": "Escaliers en bois de chêne écorcé", - "block.me.stripped_spruce_wood_stairs": "Escaliers en bois de sapin écorcé", - "block.me.stripped_birch_wood_stairs": "Escaliers en bois de bouleau écorcé", - "block.me.stripped_jungle_wood_stairs": "Escaliers en bois d'acajou écorcé", - "block.me.stripped_acacia_wood_stairs": "Escaliers en bois d'acacia écorcé", - "block.me.stripped_dark_oak_wood_stairs": "Escaliers en bois de chêne noir écorcé", - "block.me.stripped_mangrove_wood_stairs": "Escaliers en bois de palétuvier écorcé", - "block.me.stripped_cherry_wood_stairs": "Escaliers en bois de cerisier écorcé", - "block.me.stripped_bamboo_wood_stairs": "Escaliers en bois de bambou écorcé", - "block.me.stripped_crimson_wood_stairs": "Escaliers en tige carmin dénudée", - "block.me.stripped_warped_wood_stairs": "Escaliers en tige biscornue dénudée", - "block.me.oak_wood_vertical_slab": "Dalle verticale en bois de chêne", - "block.me.spruce_wood_vertical_slab": "Dalle verticale en bois de sapin", - "block.me.birch_wood_vertical_slab": "Dalle verticale en bois de bouleau", - "block.me.jungle_wood_vertical_slab": "Dalle verticale en bois d'acajou", - "block.me.acacia_wood_vertical_slab": "Dalle verticale en bois d'acacia", - "block.me.dark_oak_wood_vertical_slab": "Dalle verticale en bois de chêne noir", - "block.me.mangrove_wood_vertical_slab": "Dalle verticale en bois de palétuvier", - "block.me.cherry_wood_vertical_slab": "Dalle verticale en bois de cerisier", - "block.me.bamboo_wood_vertical_slab": "Dalle verticale en bois de bambou", - "block.me.crimson_wood_vertical_slab": "Dalle verticale en tige carmin", - "block.me.warped_wood_vertical_slab": "Dalle verticale en tige biscornue", - "block.me.stripped_oak_wood_slab": "Dalle en bois de chêne écorcée", - "block.me.stripped_spruce_wood_slab": "Dalle en bois de sapin écorcée", - "block.me.stripped_birch_wood_slab": "Dalle en bois de bouleau écorcée", - "block.me.stripped_jungle_wood_slab": "Dalle en bois d'acajou écorcée", - "block.me.stripped_acacia_wood_slab": "Dalle en bois d'acacia écorcée", - "block.me.stripped_dark_oak_wood_slab": "Dalle en bois de chêne noir écorcée", - "block.me.stripped_mangrove_wood_slab": "Dalle en bois de palétuvier écorcé", - "block.me.stripped_cherry_wood_slab": "Dalle en bois de cerisier écorcé", - "block.me.stripped_bamboo_wood_slab": "Dalle en bois de bambou écorcé", - "block.me.stripped_crimson_wood_slab": "Dalle en tige carmin dénudée", - "block.me.stripped_warped_wood_slab": "Dalle en tige biscornue dénudée", - "block.me.stripped_oak_wood_vertical_slab": "Dalle verticale en bois de chêne écorcé", - "block.me.stripped_spruce_wood_vertical_slab": "Dalle verticale en bois de sapin écorcé", - "block.me.stripped_birch_wood_vertical_slab": "Dalle verticale en bois de bouleau écorcé", - "block.me.stripped_jungle_wood_vertical_slab": "Dalle verticale en bois d'acajou écorcé", - "block.me.stripped_acacia_wood_vertical_slab": "Dalle verticale en bois d'acacia écorcé", - "block.me.stripped_dark_oak_wood_vertical_slab": "Dalle verticale en bois de chêne noir écorcé", - "block.me.stripped_mangrove_wood_vertical_slab": "Dalle verticale en bois de palétuvier écorcé", - "block.me.stripped_cherry_wood_vertical_slab": "Dalle verticale en bois de cerisier écorcé", - "block.me.stripped_bamboo_wood_vertical_slab": "Dalle verticale en bois de bambou écorcé", - "block.me.stripped_crimson_wood_vertical_slab": "Dalle verticale en tige carmin dénudée", - "block.me.stripped_warped_wood_vertical_slab": "Dalle verticale en tige biscornue dénudée", - "block.me.oak_wood_fence": "Barrière en bois de chêne", - "block.me.spruce_wood_fence": "Barrière en bois de sapin", - "block.me.birch_wood_fence": "Barrière en bois de bouleau", - "block.me.jungle_wood_fence": "Barrière en bois d'acajou", - "block.me.acacia_wood_fence": "Barrière en bois d'acacia", - "block.me.dark_oak_wood_fence": "Barrière en bois de chêne noir", - "block.me.mangrove_wood_fence": "Barrière en bois de palétuvier", - "block.me.cherry_wood_fence": "Barrière en bois de cerisier", - "block.me.bamboo_wood_fence": "Barrière en bois de bambou", - "block.me.crimson_wood_fence": "Barrière en tige carmin", - "block.me.warped_wood_fence": "Barrière de tige biscornu", - "block.me.stripped_oak_wood_fence": "Barrière en bois de chêne écorcé", - "block.me.stripped_spruce_wood_fence": "Barrière en bois de sapin écorcé", - "block.me.stripped_birch_wood_fence": "Barrière en bois de bouleau écorcé", - "block.me.stripped_jungle_wood_fence": "Barrière en bois d'acajou écorcé", - "block.me.stripped_acacia_wood_fence": "Barrière en bois d'acacia écorcé", - "block.me.stripped_dark_oak_wood_fence": "Barrière en bois de chêne noir écorcé", - "block.me.stripped_mangrove_wood_fence": "Barrière en bois de palétuvier écorcé", - "block.me.stripped_cherry_wood_fence": "Barrière en bois de cerisier écorcé", - "block.me.stripped_bamboo_wood_fence": "Barrière en bois de bambou écorcé", - "block.me.stripped_crimson_wood_fence": "Barrière en tige carmin dénudée", - "block.me.stripped_warped_wood_fence": "Barrière en tige biscornue dénudée", - "block.me.oak_wood_wall": "Muret en bois de chêne", - "block.me.spruce_wood_wall": "Muret en bois de sapin", - "block.me.birch_wood_wall": "Muret de bois de bouleau", - "block.me.jungle_wood_wall": "Muret en bois d'acajou", - "block.me.acacia_wood_wall": "Muret en bois d'acacia", - "block.me.dark_oak_wood_wall": "Muret en bois de chêne noir", - "block.me.mangrove_wood_wall": "Muret en bois de palétuvier", - "block.me.cherry_wood_wall": "Muret en bois de cerisier", - "block.me.bamboo_wood_wall": "Muret en bois de bambou", - "block.me.crimson_wood_wall": "Muret en tige carmin", - "block.me.warped_wood_wall": "Muret en tige biscornue", - "block.me.stripped_oak_wood_wall": "Muret en bois de chêne écorcé", - "block.me.stripped_spruce_wood_wall": "Muret en bois de sapin écorcé", - "block.me.stripped_birch_wood_wall": "Muret en bois de bouleau écorcé", - "block.me.stripped_jungle_wood_wall": "Muret en bois d'acajou écorcé", - "block.me.stripped_acacia_wood_wall": "Muret en bois d'acacia écorcé", - "block.me.stripped_dark_oak_wood_wall": "Muret en bois de chêne noir écorcé", - "block.me.stripped_mangrove_wood_wall": "Muret en bois de palétuvier écorcé", - "block.me.stripped_cherry_wood_wall": "Muret en bois de cerisier écorcé", - "block.me.stripped_bamboo_wood_wall": "Muret en bois de bambou écorcé", - "block.me.stripped_crimson_wood_wall": "Muret en tige carmin dénudée", - "block.me.stripped_warped_wood_wall": "Muret en tige biscornue dénudée", - "block.me.oak_shingles_wall": "Muret en bardeaux de chêne", - "block.me.spruce_shingles_wall": "Muret en bardeaux de sapin", - "block.me.birch_shingles_wall": "Muret en bardeaux de bouleau", - "block.me.jungle_shingles_wall": "Muret en bardeaux d'acajou", - "block.me.acacia_shingles_wall": "Muret en bardeaux d'acacia", - "block.me.dark_oak_shingles_wall": "Muret en bardeaux de chêne noir", - "block.me.mangrove_shingles_wall": "Muret en bardeaux de palétuvier", - "block.me.cherry_shingles_wall": "Muret en bardeaux de cerisier", - "block.me.bamboo_shingles_wall": "Muret en bardeaux de bambou", - "block.me.crimson_shingles_wall": "Muret en bardeaux carmin", - "block.me.warped_shingles_wall": "Muret en bardeaux biscornue", - "block.me.cobblestone_vertical_slab": "Dalle verticale en pierre", - "block.me.mossy_cobblestone_vertical_slab": "Dalle verticale en pierre moussue", - "block.me.smooth_stone_vertical_slab": "Dalle verticale en roche lisse", - "block.me.stone_brick_vertical_slab": "Dalle verticale en pierre taillée", - "block.me.mossy_stone_brick_vertical_slab": "Dalle verticale en pierre taillée moussue", - "block.me.brick_vertical_slab": "Dalle verticale en brique", - "block.me.mud_brick_vertical_slab": "Dalle verticale en brique de terre", - "block.me.sandstone_vertical_slab": "Dalle verticale en grès", - "block.me.smooth_sandstone_vertical_slab": "Dalle verticale en grès lisse", - "block.me.cut_sandstone_vertical_slab": "Dalle verticale en grès sculpté", - "block.me.red_sandstone_vertical_slab": "Dalle verticale en grès rouge", - "block.me.smooth_red_sandstone_vertical_slab": "Dalle verticale en grès rouge lisse", - "block.me.cut_red_sandstone_vertical_slab": "Dalle verticale en grès rouge sculpté", - "block.me.prismarine_vertical_slab": "Dalle verticale en prismarine", - "block.me.prismarine_brick_vertical_slab": "Dalle verticale en brique de prismarine", - "block.me.dark_prismarine_vertical_slab": "Dalle verticale en prismarine sombre", - "block.me.nether_brick_vertical_slab": "Dalle verticale en brique du nether", - "block.me.red_nether_brick_vertical_slab": "Dalle verticale en brique rouge du nether", - "block.me.blackstone_vertical_slab": "Dalle verticale en roche noire", - "block.me.polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie", - "block.me.polished_blackstone_brick_vertical_slab": "Dalle verticale en brique de pierre noire polie", - "block.me.end_stone_brick_vertical_slab": "Dalle verticale en brique de l'end", - "block.me.purpur_vertical_slab": "Dalle verticale en purpur", - "block.me.quartz_vertical_slab": "Dalle verticale en quartz", - "block.me.smooth_quartz_vertical_slab": "Dalle verticale en quartz lisse", - "block.me.cut_copper_vertical_slab": "Dalle verticale en cuivre taillé", - "block.me.exposed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé exposé", - "block.me.weathered_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé érodé", - "block.me.oxidized_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé oxydé", - "block.me.waxed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé ciré", - "block.me.waxed_exposed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé exposé ciré", - "block.me.waxed_weathered_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé érodé ciré", - "block.me.waxed_oxidized_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé oxydé ciré", - "block.me.cut_copper_wall": "Cut Copper Wall", - "block.me.exposed_cut_copper_wall": "Exposed Cut Copper Wall", - "block.me.weathered_cut_copper_wall": "Weathered Cut Copper Wall", - "block.me.oxidized_cut_copper_wall": "Oxidized Cut Copper Wall", - "block.me.waxed_cut_copper_wall": "Waxed Cut Copper Wall", - "block.me.waxed_exposed_cut_copper_wall": "Waxed Exposed Cut Copper Wall", - "block.me.waxed_weathered_cut_copper_wall": "Waxed Weathered Cut Copper Wall", - "block.me.waxed_oxidized_cut_copper_wall": "Waxed Oxidized Cut Copper Wall", - "block.me.copper_bars": "Copper Bars", - "block.me.exposed_copper_bars": "Exposed Copper Bars", - "block.me.weathered_copper_bars": "Weathered Copper Bars", - "block.me.oxidized_copper_bars": "Oxidized Copper Bars", - "block.me.waxed_copper_bars": "Waxed Copper Bars", - "block.me.waxed_exposed_copper_bars": "Waxed Exposed Copper Bars", - "block.me.waxed_weathered_copper_bars": "Waxed Weathered Copper Bars", - "block.me.waxed_oxidized_copper_bars": "Waxed Oxidized Copper Bars", - "block.me.gonluin_coal_ore": "Minerai de charbon de Gonluin", - "block.me.ashen_coal_ore": "Minerai de charbon cendré", - "block.me.calcite_coal_ore": "Minerai de charbon de calcite", - "block.me.limestone_coal_ore": "Minerai de charbon de calcaire", - "block.me.slate_coal_ore": "Slate Coal Ore", - "block.me.ironstone_coal_ore": "Ironstone Coal Ore", - "block.me.gonluin_copper_ore": "Minerai de cuivre de Gonluin", - "block.me.ashen_copper_ore": "Minerai de cuivre cendré", - "block.me.calcite_copper_ore": "Minerai de cuivre de calcite", - "block.me.limestone_copper_ore": "Minerai de cuivre de calcaire", - "block.me.slate_copper_ore": "Slate Copper Ore", - "block.me.ironstone_copper_ore": "Ironstone Copper Ore", - "block.me.tin_ore": "Minerai d'étain", - "block.me.gonluin_tin_ore": "Minerai d'étain de Gonluin", - "block.me.ashen_tin_ore": "Minerai d'étain cendré", - "block.me.calcite_tin_ore": "Minerai d'étain de calcite", - "block.me.limestone_tin_ore": "Minerai d'étain de calcaire", - "block.me.slate_tin_ore": "Slate Tin Ore", - "block.me.ironstone_tin_ore": "Ironstone Tin Ore", - "block.me.deepslate_tin_ore": "Minerais d'étain des abîmes", - "block.me.nurgon_tin_ore": "Núrgon Tin Ore", - "block.me.tin_block": "Bloc d'étain", - "block.me.raw_tin_block": "Bloc d'étain brut", - "block.me.deepslate_lead_ore": "Minerais de plomb des abîmes", - "block.me.nurgon_lead_ore": "Núrgon Lead Ore", - "block.me.medgon_lead_ore": "Medgon Lead Ore", - "block.me.raw_lead_block": "Bloc de plomb brut", - "block.me.lead_block": "Bloc de plomb", - "block.me.cut_lead": "Plomb taillé", - "block.me.cut_lead_stairs": "Escaliers en plomb taillé", - "block.me.cut_lead_slab": "Dalle en plomb taillé", - "block.me.cut_lead_vertical_slab": "Dalle verticale en plomb taillé", - "block.me.cut_silver": "Argent taillé", - "block.me.cut_silver_stairs": "Escaliers en argent taillé", - "block.me.cut_silver_slab": "Dalle en argent taillé", - "block.me.cut_silver_vertical_slab": "Dalle verticale en argent taillé", - "block.me.nurgon_silver_ore": "Núrgon Silver Ore", - "block.me.medgon_silver_ore": "Medgon Silver Ore", - "block.me.raw_silver_block": "Bloc d'argent brut", - "block.me.silver_block": "Bloc d'argent", - "block.me.silver_bars": "Barreaux d'argent", - "block.me.nurgon_gold_ore": "Núrgon Gold Ore", - "block.me.medgon_gold_ore": "Medgon Gold Ore", - "block.me.nurgon_iron_ore": "Núrgon Iron Ore", - "block.me.medgon_iron_ore": "Medgon Iron Ore", - "block.me.medgon_mithril_ore": "Medgon Mithril Ore", - "block.me.raw_mithril_block": "Bloc de mithril brut", - "block.me.mithril_block": "Bloc de Mithril", - "block.me.sticky_snow": "Sticky Snow", - "block.me.sticky_ice": "Sticky Ice", - "block.me.floating_ice": "Floating Ice", - "block.me.short_icicles": "Short Icicles", - "block.me.drooping_icicles": "Drooping Icicles", - "block.me.river_sand": "Sable de rivière", - "block.me.black_sand": "Sable Noir", - "block.me.white_sand": "Sable Blanc", - "block.me.gravel_layer": "Couche de gravier", - "block.me.sand_layer": "Couche de sable", - "block.me.ashen_gravel": "Ashen Gravel", - "block.me.ashen_gravel_layer": "Ashen Gravel Layer", - "block.me.ashen_sand": "Ashen Sand", - "block.me.ashen_sand_layer": "Ashen Sand Layer", - "block.me.black_sand_layer": "Couche de sable noir", - "block.me.white_sand_layer": "Couche de sable blanc", - "block.me.stucco": "Stuc", - "block.me.stucco_slab": "Dalle en stuc", - "block.me.stucco_vertical_slab": "Dalle verticale en stuc", - "block.me.stucco_stairs": "Escaliers en stuc", - "block.me.stucco_wall": "Murret en stuc", - "block.me.dolomite_brickwork": "Dolomite Brickwork", - "block.me.dolomite_brickwork_slab": "Dolomite Brickwork Slab", - "block.me.dolomite_brickwork_vertical_slab": "Dolomite Brickwork Vertical Slab", - "block.me.dolomite_brickwork_stairs": "Dolomite Brickwork Stairs", - "block.me.dolomite_brickwork_wall": "Dolomite Brickwork Wall", - "block.me.mixed_stones_brickwork": "Mixed Stones Brickwork", - "block.me.mixed_stones_brickwork_slab": "Mixed Stones Brickwork Slab", - "block.me.mixed_stones_brickwork_vertical_slab": "Mixed Stones Brickwork Vertical Slab", - "block.me.mixed_stones_brickwork_stairs": "Mixed Stones Brickwork Stairs", - "block.me.mixed_stones_brickwork_wall": "Mixed Stones Brickwork Wall", - "block.me.wattle_and_brick": "Wattle and Brick", - "block.me.wattle_and_brick_cross": "Wattle and Brick Cross", - "block.me.wattle_and_brick_right": "Wattle and Brick Right", - "block.me.wattle_and_brick_left": "Wattle and Brick Left", - "block.me.wattle_and_brick_diamond": "Wattle and Brick Diamond", - "block.me.wattle_and_brick_pillar": "Wattle and Brick Pillar", - "block.me.wattle_and_brick_window": "Wattle and Brick Window", - "block.me.wattle_and_brick_window_pane": "Wattle and Brick Window Pane", - "block.me.plaster": "Plaster", - "block.me.plaster_slab": "Plaster Slab", - "block.me.plaster_vertical_slab": "Plaster Vertical Slab", - "block.me.plaster_stairs": "Plaster Stairs", - "block.me.plaster_wall": "Plaster Wall", - "block.me.plaster_hobbit_window": "Plaster Hobbit Window", - "block.me.plaster_hobbit_window_pane": "Plaster Hobbit Window Pane", - "block.me.plaster_round_window": "Plaster Round Window", - "block.me.plaster_round_window_pane": "Plaster Round Window Pane", - "block.me.white_daub": "Daube blanche", - "block.me.white_daub_slab": "Dalle en daube blanche", - "block.me.white_daub_vertical_slab": "Dalle verticale en daube blanche", - "block.me.white_daub_stairs": "Escalier en daube blanche", - "block.me.white_daub_wall": "Muret en daube blanche", - "block.me.wattle_and_white_daub": "Wattle and White Daub", - "block.me.wattle_and_white_daub_cross": "Wattle and White Daub Cross", - "block.me.wattle_and_white_daub_right": "Wattle and White Daub Right", - "block.me.wattle_and_white_daub_left": "Wattle and White Daub Left", - "block.me.wattle_and_white_daub_diamond": "Wattle and White Daub Diamond", - "block.me.wattle_and_white_daub_pillar": "Wattle and White Daub Pillar", - "block.me.black_wattle_and_white_daub": "Black Wattle and White Daub", - "block.me.black_wattle_and_white_daub_cross": "Black Wattle and White Daub Cross", - "block.me.black_wattle_and_white_daub_right": "Black Wattle and White Daub Right", - "block.me.black_wattle_and_white_daub_left": "Black Wattle and White Daub Left", - "block.me.black_wattle_and_white_daub_diamond": "Black Wattle and White Daub Diamond", - "block.me.black_wattle_and_white_daub_pillar": "Black Wattle and White Daub Pillar", - "block.me.green_wattle_and_white_daub": "Green Wattle and White Daub", - "block.me.green_wattle_and_white_daub_cross": "Green Wattle and White Daub Cross", - "block.me.green_wattle_and_white_daub_right": "Green Wattle and White Daub Right", - "block.me.green_wattle_and_white_daub_left": "Green Wattle and White Daub Left", - "block.me.green_wattle_and_white_daub_diamond": "Green Wattle and White Daub Diamond", - "block.me.green_wattle_and_white_daub_pillar": "Green Wattle and White Daub Pillar", - "block.me.red_wattle_and_white_daub": "Red Wattle and White Daub", - "block.me.red_wattle_and_white_daub_cross": "Red Wattle and White Daub Cross", - "block.me.red_wattle_and_white_daub_right": "Red Wattle and White Daub Right", - "block.me.red_wattle_and_white_daub_left": "Red Wattle and White Daub Left", - "block.me.red_wattle_and_white_daub_diamond": "Red Wattle and White Daub Diamond", - "block.me.red_wattle_and_white_daub_pillar": "Red Wattle and White Daub Pillar", - "block.me.white_daub_hobbit_window": "Torchis blanc et fenêtre Hobbit", - "block.me.white_daub_hobbit_window_pane": "Torchis blanc et fenêtre plate Hobbit", - "block.me.dark_daub": "Dark Daub", - "block.me.dark_daub_slab": "Dark Daub Slab", - "block.me.dark_daub_vertical_slab": "Dark Daub Vertical Slab", - "block.me.dark_daub_stairs": "Dark Daub Stairs", - "block.me.dark_daub_wall": "Dark Daub Wall", - "block.me.dark_wattle_and_dark_daub": "Dark Wattle and Dark Daub", - "block.me.dark_wattle_and_dark_daub_cross": "Dark Wattle and Dark Daub Cross", - "block.me.dark_wattle_and_dark_daub_right": "Dark Wattle and Dark Daub Right", - "block.me.dark_wattle_and_dark_daub_left": "Dark Wattle and Dark Daub Left", - "block.me.dark_wattle_and_dark_daub_diamond": "Dark Wattle and Dark Daub Diamond", - "block.me.dark_wattle_and_dark_daub_pillar": "Dark Wattle and Dark Daub Pillar", - "block.me.yellow_daub": "Daube jaune", - "block.me.yellow_daub_slab": "Dalle en daube jaune", - "block.me.yellow_daub_vertical_slab": "Dalle verticale en daube jaune", - "block.me.yellow_daub_stairs": "Escaliers en daube jaune", - "block.me.yellow_daub_wall": "Yellow Daub Stairs Wall", - "block.me.wattle_and_yellow_daub": "Wattle and Yellow Daub", - "block.me.wattle_and_yellow_daub_cross": "Wattle and Yellow Daub Cross", - "block.me.wattle_and_yellow_daub_right": "Wattle and Yellow Daub Right", - "block.me.wattle_and_yellow_daub_left": "Wattle and Yellow Daub Left", - "block.me.wattle_and_yellow_daub_diamond": "Wattle and Yellow Daub Diamond", - "block.me.wattle_and_yellow_daub_pillar": "Wattle and Yellow Daub Pillar", - "block.me.yellow_daub_hobbit_window": "Torchis jaune et fenêtre Hobbit", - "block.me.yellow_daub_hobbit_window_pane": "Torchis jaune et fenêtre plate Hobbit", - "block.me.wood_framed_window": "Fenêtre encadrée en bois", - "block.me.wood_framed_window_pane": "Fenêtre plate encadrée en bois", - "block.me.wattle_framed_window": "Wattle Framed Window", - "block.me.wattle_framed_window_pane": "Wattle Framed Window Pane", - "block.me.black_wattle_framed_window": "Black Wattle Framed Window", - "block.me.black_wattle_framed_window_pane": "Black Wattle Framed Window Pane", - "block.me.green_wattle_framed_window": "Green Wattle Framed Window", - "block.me.green_wattle_framed_window_pane": "Green Wattle Framed Window Pane", - "block.me.red_wattle_framed_window": "Red Wattle Framed Window", - "block.me.red_wattle_framed_window_pane": "Red Wattle Framed Window Pane", - "block.me.white_wattle_framed_window": "White Wattle Framed Window", - "block.me.white_wattle_framed_window_pane": "White Wattle Framed Window Pane", - "block.me.dark_wattle_framed_window": "Dark Wattle Framed Window", - "block.me.dark_wattle_framed_window_pane": "Dark Wattle Framed Window Pane", - "block.me.mud_brick_round_window": "Mud Brick Round Window", - "block.me.mud_brick_round_window_pane": "Mud Brick Round Window Pane", - "block.me.white_daub_round_window": "White Daub Round Window", - "block.me.white_daub_round_window_pane": "White Daub Round Window Pane", - "block.me.yellow_daub_round_window": "Yellow Daub Round Window", - "block.me.yellow_daub_round_window_pane": "Yellow Daub Round Window Pane", - "block.me.black_wattle_trapdoor": "Black Wattle Trapdoor", - "block.me.dark_wattle_trapdoor": "Dark Wattle Trapdoor", - "block.me.green_wattle_trapdoor": "Green Wattle Trapdoor", - "block.me.red_wattle_trapdoor": "Red Wattle Trapdoor", - "block.me.wattle_trapdoor": "Wattle Trapdoor", - "block.me.black_wool_slab": "Dalle en laine noire", - "block.me.blue_wool_slab": "Dalle en laine bleue", - "block.me.brown_wool_slab": "Dalle en laine marron", - "block.me.cyan_wool_slab": "Dalle en laine cyan", - "block.me.gray_wool_slab": "Dalle en laine grise", - "block.me.green_wool_slab": "Dalle en laine verte", - "block.me.light_blue_wool_slab": "Dalle en laine bleu clair", - "block.me.light_gray_wool_slab": "Dalle en laine gris clair", - "block.me.lime_wool_slab": "Dalle en laine vert clair", - "block.me.magenta_wool_slab": "Dalle en laine magenta", - "block.me.orange_wool_slab": "Dalle en laine orange", - "block.me.pink_wool_slab": "Dalle en laine rose", - "block.me.purple_wool_slab": "Dalle en laine violette", - "block.me.red_wool_slab": "Dalle en laine rouge", - "block.me.white_wool_slab": "Dalle en laine blanche", - "block.me.yellow_wool_slab": "Dalle en laine jaune", - "block.me.black_wool_vertical_slab": "Dalle verticale en laine noire", - "block.me.blue_wool_vertical_slab": "Dalle verticale en laine bleue", - "block.me.brown_wool_vertical_slab": "Dalle verticale en laine marron", - "block.me.cyan_wool_vertical_slab": "Dalle verticale en laine cyan", - "block.me.gray_wool_vertical_slab": "Dalle verticale en laine grise", - "block.me.green_wool_vertical_slab": "Dalle verticale en laine verte", - "block.me.light_blue_wool_vertical_slab": "Dalle verticale en laine bleu clair", - "block.me.light_gray_wool_vertical_slab": "Dalle verticale en laine gris clair", - "block.me.lime_wool_vertical_slab": "Dalle verticale en laine vert clair", - "block.me.magenta_wool_vertical_slab": "Dalle verticale en laine Magenta", - "block.me.orange_wool_vertical_slab": "Dalle verticale en laine orange", - "block.me.pink_wool_vertical_slab": "Dalle verticale en laine rose", - "block.me.purple_wool_vertical_slab": "Dalle verticale en laine violette", - "block.me.red_wool_vertical_slab": "Dalle verticale en laine rouge", - "block.me.white_wool_vertical_slab": "Dalle verticale en laine blanche", - "block.me.yellow_wool_vertical_slab": "Dalle verticale en laine jaune", - "block.me.black_wool_stairs": "Escaliers en laine noire", - "block.me.blue_wool_stairs": "Escaliers en laine bleue", - "block.me.brown_wool_stairs": "Escaliers en laine marron", - "block.me.cyan_wool_stairs": "Escaliers en laine cyan", - "block.me.gray_wool_stairs": "Escaliers en laine grise", - "block.me.green_wool_stairs": "Escaliers en laine verte", - "block.me.light_blue_wool_stairs": "Escaliers en laine bleue claire", - "block.me.light_gray_wool_stairs": "Escaliers en laine grise claire", - "block.me.lime_wool_stairs": "Escaliers en laine verte claire", - "block.me.magenta_wool_stairs": "Escaliers en laine magenta", - "block.me.orange_wool_stairs": "Escaliers en laine orange", - "block.me.pink_wool_stairs": "Escaliers en laine rose", - "block.me.purple_wool_stairs": "Escaliers en laine violette", - "block.me.red_wool_stairs": "Escaliers en laine rouge", - "block.me.white_wool_stairs": "Escaliers en laine blanche", - "block.me.yellow_wool_stairs": "Escaliers en laine jaune", - "block.me.gilded_bars": "Gilded Bars", - "block.me.dwarven_lantern": "Lanterne naine", - "block.me.crystal_lamp": "Crystal Lamp", - "block.me.silver_lantern": "Lanterne en argent", - "block.me.elven_lantern": "Elven Lantern", - "block.me.forge": "Forge", - "block.me.bellows": "Bellows", - "block.me.treated_anvil": "Treated Anvil", - "block.me.dwarven_treated_anvil": "Dwarven Treated Anvil", - "block.me.elven_treated_anvil": "Elven Treated Anvil", - "block.me.orcish_treated_anvil": "Orcish Treated Anvil", - "block.me.artisan_table": "Table d'artisan", - "block.me.reinforced_chest": "Reinforced Chest", - "block.me.small_crate": "Small Crate", - "block.me.thin_barrel": "Thin Barrel", - "block.me.fire_of_orthanc": "Fire of Orthanc", - "block.me.torch_of_orthanc": "Torch of Orthanc", - "block.me.wood_pile": "Tas de bois", - "block.me.rope": "Corde", - "block.me.rope_ladder": "Rope Ladder", - "block.me.net": "Net", - "block.me.bronze_chain": "Bronze Chain", - "block.me.bronze_broad_chain": "Bronze Broad Chain", - "block.me.spiky_chain": "Spiky Chain", - "block.me.tall_black_pine_door": "Tall Black Pine Door", - "block.me.oak_stable_door": "Oak Stable Door", - "block.me.reinforced_spruce_door": "Reinforced Spruce Door", - "block.me.reinforced_black_pine_door": "Reinforced Black Pine Door", - "block.me.simple_larch_gate": "Simple Larch Gate", - "block.me.rickety_simple_larch_door": "Rickety Simple Larch Door", - "block.me.spruce_stable_door": "Spruce Stable Door", - "block.me.large_sturdy_door": "Large Sturdy Door", - "block.me.larch_hobbit_door": "Larch Hobbit Door", - "block.me.spruce_hobbit_door": "Spruce Hobbit Door", - "block.me.blue_hobbit_door": "Blue Hobbit Door", - "block.me.green_hobbit_door": "Green Hobbit Door", - "block.me.light_blue_hobbit_door": "Light Blue Hobbit Door", - "block.me.red_hobbit_door": "Red Hobbit Door", - "block.me.yellow_hobbit_door": "Yellow Hobbit Door", - "block.me.great_gondorian_gate": "Great Gondorian Gate", - "block.me.great_dwarven_gate": "Great Dwarven Gate", - "block.me.varnished_dwarven_door": "Varnished Dwarven Door", - "block.me.ruined_dwarven_door": "Ruined Dwarven Door", - "block.me.hidden_dwarven_door": "Hidden Dwarven Door", - "block.me.great_elven_gate": "Great Elven Gate", - "block.me.great_orcish_gate": "Great Orcish Gate", - "block.me.calcite_statue": "Calcite Statue", - "block.me.gonluin_statue": "Gonluin Statue", - "block.me.tuff_statue": "Tuff Statue", - "block.me.medgon_spike": "Medgon Spike", - "block.me.fancy_bed": "Fancy Bed", - "block.me.fur_bed": "Fur Bed", - "block.me.straw_bed": "Straw Bed", - "item.me.gondor_banner_pattern": "Motif de bannière du Gondor", - "item.me.gondor_banner_pattern.desc": "L'arbre blanc du Gondor", - "item.me.rohan_banner_pattern": "Motif de bannière du Rohan", - "item.me.rohan_banner_pattern.desc": "Tête de cheval du Rohan", - "item.me.lothlorien_banner_pattern": "Motif de bannière Lothlórien", - "item.me.lothlorien_banner_pattern.desc": "Arbre de la Lórien", - "item.me.mordor_banner_pattern": "Mordor Banner Pattern", - "item.me.mordor_banner_pattern.desc": "The Great Eye of Sauron", - "item.me.misty_mountains_orcs_banner_pattern": "Misty Mountains Orcs Banner Pattern", - "item.me.misty_mountains_orcs_banner_pattern.desc": "The symbols of the Orcs of the Misty Mountains", - "item.me.isengard_banner_pattern": "Isengard Banner Pattern", - "item.me.isengard_banner_pattern.desc": "The White Hand of Saruman", - "item.me.anvil_banner_pattern": "Anvil Banner Pattern", - "item.me.anvil_banner_pattern.desc": "Anvil Icons", - "item.me.bell_banner_pattern": "Bell Banner Pattern", - "item.me.bell_banner_pattern.desc": "Bell Icons", - "item.me.bow_banner_pattern": "Bow Banner Pattern", - "item.me.bow_banner_pattern.desc": "Bow Icons", - "item.me.dwarf_crown_banner_pattern": "Dwarf Crown Banner Pattern", - "item.me.dwarf_crown_banner_pattern.desc": "Dwarf Crown Icons", - "item.me.dragon_banner_pattern": "Dragon Banner Pattern", - "item.me.dragon_banner_pattern.desc": "A great Dragon", - "item.me.pipeweed_banner_pattern": "Pipeweed Banner Pattern", - "item.me.pipeweed_banner_pattern.desc": "A delicacy from the shire", - "item.me.snail_banner_pattern": "Snail Banner Pattern", - "item.me.snail_banner_pattern.desc": "The Slimy Overlord", - "block.me.dale_banner": "Dale Banner", - "block.me.erebor_banner": "Erebor Banner", - "block.me.gondor_banner": "Gondor Banner", - "block.me.lothlorien_banner": "Lothlórien Banner", - "block.me.rohan_banner": "Rohan Banner", - "block.me.shire_banner": "Shire Banner", - "block.me.isengard_banner": "Isengard Banner", - "block.me.misty_mountains_goblins_banner": "Misty Mountains Goblins Banner", - "block.me.mordor_banner": "Mordor Banner", - "block.me.banner.tree.black": "Black Tree", - "block.me.banner.tree.blue": "Blue Tree", - "block.me.banner.tree.brown": "Brown Tree", - "block.me.banner.tree.cyan": "Cyan Tree", - "block.me.banner.tree.gray": "Gray Tree", - "block.me.banner.tree.green": "Green Tree", - "block.me.banner.tree.light_blue": "Light Blue Tree", - "block.me.banner.tree.light_gray": "Light Gray Tree", - "block.me.banner.tree.lime": "Lime Tree", - "block.me.banner.tree.magenta": "Magenta Tree", - "block.me.banner.tree.orange": "Orange Tree", - "block.me.banner.tree.pink": "Pink Tree", - "block.me.banner.tree.purple": "Purple Tree", - "block.me.banner.tree.red": "Red Tree", - "block.me.banner.tree.white": "White Tree", - "block.me.banner.tree.yellow": "Yellow Tree", - "block.me.banner.horse.black": "Black Horse", - "block.me.banner.horse.blue": "Blue Horse", - "block.me.banner.horse.brown": "Brown Horse", - "block.me.banner.horse.cyan": "Cyan Horse", - "block.me.banner.horse.gray": "Gray Horse", - "block.me.banner.horse.green": "Green Horse", - "block.me.banner.horse.light_blue": "Light Blue Horse", - "block.me.banner.horse.light_gray": "Light Gray Horse", - "block.me.banner.horse.lime": "Lime Horse", - "block.me.banner.horse.magenta": "Magenta Horse", - "block.me.banner.horse.orange": "Orange Horse", - "block.me.banner.horse.pink": "Pink Horse", - "block.me.banner.horse.purple": "Purple Horse", - "block.me.banner.horse.red": "Red Horse", - "block.me.banner.horse.white": "White Horse", - "block.me.banner.horse.yellow": "Yellow Horse", - "block.me.banner.horse_head.black": "Black Horse Head", - "block.me.banner.horse_head.blue": "Blue Horse Head", - "block.me.banner.horse_head.brown": "Brown Horse Head", - "block.me.banner.horse_head.cyan": "Cyan Horse Head", - "block.me.banner.horse_head.gray": "Gray Horse Head", - "block.me.banner.horse_head.green": "Green Horse Head", - "block.me.banner.horse_head.light_blue": "Light Blue Horse Head", - "block.me.banner.horse_head.light_gray": "Light Gray Horse Head", - "block.me.banner.horse_head.lime": "Lime Horse Head", - "block.me.banner.horse_head.magenta": "Magenta Horse Head", - "block.me.banner.horse_head.orange": "Orange Horse Head", - "block.me.banner.horse_head.pink": "Pink Horse Head", - "block.me.banner.horse_head.purple": "Purple Horse Head", - "block.me.banner.horse_head.red": "Red Horse Head", - "block.me.banner.horse_head.white": "White Horse Head", - "block.me.banner.horse_head.yellow": "Yellow Horse Head", - "block.me.banner.goldenwood.black": "Black Goldenwood", - "block.me.banner.goldenwood.blue": "Blue Goldenwood", - "block.me.banner.goldenwood.brown": "Brown Goldenwood", - "block.me.banner.goldenwood.cyan": "Cyan Goldenwood", - "block.me.banner.goldenwood.gray": "Gray Goldenwood", - "block.me.banner.goldenwood.green": "Green Goldenwood", - "block.me.banner.goldenwood.light_blue": "Light Blue Goldenwood", - "block.me.banner.goldenwood.light_gray": "Light Gray Goldenwood", - "block.me.banner.goldenwood.lime": "Lime Goldenwood", - "block.me.banner.goldenwood.magenta": "Magenta Goldenwood", - "block.me.banner.goldenwood.orange": "Orange Goldenwood", - "block.me.banner.goldenwood.pink": "Pink Goldenwood", - "block.me.banner.goldenwood.purple": "Purple Goldenwood", - "block.me.banner.goldenwood.red": "Red Goldenwood", - "block.me.banner.goldenwood.white": "White Goldenwood", - "block.me.banner.goldenwood.yellow": "Yellow Goldenwood", - "block.me.banner.painted_eye.black": "Black Painted Eye Pattern", - "block.me.banner.painted_eye.blue": "Blue Painted Eye Pattern", - "block.me.banner.painted_eye.brown": "Brown Painted Eye Pattern", - "block.me.banner.painted_eye.cyan": "Cyan Painted Eye Pattern", - "block.me.banner.painted_eye.gray": "Gray Painted Eye Pattern", - "block.me.banner.painted_eye.green": "Green Painted Eye Pattern", - "block.me.banner.painted_eye.light_blue": "Light Blue Painted Eye Pattern", - "block.me.banner.painted_eye.light_gray": "Light Gray Painted Eye Pattern", - "block.me.banner.painted_eye.lime": "Lime Painted Eye Pattern", - "block.me.banner.painted_eye.magenta": "Magenta Painted Eye Pattern", - "block.me.banner.painted_eye.orange": "Orange Painted Eye Pattern", - "block.me.banner.painted_eye.pink": "Pink Painted Eye Pattern", - "block.me.banner.painted_eye.purple": "Purple Painted Eye Pattern", - "block.me.banner.painted_eye.red": "Red Painted Eye Pattern", - "block.me.banner.painted_eye.white": "White Painted Eye Pattern", - "block.me.banner.painted_eye.yellow": "Yellow Painted Eye Pattern", - "block.me.banner.eye_of_sauron.black": "Black Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.blue": "Blue Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.brown": "Brown Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.cyan": "Cyan Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.gray": "Gray Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.green": "Green Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.light_blue": "Light Blue Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.light_gray": "Light Gray Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.lime": "Lime Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.magenta": "Magenta Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.orange": "Orange Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.pink": "Pink Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.purple": "Purple Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.red": "Red Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.white": "White Eye Of Sauron Pattern", - "block.me.banner.eye_of_sauron.yellow": "Yellow Eye Of Sauron Pattern", - "block.me.banner.great_eye.black": "Black Great Eye Pattern", - "block.me.banner.great_eye.blue": "Blue Great Eye Pattern", - "block.me.banner.great_eye.brown": "Brown Great Eye Pattern", - "block.me.banner.great_eye.cyan": "Cyan Great Eye Pattern", - "block.me.banner.great_eye.gray": "Gray Great Eye Pattern", - "block.me.banner.great_eye.green": "Green Great Eye Pattern", - "block.me.banner.great_eye.light_blue": "Light Blue Great Eye Pattern", - "block.me.banner.great_eye.light_gray": "Light Gray Great Eye Pattern", - "block.me.banner.great_eye.lime": "Lime Great Eye Pattern", - "block.me.banner.great_eye.magenta": "Magenta Great Eye Pattern", - "block.me.banner.great_eye.orange": "Orange Great Eye Pattern", - "block.me.banner.great_eye.pink": "Pink Great Eye Pattern", - "block.me.banner.great_eye.purple": "Purple Great Eye Pattern", - "block.me.banner.great_eye.red": "Red Great Eye Pattern", - "block.me.banner.great_eye.white": "White Great Eye Pattern", - "block.me.banner.great_eye.yellow": "Yellow Great Eye Pattern", - "block.me.banner.evil_eye.black": "Black Evil Eye Pattern", - "block.me.banner.evil_eye.blue": "Blue Evil Eye Pattern", - "block.me.banner.evil_eye.brown": "Brown Evil Eye Pattern", - "block.me.banner.evil_eye.cyan": "Cyan Evil Eye Pattern", - "block.me.banner.evil_eye.gray": "Gray Evil Eye Pattern", - "block.me.banner.evil_eye.green": "Green Evil Eye Pattern", - "block.me.banner.evil_eye.light_blue": "Light Blue Evil Eye Pattern", - "block.me.banner.evil_eye.light_gray": "Light Gray Evil Eye Pattern", - "block.me.banner.evil_eye.lime": "Lime Evil Eye Pattern", - "block.me.banner.evil_eye.magenta": "Magenta Evil Eye Pattern", - "block.me.banner.evil_eye.orange": "Orange Evil Eye Pattern", - "block.me.banner.evil_eye.pink": "Pink Evil Eye Pattern", - "block.me.banner.evil_eye.purple": "Purple Evil Eye Pattern", - "block.me.banner.evil_eye.red": "Red Evil Eye Pattern", - "block.me.banner.evil_eye.white": "White Evil Eye Pattern", - "block.me.banner.evil_eye.yellow": "Yellow Evil Eye Pattern", - "block.me.banner.evil_peaks.black": "Black Evil Peaks Pattern", - "block.me.banner.evil_peaks.blue": "Blue Evil Peaks Pattern", - "block.me.banner.evil_peaks.brown": "Brown Evil Peaks Pattern", - "block.me.banner.evil_peaks.cyan": "Cyan Evil Peaks Pattern", - "block.me.banner.evil_peaks.gray": "Gray Evil Peaks Pattern", - "block.me.banner.evil_peaks.green": "Green Evil Peaks Pattern", - "block.me.banner.evil_peaks.light_blue": "Light Blue Evil Peaks Pattern", - "block.me.banner.evil_peaks.light_gray": "Light Gray Evil Peaks Pattern", - "block.me.banner.evil_peaks.lime": "Lime Evil Peaks Pattern", - "block.me.banner.evil_peaks.magenta": "Magenta Evil Peaks Pattern", - "block.me.banner.evil_peaks.orange": "Orange Evil Peaks Pattern", - "block.me.banner.evil_peaks.pink": "Pink Evil Peaks Pattern", - "block.me.banner.evil_peaks.purple": "Purple Evil Peaks Pattern", - "block.me.banner.evil_peaks.red": "Red Evil Peaks Pattern", - "block.me.banner.evil_peaks.white": "White Evil Peaks Pattern", - "block.me.banner.evil_peaks.yellow": "Yellow Evil Peaks Pattern", - "block.me.banner.hand.black": "Black Hand", - "block.me.banner.hand.blue": "Blue Hand", - "block.me.banner.hand.brown": "Brown Hand", - "block.me.banner.hand.cyan": "Cyan Hand", - "block.me.banner.hand.gray": "Gray Hand", - "block.me.banner.hand.green": "Green Hand", - "block.me.banner.hand.light_blue": "Light Blue Hand", - "block.me.banner.hand.light_gray": "Light Gray Hand", - "block.me.banner.hand.lime": "Lime Hand", - "block.me.banner.hand.magenta": "Magenta Hand", - "block.me.banner.hand.orange": "Orange Hand", - "block.me.banner.hand.pink": "Pink Hand", - "block.me.banner.hand.purple": "Purple Hand", - "block.me.banner.hand.red": "Red Hand", - "block.me.banner.hand.white": "White Hand", - "block.me.banner.hand.yellow": "Yellow Hand", - "block.me.banner.dragon.black": "Black Dragon", - "block.me.banner.dragon.blue": "Blue Dragon", - "block.me.banner.dragon.brown": "Brown Dragon", - "block.me.banner.dragon.cyan": "Cyan Dragon", - "block.me.banner.dragon.gray": "Gray Dragon", - "block.me.banner.dragon.green": "Green Dragon", - "block.me.banner.dragon.light_blue": "Light Blue Dragon", - "block.me.banner.dragon.light_gray": "Light Gray Dragon", - "block.me.banner.dragon.lime": "Lime Dragon", - "block.me.banner.dragon.magenta": "Magenta Dragon", - "block.me.banner.dragon.orange": "Orange Dragon", - "block.me.banner.dragon.pink": "Pink Dragon", - "block.me.banner.dragon.purple": "Purple Dragon", - "block.me.banner.dragon.red": "Red Dragon", - "block.me.banner.dragon.white": "White Dragon", - "block.me.banner.dragon.yellow": "Yellow Dragon", - "block.me.banner.pipe.black": "Black Pipe", - "block.me.banner.pipe.blue": "Blue Pipe", - "block.me.banner.pipe.brown": "Brown Pipe", - "block.me.banner.pipe.cyan": "Cyan Pipe", - "block.me.banner.pipe.gray": "Gray Pipe", - "block.me.banner.pipe.green": "Green Pipe", - "block.me.banner.pipe.light_blue": "Light Blue Pipe", - "block.me.banner.pipe.light_gray": "Light Gray Pipe", - "block.me.banner.pipe.lime": "Lime Pipe", - "block.me.banner.pipe.magenta": "Magenta Pipe", - "block.me.banner.pipe.orange": "Orange Pipe", - "block.me.banner.pipe.pink": "Pink Pipe", - "block.me.banner.pipe.purple": "Purple Pipe", - "block.me.banner.pipe.red": "Red Pipe", - "block.me.banner.pipe.white": "White Pipe", - "block.me.banner.pipe.yellow": "Yellow Pipe", - "block.me.banner.mallorn.black": "Black Mallorn", - "block.me.banner.mallorn.blue": "Blue Mallorn", - "block.me.banner.mallorn.brown": "Brown Mallorn", - "block.me.banner.mallorn.cyan": "Cyan Mallorn", - "block.me.banner.mallorn.gray": "Gray Mallorn", - "block.me.banner.mallorn.green": "Green Mallorn", - "block.me.banner.mallorn.light_blue": "Light Blue Mallorn", - "block.me.banner.mallorn.light_gray": "Light Gray Mallorn", - "block.me.banner.mallorn.lime": "Lime Mallorn", - "block.me.banner.mallorn.magenta": "Magenta Mallorn", - "block.me.banner.mallorn.orange": "Orange Mallorn", - "block.me.banner.mallorn.pink": "Pink Mallorn", - "block.me.banner.mallorn.purple": "Purple Mallorn", - "block.me.banner.mallorn.red": "Red Mallorn", - "block.me.banner.mallorn.white": "White Mallorn", - "block.me.banner.mallorn.yellow": "Yellow Mallorn", - "block.me.banner.star_and_leaf.black": "Black Star And Leaf", - "block.me.banner.star_and_leaf.blue": "Blue Star And Leaf", - "block.me.banner.star_and_leaf.brown": "Brown Star And Leaf", - "block.me.banner.star_and_leaf.cyan": "Cyan Star And Leaf", - "block.me.banner.star_and_leaf.gray": "Gray Star And Leaf", - "block.me.banner.star_and_leaf.green": "Green Star And Leaf", - "block.me.banner.star_and_leaf.light_blue": "Light Blue Star And Leaf", - "block.me.banner.star_and_leaf.light_gray": "Light Gray Star And Leaf", - "block.me.banner.star_and_leaf.lime": "Lime Star And Leaf", - "block.me.banner.star_and_leaf.magenta": "Magenta Star And Leaf", - "block.me.banner.star_and_leaf.orange": "Orange Star And Leaf", - "block.me.banner.star_and_leaf.pink": "Pink Star And Leaf", - "block.me.banner.star_and_leaf.purple": "Purple Star And Leaf", - "block.me.banner.star_and_leaf.red": "Red Star And Leaf", - "block.me.banner.star_and_leaf.white": "White Star And Leaf", - "block.me.banner.star_and_leaf.yellow": "Yellow Star And Leaf", - "block.me.banner.cloth.black": "Black Cloth", - "block.me.banner.cloth.blue": "Blue Cloth", - "block.me.banner.cloth.brown": "Brown Cloth", - "block.me.banner.cloth.cyan": "Cyan Cloth", - "block.me.banner.cloth.gray": "Gray Cloth", - "block.me.banner.cloth.green": "Green Cloth", - "block.me.banner.cloth.light_blue": "Light Blue Cloth", - "block.me.banner.cloth.light_gray": "Light Gray Cloth", - "block.me.banner.cloth.lime": "Lime Cloth", - "block.me.banner.cloth.magenta": "Magenta Cloth", - "block.me.banner.cloth.orange": "Orange Cloth", - "block.me.banner.cloth.pink": "Pink Cloth", - "block.me.banner.cloth.purple": "Purple Cloth", - "block.me.banner.cloth.red": "Red Cloth", - "block.me.banner.cloth.white": "White Cloth", - "block.me.banner.cloth.yellow": "Yellow Cloth", - "block.me.banner.cloth_gradient.black": "Black Cloth Gradient", - "block.me.banner.cloth_gradient.blue": "Blue Cloth Gradient", - "block.me.banner.cloth_gradient.brown": "Brown Cloth Gradient", - "block.me.banner.cloth_gradient.cyan": "Cyan Cloth Gradient", - "block.me.banner.cloth_gradient.gray": "Gray Cloth Gradient", - "block.me.banner.cloth_gradient.green": "Green Cloth Gradient", - "block.me.banner.cloth_gradient.light_blue": "Light Blue Cloth Gradient", - "block.me.banner.cloth_gradient.light_gray": "Light Gray Cloth Gradient", - "block.me.banner.cloth_gradient.lime": "Lime Cloth Gradient", - "block.me.banner.cloth_gradient.magenta": "Magenta Cloth Gradient", - "block.me.banner.cloth_gradient.orange": "Orange Cloth Gradient", - "block.me.banner.cloth_gradient.pink": "Pink Cloth Gradient", - "block.me.banner.cloth_gradient.purple": "Purple Cloth Gradient", - "block.me.banner.cloth_gradient.red": "Red Cloth Gradient", - "block.me.banner.cloth_gradient.white": "White Cloth Gradient", - "block.me.banner.cloth_gradient.yellow": "Yellow Cloth Gradient", - "block.me.banner.cloth_gradient_up.black": "Black Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.blue": "Blue Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.brown": "Brown Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.cyan": "Cyan Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.gray": "Gray Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.green": "Green Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.light_blue": "Light Blue Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.light_gray": "Light Gray Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.lime": "Lime Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.magenta": "Magenta Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.orange": "Orange Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.pink": "Pink Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.purple": "Purple Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.red": "Red Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.white": "White Cloth Gradient Up", - "block.me.banner.cloth_gradient_up.yellow": "Yellow Cloth Gradient Up", - "block.me.banner.veil.black": "Black Veil", - "block.me.banner.veil.blue": "Blue Veil", - "block.me.banner.veil.brown": "Brown Veil", - "block.me.banner.veil.cyan": "Cyan Veil", - "block.me.banner.veil.gray": "Gray Veil", - "block.me.banner.veil.green": "Green Veil", - "block.me.banner.veil.light_blue": "Light Blue Veil", - "block.me.banner.veil.light_gray": "Light Gray Veil", - "block.me.banner.veil.lime": "Lime Veil", - "block.me.banner.veil.magenta": "Magenta Veil", - "block.me.banner.veil.orange": "Orange Veil", - "block.me.banner.veil.pink": "Pink Veil", - "block.me.banner.veil.purple": "Purple Veil", - "block.me.banner.veil.red": "Red Veil", - "block.me.banner.veil.white": "White Veil", - "block.me.banner.veil.yellow": "Yellow Veil", - "block.me.banner.anvil.black": "Black Anvil", - "block.me.banner.anvil.blue": "Blue Anvil", - "block.me.banner.anvil.brown": "Brown Anvil", - "block.me.banner.anvil.cyan": "Cyan Anvil", - "block.me.banner.anvil.gray": "Gray Anvil", - "block.me.banner.anvil.green": "Green Anvil", - "block.me.banner.anvil.light_blue": "Light Blue Anvil", - "block.me.banner.anvil.light_gray": "Light Gray Anvil", - "block.me.banner.anvil.lime": "Lime Anvil", - "block.me.banner.anvil.magenta": "Magenta Anvil", - "block.me.banner.anvil.orange": "Orange Anvil", - "block.me.banner.anvil.pink": "Pink Anvil", - "block.me.banner.anvil.purple": "Purple Anvil", - "block.me.banner.anvil.red": "Red Anvil", - "block.me.banner.anvil.white": "White Anvil", - "block.me.banner.anvil.yellow": "Yellow Anvil", - "block.me.banner.anvil_bottom.black": "Black Anvil Bottom", - "block.me.banner.anvil_bottom.blue": "Blue Anvil Bottom", - "block.me.banner.anvil_bottom.brown": "Brown Anvil Bottom", - "block.me.banner.anvil_bottom.cyan": "Cyan Anvil Bottom", - "block.me.banner.anvil_bottom.gray": "Gray Anvil Bottom", - "block.me.banner.anvil_bottom.green": "Green Anvil Bottom", - "block.me.banner.anvil_bottom.light_blue": "Light Blue Anvil Bottom", - "block.me.banner.anvil_bottom.light_gray": "Light Gray Anvil Bottom", - "block.me.banner.anvil_bottom.lime": "Lime Anvil Bottom", - "block.me.banner.anvil_bottom.magenta": "Magenta Anvil Bottom", - "block.me.banner.anvil_bottom.orange": "Orange Anvil Bottom", - "block.me.banner.anvil_bottom.pink": "Pink Anvil Bottom", - "block.me.banner.anvil_bottom.purple": "Purple Anvil Bottom", - "block.me.banner.anvil_bottom.red": "Red Anvil Bottom", - "block.me.banner.anvil_bottom.white": "White Anvil Bottom", - "block.me.banner.anvil_bottom.yellow": "Yellow Anvil Bottom", - "block.me.banner.anvil_hammer.black": "Black Anvil Hammer", - "block.me.banner.anvil_hammer.blue": "Blue Anvil Hammer", - "block.me.banner.anvil_hammer.brown": "Brown Anvil Hammer", - "block.me.banner.anvil_hammer.cyan": "Cyan Anvil Hammer", - "block.me.banner.anvil_hammer.gray": "Gray Anvil Hammer", - "block.me.banner.anvil_hammer.green": "Green Anvil Hammer", - "block.me.banner.anvil_hammer.light_blue": "Light Blue Anvil Hammer", - "block.me.banner.anvil_hammer.light_gray": "Light Gray Anvil Hammer", - "block.me.banner.anvil_hammer.lime": "Lime Anvil Hammer", - "block.me.banner.anvil_hammer.magenta": "Magenta Anvil Hammer", - "block.me.banner.anvil_hammer.orange": "Orange Anvil Hammer", - "block.me.banner.anvil_hammer.pink": "Pink Anvil Hammer", - "block.me.banner.anvil_hammer.purple": "Purple Anvil Hammer", - "block.me.banner.anvil_hammer.red": "Red Anvil Hammer", - "block.me.banner.anvil_hammer.white": "White Anvil Hammer", - "block.me.banner.anvil_hammer.yellow": "Yellow Anvil Hammer", - "block.me.banner.anvil_hammer_bottom.black": "Black Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.blue": "Blue Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.brown": "Brown Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.cyan": "Cyan Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.gray": "Gray Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.green": "Green Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.light_blue": "Light Blue Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.light_gray": "Light Gray Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.lime": "Lime Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.magenta": "Magenta Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.orange": "Orange Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.pink": "Pink Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.purple": "Purple Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.red": "Red Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.white": "White Anvil Hammer Bottom", - "block.me.banner.anvil_hammer_bottom.yellow": "Yellow Anvil Hammer Bottom", - "block.me.banner.anvil_top.black": "Black Anvil Top", - "block.me.banner.anvil_top.blue": "Blue Anvil Top", - "block.me.banner.anvil_top.brown": "Brown Anvil Top", - "block.me.banner.anvil_top.cyan": "Cyan Anvil Top", - "block.me.banner.anvil_top.gray": "Gray Anvil Top", - "block.me.banner.anvil_top.green": "Green Anvil Top", - "block.me.banner.anvil_top.light_blue": "Light Blue Anvil Top", - "block.me.banner.anvil_top.light_gray": "Light Gray Anvil Top", - "block.me.banner.anvil_top.lime": "Lime Anvil Top", - "block.me.banner.anvil_top.magenta": "Magenta Anvil Top", - "block.me.banner.anvil_top.orange": "Orange Anvil Top", - "block.me.banner.anvil_top.pink": "Pink Anvil Top", - "block.me.banner.anvil_top.purple": "Purple Anvil Top", - "block.me.banner.anvil_top.red": "Red Anvil Top", - "block.me.banner.anvil_top.white": "White Anvil Top", - "block.me.banner.anvil_top.yellow": "Yellow Anvil Top", - "block.me.banner.anvil_hammer_top.black": "Black Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.blue": "Blue Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.brown": "Brown Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.cyan": "Cyan Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.gray": "Gray Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.green": "Green Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.light_blue": "Light Blue Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.light_gray": "Light Gray Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.lime": "Lime Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.magenta": "Magenta Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.orange": "Orange Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.pink": "Pink Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.purple": "Purple Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.red": "Red Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.white": "White Anvil Hammer Top", - "block.me.banner.anvil_hammer_top.yellow": "Yellow Anvil Hammer Top", - "block.me.banner.bell.black": "Black Bell", - "block.me.banner.bell.blue": "Blue Bell", - "block.me.banner.bell.brown": "Brown Bell", - "block.me.banner.bell.cyan": "Cyan Bell", - "block.me.banner.bell.gray": "Gray Bell", - "block.me.banner.bell.green": "Green Bell", - "block.me.banner.bell.light_blue": "Light Blue Bell", - "block.me.banner.bell.light_gray": "Light Gray Bell", - "block.me.banner.bell.lime": "Lime Bell", - "block.me.banner.bell.magenta": "Magenta Bell", - "block.me.banner.bell.orange": "Orange Bell", - "block.me.banner.bell.pink": "Pink Bell", - "block.me.banner.bell.purple": "Purple Bell", - "block.me.banner.bell.red": "Red Bell", - "block.me.banner.bell.white": "White Bell", - "block.me.banner.bell.yellow": "Yellow Bell", - "block.me.banner.bell_top.black": "Black Bell Top", - "block.me.banner.bell_top.blue": "Blue Bell Top", - "block.me.banner.bell_top.brown": "Brown Bell Top", - "block.me.banner.bell_top.cyan": "Cyan Bell Top", - "block.me.banner.bell_top.gray": "Gray Bell Top", - "block.me.banner.bell_top.green": "Green Bell Top", - "block.me.banner.bell_top.light_blue": "Light Blue Bell Top", - "block.me.banner.bell_top.light_gray": "Light Gray Bell Top", - "block.me.banner.bell_top.lime": "Lime Bell Top", - "block.me.banner.bell_top.magenta": "Magenta Bell Top", - "block.me.banner.bell_top.orange": "Orange Bell Top", - "block.me.banner.bell_top.pink": "Pink Bell Top", - "block.me.banner.bell_top.purple": "Purple Bell Top", - "block.me.banner.bell_top.red": "Red Bell Top", - "block.me.banner.bell_top.white": "White Bell Top", - "block.me.banner.bell_top.yellow": "Yellow Bell Top", - "block.me.banner.bell_bottom.black": "Black Bell Bottom", - "block.me.banner.bell_bottom.blue": "Blue Bell Bottom", - "block.me.banner.bell_bottom.brown": "Brown Bell Bottom", - "block.me.banner.bell_bottom.cyan": "Cyan Bell Bottom", - "block.me.banner.bell_bottom.gray": "Gray Bell Bottom", - "block.me.banner.bell_bottom.green": "Green Bell Bottom", - "block.me.banner.bell_bottom.light_blue": "Light Blue Bell Bottom", - "block.me.banner.bell_bottom.light_gray": "Light Gray Bell Bottom", - "block.me.banner.bell_bottom.lime": "Lime Bell Bottom", - "block.me.banner.bell_bottom.magenta": "Magenta Bell Bottom", - "block.me.banner.bell_bottom.orange": "Orange Bell Bottom", - "block.me.banner.bell_bottom.pink": "Pink Bell Bottom", - "block.me.banner.bell_bottom.purple": "Purple Bell Bottom", - "block.me.banner.bell_bottom.red": "Red Bell Bottom", - "block.me.banner.bell_bottom.white": "White Bell Bottom", - "block.me.banner.bell_bottom.yellow": "Yellow Bell Bottom", - "block.me.banner.dwarf_crown.black": "Black Dwarf Crown", - "block.me.banner.dwarf_crown.blue": "Blue Dwarf Crown", - "block.me.banner.dwarf_crown.brown": "Brown Dwarf Crown", - "block.me.banner.dwarf_crown.cyan": "Cyan Dwarf Crown", - "block.me.banner.dwarf_crown.gray": "Gray Dwarf Crown", - "block.me.banner.dwarf_crown.green": "Green Dwarf Crown", - "block.me.banner.dwarf_crown.light_blue": "Light Blue Dwarf Crown", - "block.me.banner.dwarf_crown.light_gray": "Light Gray Dwarf Crown", - "block.me.banner.dwarf_crown.lime": "Lime Dwarf Crown", - "block.me.banner.dwarf_crown.magenta": "Magenta Dwarf Crown", - "block.me.banner.dwarf_crown.orange": "Orange Dwarf Crown", - "block.me.banner.dwarf_crown.pink": "Pink Dwarf Crown", - "block.me.banner.dwarf_crown.purple": "Purple Dwarf Crown", - "block.me.banner.dwarf_crown.red": "Red Dwarf Crown", - "block.me.banner.dwarf_crown.white": "White Dwarf Crown", - "block.me.banner.dwarf_crown.yellow": "Yellow Dwarf Crown", - "block.me.banner.dwarf_crown_top.black": "Black Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.blue": "Blue Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.brown": "Brown Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.cyan": "Cyan Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.gray": "Gray Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.green": "Green Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.light_blue": "Light Blue Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.light_gray": "Light Gray Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.lime": "Lime Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.magenta": "Magenta Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.orange": "Orange Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.pink": "Pink Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.purple": "Purple Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.red": "Red Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.white": "White Dwarf Crown Top", - "block.me.banner.dwarf_crown_top.yellow": "Yellow Dwarf Crown Top", - "block.me.banner.dwarf_crown_bottom.black": "Black Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.blue": "Blue Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.brown": "Brown Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.cyan": "Cyan Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.gray": "Gray Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.green": "Green Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.light_blue": "Light Blue Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.light_gray": "Light Gray Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.lime": "Lime Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.magenta": "Magenta Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.orange": "Orange Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.pink": "Pink Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.purple": "Purple Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.red": "Red Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.white": "White Dwarf Crown Bottom", - "block.me.banner.dwarf_crown_bottom.yellow": "Yellow Dwarf Crown Bottom", - "block.me.banner.bow.black": "Black Bow", - "block.me.banner.bow.blue": "Blue Bow", - "block.me.banner.bow.brown": "Brown Bow", - "block.me.banner.bow.cyan": "Cyan Bow", - "block.me.banner.bow.gray": "Gray Bow", - "block.me.banner.bow.green": "Green Bow", - "block.me.banner.bow.light_blue": "Light Blue Bow", - "block.me.banner.bow.light_gray": "Light Gray Bow", - "block.me.banner.bow.lime": "Lime Bow", - "block.me.banner.bow.magenta": "Magenta Bow", - "block.me.banner.bow.orange": "Orange Bow", - "block.me.banner.bow.pink": "Pink Bow", - "block.me.banner.bow.purple": "Purple Bow", - "block.me.banner.bow.red": "Red Bow", - "block.me.banner.bow.white": "White Bow", - "block.me.banner.bow.yellow": "Yellow Bow", - "block.me.banner.bow_down.black": "Black Bow Down", - "block.me.banner.bow_down.blue": "Blue Bow Down", - "block.me.banner.bow_down.brown": "Brown Bow Down", - "block.me.banner.bow_down.cyan": "Cyan Bow Down", - "block.me.banner.bow_down.gray": "Gray Bow Down", - "block.me.banner.bow_down.green": "Green Bow Down", - "block.me.banner.bow_down.light_blue": "Light Blue Bow Down", - "block.me.banner.bow_down.light_gray": "Light Gray Bow Down", - "block.me.banner.bow_down.lime": "Lime Bow Down", - "block.me.banner.bow_down.magenta": "Magenta Bow Down", - "block.me.banner.bow_down.orange": "Orange Bow Down", - "block.me.banner.bow_down.pink": "Pink Bow Down", - "block.me.banner.bow_down.purple": "Purple Bow Down", - "block.me.banner.bow_down.red": "Red Bow Down", - "block.me.banner.bow_down.white": "White Bow Down", - "block.me.banner.bow_down.yellow": "Yellow Bow Down", - "block.me.banner.bow_flat_bottom.black": "Black Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.blue": "Blue Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.brown": "Brown Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.cyan": "Cyan Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.gray": "Gray Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.green": "Green Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.light_blue": "Light Blue Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.light_gray": "Light Gray Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.lime": "Lime Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.magenta": "Magenta Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.orange": "Orange Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.pink": "Pink Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.purple": "Purple Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.red": "Red Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.white": "White Bow Flat Bottom", - "block.me.banner.bow_flat_bottom.yellow": "Yellow Bow Flat Bottom", - "block.me.banner.bow_flat_center.black": "Black Bow Flat Center", - "block.me.banner.bow_flat_center.blue": "Blue Bow Flat Center", - "block.me.banner.bow_flat_center.brown": "Brown Bow Flat Center", - "block.me.banner.bow_flat_center.cyan": "Cyan Bow Flat Center", - "block.me.banner.bow_flat_center.gray": "Gray Bow Flat Center", - "block.me.banner.bow_flat_center.green": "Green Bow Flat Center", - "block.me.banner.bow_flat_center.light_blue": "Light Blue Bow Flat Center", - "block.me.banner.bow_flat_center.light_gray": "Light Gray Bow Flat Center", - "block.me.banner.bow_flat_center.lime": "Lime Bow Flat Center", - "block.me.banner.bow_flat_center.magenta": "Magenta Bow Flat Center", - "block.me.banner.bow_flat_center.orange": "Orange Bow Flat Center", - "block.me.banner.bow_flat_center.pink": "Pink Bow Flat Center", - "block.me.banner.bow_flat_center.purple": "Purple Bow Flat Center", - "block.me.banner.bow_flat_center.red": "Red Bow Flat Center", - "block.me.banner.bow_flat_center.white": "White Bow Flat Center", - "block.me.banner.bow_flat_center.yellow": "Yellow Bow Flat Center", - "block.me.banner.bow_flat_top.black": "Black Bow Flat Top", - "block.me.banner.bow_flat_top.blue": "Blue Bow Flat Top", - "block.me.banner.bow_flat_top.brown": "Brown Bow Flat Top", - "block.me.banner.bow_flat_top.cyan": "Cyan Bow Flat Top", - "block.me.banner.bow_flat_top.gray": "Gray Bow Flat Top", - "block.me.banner.bow_flat_top.green": "Green Bow Flat Top", - "block.me.banner.bow_flat_top.light_blue": "Light Blue Bow Flat Top", - "block.me.banner.bow_flat_top.light_gray": "Light Gray Bow Flat Top", - "block.me.banner.bow_flat_top.lime": "Lime Bow Flat Top", - "block.me.banner.bow_flat_top.magenta": "Magenta Bow Flat Top", - "block.me.banner.bow_flat_top.orange": "Orange Bow Flat Top", - "block.me.banner.bow_flat_top.pink": "Pink Bow Flat Top", - "block.me.banner.bow_flat_top.purple": "Purple Bow Flat Top", - "block.me.banner.bow_flat_top.red": "Red Bow Flat Top", - "block.me.banner.bow_flat_top.white": "White Bow Flat Top", - "block.me.banner.bow_flat_top.yellow": "Yellow Bow Flat Top", - "block.me.banner.bow_long.black": "Black Bow Long", - "block.me.banner.bow_long.blue": "Blue Bow Long", - "block.me.banner.bow_long.brown": "Brown Bow Long", - "block.me.banner.bow_long.cyan": "Cyan Bow Long", - "block.me.banner.bow_long.gray": "Gray Bow Long", - "block.me.banner.bow_long.green": "Green Bow Long", - "block.me.banner.bow_long.light_blue": "Light Blue Bow Long", - "block.me.banner.bow_long.light_gray": "Light Gray Bow Long", - "block.me.banner.bow_long.lime": "Lime Bow Long", - "block.me.banner.bow_long.magenta": "Magenta Bow Long", - "block.me.banner.bow_long.orange": "Orange Bow Long", - "block.me.banner.bow_long.pink": "Pink Bow Long", - "block.me.banner.bow_long.purple": "Purple Bow Long", - "block.me.banner.bow_long.red": "Red Bow Long", - "block.me.banner.bow_long.white": "White Bow Long", - "block.me.banner.bow_long.yellow": "Yellow Bow Long", - "block.me.banner.bow_up.black": "Black Bow Up", - "block.me.banner.bow_up.blue": "Blue Bow Up", - "block.me.banner.bow_up.brown": "Brown Bow Up", - "block.me.banner.bow_up.cyan": "Cyan Bow Up", - "block.me.banner.bow_up.gray": "Gray Bow Up", - "block.me.banner.bow_up.green": "Green Bow Up", - "block.me.banner.bow_up.light_blue": "Light Blue Bow Up", - "block.me.banner.bow_up.light_gray": "Light Gray Bow Up", - "block.me.banner.bow_up.lime": "Lime Bow Up", - "block.me.banner.bow_up.magenta": "Magenta Bow Up", - "block.me.banner.bow_up.orange": "Orange Bow Up", - "block.me.banner.bow_up.pink": "Pink Bow Up", - "block.me.banner.bow_up.purple": "Purple Bow Up", - "block.me.banner.bow_up.red": "Red Bow Up", - "block.me.banner.bow_up.white": "White Bow Up", - "block.me.banner.bow_up.yellow": "Yellow Bow Up", - "block.me.banner.small_circle.black": "Black Small Circle", - "block.me.banner.small_circle.blue": "Blue Small Circle", - "block.me.banner.small_circle.brown": "Brown Small Circle", - "block.me.banner.small_circle.cyan": "Cyan Small Circle", - "block.me.banner.small_circle.gray": "Gray Small Circle", - "block.me.banner.small_circle.green": "Green Small Circle", - "block.me.banner.small_circle.light_blue": "Light Blue Small Circle", - "block.me.banner.small_circle.light_gray": "Light Gray Small Circle", - "block.me.banner.small_circle.lime": "Lime Small Circle", - "block.me.banner.small_circle.magenta": "Magenta Small Circle", - "block.me.banner.small_circle.orange": "Orange Small Circle", - "block.me.banner.small_circle.pink": "Pink Small Circle", - "block.me.banner.small_circle.purple": "Purple Small Circle", - "block.me.banner.small_circle.red": "Red Small Circle", - "block.me.banner.small_circle.white": "White Small Circle", - "block.me.banner.small_circle.yellow": "Yellow Small Circle", - "block.me.banner.snail.black": "Black Snail", - "block.me.banner.snail.blue": "Blue Snail", - "block.me.banner.snail.brown": "Brown Snail", - "block.me.banner.snail.cyan": "Cyan Snail", - "block.me.banner.snail.gray": "Gray Snail", - "block.me.banner.snail.green": "Green Snail", - "block.me.banner.snail.light_blue": "Light Blue Snail", - "block.me.banner.snail.light_gray": "Light Gray Snail", - "block.me.banner.snail.lime": "Lime Snail", - "block.me.banner.snail.magenta": "Magenta Snail", - "block.me.banner.snail.orange": "Orange Snail", - "block.me.banner.snail.pink": "Pink Snail", - "block.me.banner.snail.purple": "Purple Snail", - "block.me.banner.snail.red": "Red Snail", - "block.me.banner.snail.white": "White Snail", - "block.me.banner.snail.yellow": "Yellow Snail", - "sounds.me.bellows_push": "Bellows blowing", - "sounds.me.nazgul_fade": "Nazgûl fading", - "sounds.me.nazgul_scream": "Nazgûl screaming", - "sounds.me.pipe_refill": "Pipe refills", - "sounds.me.pipe_exhale": "Pipe exhales", - "sounds.me.pipe_ignite": "Pipe ignites", - "screen.me.forge": "Forge", - "container.me.artisan_table": "Artisan Table", - "container.me.small_crate": "Small Crate", - "container.me.thin_barrel": "Thin Barrel", - "screen.me.reinforced_chest": "Reinforced Chest", - "screen.me.wood_pile": "Tas de bois", - "screen.me.shaping_anvil": "Shaping Anvil", - "screen.me.artisan_table.weapons": "Weapons", - "screen.me.artisan_table.sword": "Sword", - "screen.me.artisan_table.axe": "Axe", - "screen.me.artisan_table.spear": "Spear", - "screen.me.artisan_table.bow": "Bow", - "screen.me.artisan_table.crossbow": "Crossbow", - "screen.me.artisan_table.tools": "Tools", - "screen.me.artisan_table.pickaxe": "Pickaxe", - "screen.me.artisan_table.shovel": "Shovel", - "screen.me.artisan_table.hoe": "Hoe", - "screen.me.artisan_table.armors": "Armors", - "screen.me.artisan_table.helmet": "Helmet", - "screen.me.artisan_table.chestplate": "Chestplate", - "screen.me.artisan_table.leggings": "Leggings", - "screen.me.artisan_table.boots": "Boots", - "screen.me.artisan_table.mount_armor": "Mount Armor", - "screen.me.artisan_table.shields": "Shields", - "screen.me.artisan_table.light_shield": "Light Shield", - "screen.me.artisan_table.medium_shield": "Medium Shield", - "screen.me.artisan_table.heavy_shield": "Heavy Shield", - "screen.me.artisan_table.misc": "Misc", - "screen.me.artisan_table.hat": "Hat", - "screen.me.artisan_table.hood": "Hood", - "screen.me.artisan_table.cape": "Cape", - "screen.me.artisan_table.pipe": "Pipe", - "tooltip.me.shift": "Maintenez §3SHIFT§f pour voir les informations.", - "tooltip.me.alt": "Maintenez §3ALT§f pour voir les informations sur les pièces personnalisées.", - "tooltip.me.weapon_type": "§eType: §f", - "tooltip.me.faction": "§6Faction : §f", - "tooltip.me.sub_faction": "§7Sous-faction : §f", - "tooltip.me.customizations": "§7Pièces personnalisées : §f", - "tooltip.me.reach": "Portée: ", - "tooltip.me.dyed": "Dyed: ", - "tooltip.me.artisan": "Artisan: ", - "tooltip.me.blocks_range": " Blocs", - "tooltip.me.backstab": "§7+50% damage when backstabbing", - "tooltip.me.door_size": "Door size: ", - "tooltip.me.tier_clothing": "§fClothing", - "tooltip.me.tier_basic": "§fBasic Armor", - "tooltip.me.tier_light": "§aLight Armor", - "tooltip.me.tier_medium": "§9Medium Armor", - "tooltip.me.tier_sturdy": "§5Sturdy Armor", - "tooltip.me.tier_heavy": "§cHeavy Armor", - "tooltip.me.tier_mithril": "§bMithril", - "tooltip.me.artefact": "Artefact", - "tooltip.me.broken": "Broken", - "tooltip.me.sword": "Sword", - "tooltip.me.axe": "Axe", - "tooltip.me.dagger": "Dagger", - "tooltip.me.spear": "Spear", - "tooltip.me.longsword": "Longsword", - "tooltip.me.bow": "Bow", - "tooltip.me.longbow": "Longbow", - "tooltip.me.crossbow": "Crossbow", - "tooltip.me.light_shield": "§fLight Shield", - "tooltip.me.medium_shield": "§9Medium Shield", - "tooltip.me.heavy_shield": "§cHeavy Shield", - "tooltip.me.generic": "Générique", - "tooltip.me.dwarven": "Dwarven", - "tooltip.me.elven": "Elf", - "tooltip.me.orc": "Orc", - "tooltip.me.shire": "Comté", - "tooltip.me.gondor": "Gondor", - "tooltip.me.rohan": "Rohan", - "tooltip.me.longbeards": "Longue-Barbes", - "tooltip.me.erebor": "Erebor", - "tooltip.me.lothlorien": "Lothlórien", - "tooltip.me.mordor": "Mordor", - "tooltip.me.mordor_black_numenoreans": "Mordor Black Númenóreans", - "tooltip.me.misty_mountains_goblins": "Misty Mountains Goblins", - "tooltip.me.gundabad": "Gundabad", - "tooltip.me.moria_goblins": "Gobelins de la Moria", - "tooltip.me.isengard": "Isengard", - "tooltip.me.anduin": "Val d'Anduin", - "tooltip.me.umbar": "Umbar", - "tooltip.me.dunland": "Dunlande", - "tooltip.me.dale": "Le Val", - "tooltip.me.color": "Color", - "tooltip.me.impaled_skulls": "Crânes empalés", - "tooltip.me.skull": "Crâne", - "tooltip.me.pouch": "Pochette", - "tooltip.me.feather": "Plume", - "tooltip.me.mount_armor_addon_top": "Top Armor Addon: Enabled", - "tooltip.me.mount_armor_addon_side": "Side Armor Addon: Enabled", - "tooltip.me.forge_output_mode0": "Not enough Metal.", - "tooltip.me.forge_output_mode1": "1 Nugget", - "tooltip.me.forge_output_mode2": "1 Ingot", - "tooltip.me.forge_output_mode3": "2 Ingots", - "tooltip.me.forge_output_mode4": "3 Ingots", - "tooltip.me.anvil_hammer": "Left click the anvil with a", - "tooltip.me.anvil_hammer_2": "Smithing Hammer to shape the metal.", - "tooltip.me.forge_mode_alloying": "Alloying Mode", - "tooltip.me.forge_mode_heating": "Heating Mode", - "tooltip.me.forge_mode_heating_switch": "To go into alloying mode, add bellows to the", - "tooltip.me.forge_mode_heating_switch_2": "sides of the forge containing a small vent.", - "tooltip.me.ingots_number": "Ingots", - "tooltip.me.nuggets_number": "Nuggets", - "tooltip.me.liquid_copper": "Liquid Copper", - "tooltip.me.liquid_tin": "Liquid Tin", - "tooltip.me.liquid_lead": "Liquid Lead", - "tooltip.me.liquid_silver": "Liquid Silver", - "tooltip.me.liquid_iron": "Liquid Iron", - "tooltip.me.liquid_gold": "Liquid Gold", - "tooltip.me.liquid_mithril": "Liquid Mithril", - "tooltip.me.liquid_netherite": "Liquid Netherite", - "tooltip.me.liquid_bronze": "Liquid Bronze", - "tooltip.me.liquid_crude": "Liquid Crude Metal", - "tooltip.me.liquid_steel": "Liquid Steel", - "tooltip.me.liquid_khazad_steel": "Liquid Khazâd-Steel", - "tooltip.me.liquid_edhel_steel": "Liquid Edhel-Steel", - "tooltip.me.liquid_burzum_steel": "Liquid Búrzum-Steel", - "tooltip.me.temp_1": "Warm", - "tooltip.me.temp_2": "Hot", - "tooltip.me.temp_3": "Very Hot", - "tooltip.me.temp_4": "Searing Hot", - "tooltip.me.temp_5": "Blazing Hot", - "trim_pattern.me.smithing_part": "Smithing Part", - "trim_material.me.jade": "Jade", - "trim_material.me.tin": "Tin", - "trim_material.me.lead": "Lead", - "trim_material.me.silver": "silver", - "trim_material.me.bronze": "Bronze", - "trim_material.me.steel": "Steel", - "trim_material.me.crude": "Crude", - "trim_material.me.burzum_steel": "Búrzum-Steel", - "trim_material.me.edhel_steel": "Edhel-Steel", - "trim_material.me.khazad_steel": "Khazâd-Steel", - "trim_material.me.morgul_steel": "Morgul Steel", - "trim_material.me.mithril": "Mithril", - "tooltip.me.hood": "Capuche", - "tooltip.me.tall_hood": "Tall Hood", - "tooltip.me.black_fur_hood": "Black Fur Hood", - "tooltip.me.brown_fur_hood": "Brown Fur Hood", - "tooltip.me.gray_fur_hood": "Gray Fur Hood", - "tooltip.me.tan_fur_hood": "Tan Fur Hood", - "tooltip.me.white_fur_hood": "White Fur Hood", - "tooltip.me.cape": "Cape", - "tooltip.me.black_fur_cloak": "Black Fur Cloak", - "tooltip.me.brown_fur_cloak": "Brown Fur Cloak", - "tooltip.me.gray_fur_cloak": "Gray Fur Cloak", - "tooltip.me.tan_fur_cloak": "Tan Fur Cloak", - "tooltip.me.white_fur_cloak": "White Fur Cloak", - "tooltip.me.black_fur": "Black Fur", - "tooltip.me.brown_fur": "Brown Fur", - "tooltip.me.gray_fur": "Gray Fur", - "tooltip.me.tan_fur": "Tan Fur", - "tooltip.me.white_fur": "White Fur", - "tooltip.me.cloak": "Cloak", - "tooltip.me.surcoat": "Surcoat", - "tooltip.me.wanderer_robes": "Wanderer Robes", - "tooltip.me.gondorian_captain_cape": "Gondorian Captain Cape", - "tooltip.me.gondorian_hero_cape": "Gondorian Hero Cape", - "tooltip.me.gondorian_kings_guard_cape": "Gondorian King's Guard Cape", - "tooltip.me.gondorian_citadel_guard_hood": "Gondorian Citadel Guard Hood", - "tooltip.me.gondorian_citadel_guard_cape": "Gondorian Citadel Guard Cape", - "tooltip.me.gondorian_fountain_guard_cape": "Gondorian Fountain Guard Cape", - "tooltip.me.rohirric_cape": "Rohirric Cape", - "tooltip.me.rohirric_royal_guard_cape": "Rohirric Royal Guard Cape", - "tooltip.me.eorling_marshal_cape": "Eorling Marshal Cape", - "tooltip.me.horse_lord_cape": "Horse Lord Cape", - "tooltip.me.barding_surcoat": "Barding Surcoat", - "tooltip.me.dalish_heyday_cloak": "Dalish Heyday Cloak", - "tooltip.me.barding_sergeant_cape": "Barding Sergeant Cape", - "tooltip.me.erebor_cape": "Erebor Cape", - "tooltip.me.ravenhill_sentinel_cape": "Ravenhill Sentinel Cape", - "tooltip.me.lorien_marchwarden_hood": "Lórien Marchwarden Hood", - "tooltip.me.lorien_marchwarden_cape": "Lórien Marchwarden Cape", - "tooltip.me.galadhrim_cape": "Galadhrim Cape", - "tooltip.me.galadhrim_hood": "Galadhrim Hood", - "tooltip.me.galadhrim_lord_surcoat": "Galadhrim Lord Surcoat", - "tooltip.me.orcish_cape": "Orcish Cape", - "tooltip.me.orcish_long_cape": "Orcish Long Cape", - "tooltip.me.orcish_shoulders": "Orcish Shoulders", - "tooltip.me.orcish_black_fur_surcoat_with_bone": "Orcish Black Fur Surcoat With Bone", - "tooltip.me.orcish_brown_fur_surcoat_with_bone": "Orcish Brown Fur Surcoat With Bone", - "tooltip.me.orcish_gray_fur_surcoat_with_bone": "Orcish Gray Fur Surcoat With Bone", - "tooltip.me.orcish_tan_fur_surcoat_with_bone": "Orcish Tan Fur Surcoat With Bone", - "tooltip.me.orcish_white_fur_surcoat_with_bone": "Orcish White Fur Surcoat With Bone", - "tooltip.me.nazgul_hood": "Nazgûl Hood", - "tooltip.me.mordor_black_numenorean_cape": "Mordor Black Númenórean Cape", - "tooltip.me.nazgul_robes": "Nazgûl Robes", - "tooltip.me.orthanc_guard_cape": "Orthanc Guard Cape", - "disposition.me.good": "Good", - "disposition.me.neutral": "Neutral", - "disposition.me.evil": "Evil", - "faction.me.gondor": "Gondor", - "faction.me.rohan": "Rohan", - "faction.me.dale": "Dale", - "faction.me.longbeards": "Longbeards", - "faction.me.longbeards.erebor": "Erebor", - "faction.me.lothlorien": "Lothlórien", - "faction.me.mordor": "Mordor", - "faction.me.misty_mountains_goblins": "Misty Mountains Goblins", - "faction.me.isengard": "Isengard", - "faction.me.shire": "Shire", - "faction.me.bandit": "Bandit", - "faction.me.example.fallback": "Example...", - "faction.me.misty_mountains_goblins.fallback": "Misty Mts. Goblins", - "spawn.me.coordinates_base.dynamic": "[x,z] ", - "spawn.me.coordinates_base_values.dynamic": "%s, %s", - "spawn.me.coordinates_base.custom": "[x,y,z] ", - "spawn.me.coordinates_base_values.custom": "%s, %s, %s", - "spawn.me.none": "None", - "spawn.me.gondor.minas_tirith": "Minas Tirith", - "spawn.me.gondor.anorien": "Anorien", - "spawn.me.gondor.ithilien": "Ithilien", - "spawn.me.gondor.lossarnach": "Lossarnach", - "spawn.me.gondor.pelargir": "Pelargir", - "spawn.me.gondor.lebennin": "Lebennin", - "spawn.me.gondor.ringlo_vale": "Ringlo Vale", - "spawn.me.gondor.lamedon": "Lamedon", - "spawn.me.gondor.dol_amroth": "Dol Amroth", - "spawn.me.gondor.morthond_vale": "Morthond Vale", - "spawn.me.rohan.edoras": "Edoras", - "spawn.me.rohan.helms_deep": "Helm's Deep", - "spawn.me.rohan.westemnet": "Westemnet", - "spawn.me.rohan.aldburg": "Aldburg", - "spawn.me.rohan.eastemnet": "Eastemnet", - "spawn.me.rohan.the_wold": "The Wold", - "spawn.me.dale.capital": "Dale Capital", - "spawn.me.dale.esgaroth": "Esgaroth", - "spawn.me.longbeards.erebor.ravenhill": "Ravenhill", - "spawn.me.longbeards.erebor.iron_hills": "Iron Hills", - "spawn.me.longbeards.erebor.iron_hills_spring": "Iron Hills Spring", - "spawn.me.lothlorien.cerin_amroth": "Cerin Amroth", - "spawn.me.mordor.gorgoroth": "Gorgoroth", - "spawn.me.mordor.black_gates": "Black Gates", - "spawn.me.mordor.minas_morgul": "Minas Morgul", - "spawn.me.mordor.nurn": "Nurn", - "spawn.me.mordor.dol_guldur": "Dol Guldur", - "spawn.me.misty_mountains_goblins.gundabad": "Gundabad", - "spawn.me.misty_mountains_goblins.grey_mountains": "Grey Mountains", - "spawn.me.misty_mountains_goblins.goblin_town": "Goblin Town", - "spawn.me.misty_mountains_goblins.moria": "Moria", - "spawn.me.isengard.orthanc": "Orthanc", - "spawn.me.shire.hobbiton": "Hobbitton", - "spawn.me.shire.willowbottom": "Willowbottom", - "race.me.dwarf": "Dwarf", - "race.me.elf": "Elf", - "race.me.human": "Human", - "race.me.hobbit": "Hobbit", - "race.me.orc": "Orc", - "race.me.uruk": "Uruk", - "race_tooltip.me.attribute_header": "Attributes : ", - "tooltip.me.dagamarth_lore_0": "A storied blade forged by Narvi and Celebrimbor,", - "tooltip.me.dagamarth_lore_1": "thought lost.", - "tooltip.me.herugrim_lore_0": "A sword set with green jewels, passed down through", - "tooltip.me.herugrim_lore_1": "the line of Eorl for generations.", - "tooltip.me.nazgul_sword_lore_0": "Cold as death,", - "tooltip.me.nazgul_sword_lore_1": "with a wicked point.", - "tooltip.me.mace_of_sauron_lore_0": "Wielded by the Dark Lord,", - "tooltip.me.mace_of_sauron_lore_1": "this weapon has claimed many lives.", - "tooltip.me.hammer_of_helm_hammerhand_lore_0": "Once wielded by a King of Rohan,", - "tooltip.me.hammer_of_helm_hammerhand_lore_1": "who fell in the Deep.", - "tooltip.me.anguirel_lore_0": "A unique black blade forged in", - "tooltip.me.anguirel_lore_1": "elder days from a meteorite.", - "tooltip.me.glamdring_lore_0": "The Foe-Hammer, mate of Orcrist,", - "tooltip.me.glamdring_lore_1": "once borne by the King of Gondolin.", - "tooltip.me.long_forgotten_longsword_lore_0": "A mysterious melted and shattered", - "tooltip.me.long_forgotten_longsword_lore_1": "longsword.", - "tooltip.me.longsword_of_elder_kings_lore_0": "A well-crafted blade,", - "tooltip.me.longsword_of_elder_kings_lore_1": "said to have belonged to the King of Nargothrond.", - "tooltip.me.narsil_lore_0": "The Red and White Flame, borne by the King of the Dúnedain.", - "tooltip.me.narsil_lore_1": "It was broken upon the slopes of Mount Doom.", - "tooltip.me.noldorin_longsword_lore_0": "Such blades were once borne into battle by", - "tooltip.me.noldorin_longsword_lore_1": "the Noldor in ages past.", - "tooltip.me.orcrist_lore_0": "The Goblin-Cleaver, mate of Glamdring,", - "tooltip.me.orcrist_lore_1": "once used by Thorin Oakenshield.", - "tooltip.me.barrow_blade_lore_0": "Leaf-shaped and set with fiery jewels,", - "tooltip.me.barrow_blade_lore_1": "these were made for the princes of Cardolan.", - "tooltip.me.morgul_knife_lore_0": "A knife forged with wicked sorcery,", - "tooltip.me.morgul_knife_lore_1": "often carried by the Ringwraiths.", - "tooltip.me.sting_lore_0": "An elvish knife, made in Gondolin long ago,", - "tooltip.me.sting_lore_1": "carried by Bilbo Baggins of the Shire.", - "tooltip.me.aeglos_lore_0": "Called \"Snow-Point\", this legendary spear was carried into battle by", - "tooltip.me.aeglos_lore_1": "King Gil-galad through many ages.", - "tooltip.me.cuthann_lore_0": "The Shield of the Moon, mate to Anorthann,", - "tooltip.me.cuthann_lore_1": "forged long ago in Nargothrond.", - "tooltip.me.anorthann_lore_0": "The Shield of the Sun, mate to Cúthann,", - "tooltip.me.anorthann_lore_1": "forged long ago in Nargothrond.", - "tooltip.me.shield_of_durins_guard_lore_0": "A mithril-trimmed shield bearing the proud", - "tooltip.me.shield_of_durins_guard_lore_1": "icon of Durin's line.", - "tooltip.me.shield_of_the_king_under_the_mountain_lore_0": "An iconic shield emblazoned with a", - "tooltip.me.shield_of_the_king_under_the_mountain_lore_1": "gilded raven.", - "tooltip.me.helmet_of_helm_hammerhand_lore_0": "Helm of a mighty King of Rohan,", - "tooltip.me.helmet_of_helm_hammerhand_lore_1": "sign of great power.", - "description.me.gondor.description_0": "A last bastion for the Men of the West, the Kings of Gondor long stood watch over the neighbouring darkness. Though their line is broken, the stalwart Gondorians stand strong and fight to keep Mordor at bay.", - "description.me.mordor.description_0": "In the land of Mordor, where the shadows lie. An arid wasteland of ash and dust lay around Mount Doom. The Black Legions await the orders of The Dark Lord in Barad-dûr with it's watchful Great Eye. The Nazgûls are seeking the One Ring and ready for the upcoming war", - "description.me.longbeards.erebor.description_0": "Erebor, or the Lonely Mountain, is the Dwarven kingdom of Durin’s Folk. Reclaimed from Smaug by Thorin Oakenshield, it is now a prosperous center of wealth and craftsmanship, ruled by King Dáin Ironfoot. It forms a crucial alliance with the neighboring kingdom of Dale.", - "description.me.longbeards.description_0": "The Longbeards, descended from Durin the Deathless, are the most noble of the Dwarven clans. Renowned for their mastery of stone and metal, their realms include Erebor and Khazad-dûm. They are most loyal to their kin and traditions.", - "description.me.dale.description_0": "Dale is a flourishing kingdom of Men located near Erebor, rebuilt after its destruction by Smaug. Known for skilled archers and trade, it is ruled by Bard's descendants and maintains close ties with the Dwarves of Erebor.", - "description.me.lothlorien.description_0": "Lothlórien, the Golden Wood, is an enchanted Elven realm ruled by Galadriel and Celeborn. Sheltered by powerful enchantments and nestled within the golden mallorn trees, it is one of the last strongholds of the Elves in Middle-earth, renowned for its beauty and serenity.", - "description.me.rohan.description_0": "Rohan, also called the Riddermark, is a kingdom of Men renowned for its skilled horse-lords and cavalry. Located north of Gondor, it is ruled by the line of Eorl. Though once strong allies with Gondor, Rohan now faces growing internal and external threats.", - "description.me.isengard.description_0": "Once a fortress of Númenor, the keys of the black tower of Orthanc passed to the White Wizard Saruman in the Third Age. Tempted by dark power, he weaves deceit and plots war from his seat in Isengard upon the neighbouring free peoples.", - "description.me.misty_mountains_goblins.description_0": "The Goblins of the Misty Mountains are a warlike race of Orcs inhabiting the caves and tunnels beneath the mountains. Once scattered, they now rebuild their strength, preying on travelers and allying with Sauron’s forces.", - "description.me.shire.description_0": "The Shire is a peaceful land inhabited by Hobbits, located in the northwest of Middle-earth. Known for its pastoral beauty and the simple, unadventurous lives of its people. It remains largely untouched by the turmoil of the outside world.", - "command.me.fail": "Command couldn't be sent properly", - "command.me.join.faction.join.success": "%s successfully joined the %s Faction", - "command.me.clear.faction.success": "Successfully cleared your faction data", - "command.me.clear.player.faction.success": "Successfully cleared %s faction data", - "command.me.get.faction.success": "Your initial faction is %s", - "command.me.get.faction.no_faction": "You have no initial faction", - "command.me.get.player.faction.success": "%s initial faction is %s", - "command.me.get.player.faction.no_faction": "%s have no initial faction", - "command.me.get.spawn.overworld.success": "Your overworld spawn is [%s, %s, %s](xyz)", - "command.me.get.spawn.overworld.no_spawn": "You have no overworld spawn assigned, default is at [%s, %s, %s](xyz)", - "command.me.get.player.spawn.overworld.success": "%s overworld spawn is [%s, %s, %s](xyz)", - "command.me.get.player.spawn.overworld.no_spawn": "%s have no overworld spawn assigned, default is at [%s, %s, %s](xyz)", - "command.me.get.spawn.middle_earth.success": "Your Middle-earth spawn is <%s> at [%s, %s, %s](xyz)", - "command.me.get.spawn.middle_earth.no_spawn": "No Middle-earth spawn assigned", - "command.me.get.player.spawn.middle_earth.success": "%s Middle-earth spawn is <%s> at [%s, %s, %s](xyz)", - "command.me.get.player.spawn.middle_earth.no_spawn": "%s have no Middle-earth spawn assigned", - "command.me.set.spawn.overworld.success": "Your new Overworld return spawn is at [%s, %s, %s](xyz)", - "command.me.set.player.spawn.overworld.success": "%s new Overworld return spawn is at [%s, %s, %s](xyz)", - "command.me.set.spawn.middle_earth.success": "Your Middle-earth spawn have been set to <%s> at [%s, %s, %s](xyz)", - "command.me.set.spawn.middle_earth.no_faction": "You cannot assign yourself a Middle-earth spawn without having joined an initial faction", - "command.me.set.spawn.middle_earth.no_spawn_found": "Couldn't find the spawn <%s>", - "command.me.set.player.spawn.middle_earth.success": "%s Middle-earth spawn have been set to <%s> at [%s, %s, %s](xyz)", - "command.me.set.player.spawn.middle_earth.no_faction": "You cannot assign a Middle-earth spawn to %s when they have not joined an initial faction", - "command.me.reset.spawn.overworld.success": "Your Overworld return spawn is reset to [%s, %s, %s](xyz)", - "command.me.reset.player.spawn.overworld.success": "%s Overworld return spawn is reset to [%s, %s, %s](xyz)", - "command.me.reset.spawn.middle_earth.success": "Your Middle-earth spawn have been reset to <%s> at [%s, %s, %s](xyz)", - "command.me.reset.spawn.middle_earth.no_faction": "You cannot reset your Middle-earth spawn when you have not joined an initial faction", - "command.me.reset.player.spawn.middle_earth.success": "%s Middle-earth spawn have been reset to <%s> at [%s, %s, %s](xyz)", - "command.me.reset.player.spawn.middle_earth.no_faction": "You cannot reset the Middle-earth spawn of %s when they have not joined an initial faction", - "command.me.teleport.spawn.middle_earth.success": "You got teleported to your Middle-earth spawn <%s>", - "command.me.teleport.spawn.middle_earth.no_spawn": "You have no Middle-earth spawn assigned", - "command.me.teleport.player.spawn.middle_earth.success": "%s got teleported to their Middle-earth spawn <%s> at [%s, %s, %s](xyz)", - "command.me.teleport.player.spawn.middle_earth.no_spawn": "%s have no Middle-earth spawn assigned", - "command.me.teleport.spawn.overworld.success": "You got teleported to your Overworld return spawn", - "command.me.teleport.spawn.overworld.error": "There was an error while teleporting you to the Overworld return spawn", - "command.me.teleport.player.spawn.overworld.success": "%s got teleported to their Overworld return spawn at [%s, %s, %s](xyz)", - "command.me.teleport.player.spawn.overworld.no_spawn": "There was an error while teleporting %s to their Overworld return spawn", - "command.me.teleport.to.spawn.middle_earth.success": "You got teleported to <%s> at [%s, %s, %s](xyz)", - "command.me.teleport.to.spawn.middle_earth.error": "You couldn't be teleported to <%s>", - "command.me.teleport.player.to.spawn.middle_earth.success": "%s got teleported to <%s> at [%s, %s, %s](xyz)", - "command.me.teleport.player.to.spawn.middle_earth.error": "%s couldn't be teleported to <%s>", - "command.me.race.set.success": "Your race is set to %s", - "command.me.race.set.fail": "Failed to set race to %s", - "command.me.race.set.target.success": "%s race is set to %s", - "command.me.race.set.target.fail": "Failed to set race to %s", - "command.me.race.get.success": "Your race is %s", - "command.me.race.get.fail": "You don't have a race", - "command.me.race.get.target.success": "%s race is %s", - "command.me.race.get.target.fail": "%s don't have a race", - "command.me.race.reset.success": "Your race is reset", - "command.me.race.reset.fail": "Failed to reset your race", - "command.me.race.reset.target.success": "%s race is reset", - "command.me.race.reset.target.fail": "Failed to reset race for %s", - "command.me.cape.success": "Cape successfully applied: ", - "command.me.cape.fail": "Failed to apply cape.", - "command.me.hood.success": "Hood successfully applied: ", - "command.me.hood.fail": "Failed to apply hood.", - "command.me.cape.hand_empty": "Hand Empty. Take a Middle-earth Mod chestplate in your main hand to apply a cape.", - "command.me.hood.hand_empty": "Hand Empty. Take a Middle-earth Mod helmet in your main hand to apply a hood.", - "command.me.cape.wrong_item": "Wrong Item type. Take a Middle-earth Mod chestplate in your main hand to apply a cape.", - "command.me.hood.wrong_item": "Wrong Item type. Take a Middle-earth Mod helmet in your main hand to apply a hood.", - "alert.me.large_door.blocked": "Something seems to prevent the door from moving.", - "alert.me.hood_down": "Hood down.", - "alert.me.hood_up": "Hood up.", - "alert.me.seat.occupied": "This seat is occupied.", - "alert.me.seat.space_not_empty": "Block above the seat is not empty.", - "event.me.join.faction.success": "You have joined %s", - "event.me.leave.faction.success": "You have left %s", - "exception.me.no_faction.target": "%s have no faction", - "exception.me.no_faction.source": "You have no faction", - "exception.me.faction_identifier": "%s is not a valid faction identifier", - "exception.me.spawn_identifier": "%s is not a valid spawn identifier", - "exception.me.identical_faction.target": "%s already joined %s", - "exception.me.identical_faction.source": "You already joined %s", - "ui.me.onboarding_selection.title": "Onboarding Screen", - "ui.me.continue_character": "Continue", - "ui.me.reset_character": "Reset Affiliation", - "ui.me.return_confirmation.title": "Onboarding Screen", - "ui.me.return_confirmation.continue_character.title": "Return Button", - "ui.me.return_confirmation.continue_character.content": "Go to Overworld", - "ui.me.map_screen.button.fullscreen_toggle": "Toggle Fullscreen Button", - "ui.me.map_screen.button.zoom_in": "Zoom In Button", - "ui.me.map_screen.button.zoom_out": "Zoom Out Button", - "ui.me.map_screen.tooltip.coordinates_title": "Coordinates", - "ui.me.map_screen.tooltip.coordinates_label": "[x,z] ", - "ui.me.map_screen.tooltip.coordinates_content": "%s, %s", - "ui.me.map_screen.tooltip.teleport_keybind": "Right click to teleport", - "ui.me.map_screen.map_title_text": "Middle-earth Map", - "screen.me.faction_selection_screen": "Faction Selection", - "screen.me.button.faction_randomizer": "Randomize Faction", - "screen.me.button.spawn_randomizer": "Randomize Spawn", - "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", - "screen.me.button.confirm": "Confirm", - "screen.me.information.subfaction": "Subfaction : ", - "screen.me.information.races": "Race", - "screen.me.information.races.many": "Races", - "screen.me.information.description": "Description", - "widget.me.spawn_tooltip_title": "Spawns", - "widget.me.marker.selected_title_container.before": "[", - "widget.me.marker.selected_title_container.after": "]", - "widget.me.marker.margin_front": " ", - "widget.me.marker.more": "More ...", - "ui.me.search.label": "Search...", - "ui.me.search.toggle_button": "Search Bar Toggle", - "ui.me.search.screen_click_button": "Screen Click Button", - "key.category.me.me": "Middle-earth", - "key.me.hood_state_toggle": "Toggle Worn Hood state", + "advancements.smithing.elven_treated_anvil.description": "Fabriquer une enclume elfique pour créer des objets elfiques", + "advancements.smithing.elven_treated_anvil.title": "Chronique de Fëanor", + "advancements.smithing.khazad_steel.description": "Forger le fameux acier de Khâzad", + "advancements.smithing.khazad_steel.title": "Maîtrise des Nains", + "advancements.smithing.orcish_treated_anvil.description": "Fabriquer une enclume orque pour créer des objets orques", + "advancements.smithing.orcish_treated_anvil.title": "Touché par l'ombre", + "advancements.smithing.root.description": "Tout commence par la forge !", + "advancements.smithing.root.title": "Forgeron", + "advancements.smithing.steel.description": "Forger l'acier populaire des Hommes du milieu", + "advancements.smithing.steel.title": "La forge des Hommes", + "advancements.smithing.treated_anvil.description": "Fabriquer une enclume basique pour forger", + "advancements.smithing.treated_anvil.title": "Forgé dans le feu", + "alert.middle-earth.hood_down": "Capuche baissée.", + "alert.middle-earth.hood_up": "Capuche relevée.", + "alert.middle-earth.large_door.blocked": "Quelque chose semble empêcher la porte de bouger.", + "alert.middle-earth.seat.occupied": "Ce siège est occupé.", + "alert.middle-earth.seat.space_not_empty": "Le bloc au-dessus du siège n'est pas vide.", + "biome.middle-earth.anduin_vales": "Val d'Anduin", + "biome.middle-earth.anduin_vales_forest": "Forêt du Val d'Anduin", + "biome.middle-earth.anorien": "Anórien", + "biome.middle-earth.anorien_foothills": "Piémont de l'Anorien", + "biome.middle-earth.anorien_riverside": "Berge de l'Anorien", + "biome.middle-earth.barrow_downs": "Hauts des Galgals", + "biome.middle-earth.basalt_cave": "Caverne de basalte", + "biome.middle-earth.basic_cave": "Caverne basique", + "biome.middle-earth.beleriand_island": "Île de Beleriand", + "biome.middle-earth.belfalas": "Belfalas", + "biome.middle-earth.belfalas_beach": "Plage du Belfalas", + "biome.middle-earth.belfalas_forest": "Forêt du Belfalas", + "biome.middle-earth.belfalas_hills": "Collines de Belfalas", + "biome.middle-earth.blackroot_forest": "Forêt de Sourcenoire", + "biome.middle-earth.blackroot_vale": "Val de Sourcenoire", + "biome.middle-earth.blue_mountains": "Les Montagnes bleues", + "biome.middle-earth.blue_mountains_base": "Les Montagnes bleues", + "biome.middle-earth.blue_mountains_foothills": "Piémonts des Montagnes bleues", + "biome.middle-earth.blue_mountains_peaks": "Pics des Montagnes Bleues", + "biome.middle-earth.blue_mountains_woods": "Bois des Montagnes Bleues", + "biome.middle-earth.brown_lands": "Terres brunes", + "biome.middle-earth.caradhras": "Caradhras", + "biome.middle-earth.caradhras_base": "Base du Caradhras", + "biome.middle-earth.caradhras_peaks": "Pics du Caradhras", + "biome.middle-earth.celebdil": "Celebdil", + "biome.middle-earth.celebdil_base": "Base du Celebdil", + "biome.middle-earth.celebdil_peaks": "Pics du Celebdil", + "biome.middle-earth.corsair_coasts": "Côtes des Corsaires", + "biome.middle-earth.dagorlad": "Dagorlad", + "biome.middle-earth.dale": "Le Val", + "biome.middle-earth.dale_forest": "Forêt du Val", + "biome.middle-earth.dale_meadow": "Prairies du Val", + "biome.middle-earth.dark_anduin_vales": "Val d'Anduin obscur", + "biome.middle-earth.dark_mirkwood": "Cœur de la Forêt noire", + "biome.middle-earth.dark_mirkwood_edge": "Bordure de la Forêt noire", + "biome.middle-earth.dead_marshes": "Marais des Morts", + "biome.middle-earth.dead_marshes_water": "Eau des marais morts", + "biome.middle-earth.desolated_lands": "Terres désolées", + "biome.middle-earth.dol_guldur": "Dol Guldur", + "biome.middle-earth.dolomite_cave": "Caverne de dolomite", + "biome.middle-earth.dorwinion": "Dorwinion", + "biome.middle-earth.dorwinion_hills": "Les collines de Dorwinion", + "biome.middle-earth.dripstone_cave": "Caverne de spéléothèmes", + "biome.middle-earth.dry_cave": "Caverne aride", + "biome.middle-earth.dunland_foothills": "Piémonts du Dunlande", + "biome.middle-earth.east_bight": "Anse de l'Est", + "biome.middle-earth.eastern_nurn": "Nurn orientale", + "biome.middle-earth.eastern_rhovanion": "Rhovanion Oriental", + "biome.middle-earth.eastern_rhovanion_forest": "Forêt du Rhovanion oriental", + "biome.middle-earth.emyn_muil": "Emyn Muil", + "biome.middle-earth.emyn_muil_cliffs": "Falaises d'Emyn Muil", + "biome.middle-earth.emyn_muil_peaks": "Pics de l'Emyn Muil", + "biome.middle-earth.emyn_muil_pond": "Étang de l'Emyn Muil", + "biome.middle-earth.enedwaith": "Enedwaith", + "biome.middle-earth.ephel_duath": "Ephel Duath", + "biome.middle-earth.ephel_duath_base": "Base de l'Ephel Duath", + "biome.middle-earth.ephel_duath_peaks": "Pic de l'Ephel Duath", + "biome.middle-earth.ered_lithui": "Ered Lithui", + "biome.middle-earth.ered_lithui_base": "Base de l'Ered Lithui", + "biome.middle-earth.ered_lithui_peaks": "Pics de l'Ered Lithui", + "biome.middle-earth.eregion": "Eregion", + "biome.middle-earth.eregion_forest": "Forêt de l'Eregion", + "biome.middle-earth.eregion_glade": "Clairière d'Eregion", + "biome.middle-earth.ethir_anduin": "Bouches de l'Anduin", + "biome.middle-earth.fangorn": "Fangorn", + "biome.middle-earth.fanuidhol": "Fanuidhol", + "biome.middle-earth.fanuidhol_base": "Base de Fanuidhol", + "biome.middle-earth.fanuidhol_peaks": "Pics de Fanuidhol", + "biome.middle-earth.forodwaith": "Forodwaith", + "biome.middle-earth.frozen_ocean": "Océan figé", + "biome.middle-earth.frozen_pond": "Étang gelé", + "biome.middle-earth.fungus_cave": "Caverne aux champignons", + "biome.middle-earth.galonn_cave": "Caverne de Galonn", + "biome.middle-earth.gilded_cave": "Caverne dorée", + "biome.middle-earth.gondor": "Gondor", + "biome.middle-earth.gondor_forest": "Forêt du Gondor", + "biome.middle-earth.gondor_hill": "Colline du Gondor", + "biome.middle-earth.gorgoroth": "Gorgoroth", + "biome.middle-earth.gorgoroth_ashen_woods": "Bois cendrés de Gorgoroth", + "biome.middle-earth.gorgoroth_delta": "Delta de Gorgoroth", + "biome.middle-earth.grey_ashen_woods": "Bois cendrés gris", + "biome.middle-earth.grey_mountains": "Les Montagnes grises", + "biome.middle-earth.grey_mountains_base": "Base des Montagnes grises", + "biome.middle-earth.grey_mountains_peaks": "Pics des Montagnes grises", + "biome.middle-earth.grey_plains": "Les Plaines grises", + "biome.middle-earth.harad": "Le Harad", + "biome.middle-earth.harad_desert": "Le désert du Harad", + "biome.middle-earth.harondor": "Harondor", + "biome.middle-earth.high_moor": "Haute Lande", + "biome.middle-earth.high_moor_hills": "Collines de la Haute Lande", + "biome.middle-earth.high_moor_vale": "Vallée de la Haute Lande", + "biome.middle-earth.hills_of_evendim": "Collines d'Evendim", + "biome.middle-earth.ice_cave": "Caverne de glace", + "biome.middle-earth.iron_foothills": "Piémonts de fer", + "biome.middle-earth.iron_hills": "Les Collines de fer", + "biome.middle-earth.iron_hills_base": "Base des Collines de fer", + "biome.middle-earth.iron_hills_frontier": "Piémonts des Monts de fer", + "biome.middle-earth.iron_hills_peaks": "Pics des Collines de fer", + "biome.middle-earth.ithilien": "Ithilien", + "biome.middle-earth.ithilien_glade": "Clairière d'Ithilien", + "biome.middle-earth.ithilien_wastes": "Ithilien sinistre", + "biome.middle-earth.ithilien_wastes_glade": "Clairière de l'Ithilien sinistre", + "biome.middle-earth.lamedon": "Lamedon", + "biome.middle-earth.lamedon_hills": "Collines du Lamedon", + "biome.middle-earth.lebennin": "Lebennin", + "biome.middle-earth.lebennin_hills": "Collines du Lebennin", + "biome.middle-earth.lebennin_shores": "Rivages du Lebennin", + "biome.middle-earth.limestone_cave": "Caverne de calcaire", + "biome.middle-earth.lindon": "Lindon", + "biome.middle-earth.lindon_forest": "Forêt du Lindon", + "biome.middle-earth.lindon_hidden_blossom": "Floraison cachée du Lindon", + "biome.middle-earth.lindon_meadow": "Prairie du Lindon", + "biome.middle-earth.lindon_shores": "Rivages du Lindon", + "biome.middle-earth.lindon_shores_cliffs": "Falaises du Lindon", + "biome.middle-earth.lonely_mountain": "La Montagne solitaire", + "biome.middle-earth.lonely_mountain_base": "Base de la Montagne solitaire", + "biome.middle-earth.lonely_mountain_foothills": "Piémonts de la Montagne solitaire", + "biome.middle-earth.lonely_mountain_peaks": "Sommets de la Montagne solitaire", + "biome.middle-earth.long_lake": "Le grand lac", + "biome.middle-earth.lorien_edge": "Lisière de la Lothlórien", + "biome.middle-earth.lossarnach": "Lossarnach", + "biome.middle-earth.lossarnach_cherry_blossom": "Floraison de cerisiers du Lossarnach", + "biome.middle-earth.lossarnach_valley": "Vallée du Lossarnach", + "biome.middle-earth.lossarnach_valley_green": "Vallée verte du Lossarnach", + "biome.middle-earth.lossarnach_valley_orange": "Vallée orange du Lossarnach", + "biome.middle-earth.lossarnach_valley_red": "Vallée rouge du Lossarnach", + "biome.middle-earth.lossarnach_valley_yellow": "Vallée jaune du Lossarnach", + "biome.middle-earth.lothlorien": "Lothlórien", + "biome.middle-earth.lothlorien_blossom": "Floraison de la Lothlórien", + "biome.middle-earth.lothlorien_glade": "Clairière de la Lothlórien", + "biome.middle-earth.lush_cave": "Caverne luxuriante", + "biome.middle-earth.magma_cave": "Caverne de magma", + "biome.middle-earth.minhiriath": "Minhiriath", + "biome.middle-earth.mirkwood": "La Forêt noire", + "biome.middle-earth.mirkwood_edge": "Lisière de la Forêt noire", + "biome.middle-earth.mirkwood_foothills": "Piémonts de la Forêt noire", + "biome.middle-earth.mirkwood_marshes": "Marécages de la Forêt noire", + "biome.middle-earth.mirkwood_mountains": "Les montagnes de la Forêt noire", + "biome.middle-earth.mirkwood_mountains_base": "Base des montagnes de la Forêt noire", + "biome.middle-earth.mirkwood_mountains_peaks": "Pics des montagnes de la Forêt noire", + "biome.middle-earth.mirkwood_river": "Rivière de la Forêt noire", + "biome.middle-earth.mirkwood_swamp": "Marais de la Forêt noire", + "biome.middle-earth.misty_mountains": "Les Monts Brumeux", + "biome.middle-earth.misty_mountains_base": "Base des Monts Brumeux", + "biome.middle-earth.misty_mountains_peaks": "Pics des Monts Brumeux", + "biome.middle-earth.mithril_cave": "Caverne de Mithril", + "biome.middle-earth.mordor": "Mordor", + "biome.middle-earth.mordor_ashen_forest": "Forêt cendrée du Mordor", + "biome.middle-earth.mordor_hill": "Colline du Mordor", + "biome.middle-earth.mordor_wastes": "Les terres désolées du Mordor", + "biome.middle-earth.morgul_forest": "Forêt de Morgul", + "biome.middle-earth.morgul_vale": "Val de Morgul", + "biome.middle-earth.mount_doom": "La Montagne du Destin", + "biome.middle-earth.mount_doom_pit": "Cratère de la Montagne du Destin", + "biome.middle-earth.mount_gundabad": "Mont Gundabad", + "biome.middle-earth.mount_gundabad_base": "Base du Mont Gundabad", + "biome.middle-earth.mount_gundabad_peaks": "Pics du Mont Gundabad", + "biome.middle-earth.mountain_cave": "Caverne de montagne", + "biome.middle-earth.mud_cave": "Caverne de boue", + "biome.middle-earth.nan_curunir": "Nan Curunír", + "biome.middle-earth.nen_hithoel": "Nen Hithoel", + "biome.middle-earth.nen_hithoel_forest": "Forêt du Nen Hithoel", + "biome.middle-earth.nen_hithoel_shores": "Berges du Nen Hithoel", + "biome.middle-earth.nindalf": "Nindalf", + "biome.middle-earth.north_downs": "Hauts du Nord", + "biome.middle-earth.northern_mirkwood_marshes": "Marécages du nord de la Forêt noire", + "biome.middle-earth.northern_mirkwood_swamp": "Marais du nord de la Forêt noire", + "biome.middle-earth.northern_rhovanion_forest": "Forêt du Rhovanion du nord", + "biome.middle-earth.northern_rhovanion_hills": "Collines du Rhovanion du nord", + "biome.middle-earth.northern_wastelands": "Les terres désolées du Nord", + "biome.middle-earth.nurn": "Núrn", + "biome.middle-earth.nurn_edge": "Lisière du Núrn", + "biome.middle-earth.nurn_edge_woods": "Bois de la lisière du Núrn", + "biome.middle-earth.nurn_forest": "Forêt du Núrn", + "biome.middle-earth.nurn_hill": "Colline du Núrn", + "biome.middle-earth.nurn_river": "Rivière de Núrn", + "biome.middle-earth.nurn_sea": "Mer de Núrn", + "biome.middle-earth.oasis": "Oasis", + "biome.middle-earth.ocean": "Océan", + "biome.middle-earth.ocean_coast": "Côte océanique", + "biome.middle-earth.old_angmar": "Ancien Angmar", + "biome.middle-earth.old_angmar_cold_hill": "Colline froide de l'Ancien Angmar", + "biome.middle-earth.old_angmar_forest": "Forêt de l'Ancien Angmar", + "biome.middle-earth.old_angmar_frozen_hill": "Colline gelée de l'Ancien Angmar", + "biome.middle-earth.old_arthedain": "Ancien Arthedain", + "biome.middle-earth.old_arthedain_foothill": "Piémont de l'Ancien Arthedain", + "biome.middle-earth.old_arthedain_forest": "Forêt de l'Ancien Arthedain", + "biome.middle-earth.old_arthedain_meadow": "Prairie de l'Ancien Arthedain", + "biome.middle-earth.old_cardolan": "Ancien Cardolan", + "biome.middle-earth.old_cardolan_forest": "Forêt de l'Ancien Cardolan", + "biome.middle-earth.old_cardolan_hill": "Colline de l'Ancien Cardolan", + "biome.middle-earth.old_rhudaur": "Ancien Rhudaur", + "biome.middle-earth.old_rhudaur_forest": "Forêt de l'Ancien Rhudaur", + "biome.middle-earth.old_rhudaur_hill": "Colline de l'Ancien Rhudaur", + "biome.middle-earth.osgiliath": "Osgiliath", + "biome.middle-earth.pelennor_fields": "Champs du Pelennor", + "biome.middle-earth.pond": "Étang", + "biome.middle-earth.rhun": "Rhûn", + "biome.middle-earth.river": "Rivière", + "biome.middle-earth.river_running": "La Rivière Courante", + "biome.middle-earth.rohan": "Rohan", + "biome.middle-earth.rohan_forest": "Forêt du Rohan", + "biome.middle-earth.sarn_gebir_shores": "Berges de Sarn Gebir", + "biome.middle-earth.sarn_gebir_wildlands": "Terres sauvages de Sarn Gebir", + "biome.middle-earth.sea_of_rhun": "Mer de Rhûn", + "biome.middle-earth.shire": "Comté", + "biome.middle-earth.shire_edge": "Lisière de la Comté", + "biome.middle-earth.shire_forest": "Forêt de la Comté", + "biome.middle-earth.shire_hills": "Collines de la Comté", + "biome.middle-earth.shire_woods": "Forêt de la Comté", + "biome.middle-earth.southeast_rhovanion": "Rhovanion sud-oriental", + "biome.middle-earth.southern_forochel": "Forochel du Sud", + "biome.middle-earth.the_angle": "L'Angle", + "biome.middle-earth.the_old_forest": "La vieille Forêt", + "biome.middle-earth.the_wold": "Le Wold", + "biome.middle-earth.tolfalas": "Tolfalas", + "biome.middle-earth.trollshaws": "Fourrés aux Trolls", + "biome.middle-earth.udun": "Udun", + "biome.middle-earth.umbar": "Umbar", + "biome.middle-earth.umbar_woods": "Bois d'Umbar", + "biome.middle-earth.waste_pond": "Étang souillé", + "biome.middle-earth.webbed_dark_woods": "Bois sombres tissés", + "biome.middle-earth.white_mountains": "Les Montagnes blanches", + "biome.middle-earth.white_mountains_base": "Base des Montagnes blanches", + "biome.middle-earth.white_mountains_peaks": "Pics des Montagnes blanches", + "biome.middle-earth.woodland_foothills": "Piémonts du Royaume Sylvestre", + "biome.middle-earth.woodland_hills": "Collines du Royaume Sylvestre", + "biome.middle-earth.woodland_realm": "Royaume Sylvestre", + "block.middle-earth.acacia_bench": "Banc en acacia", + "block.middle-earth.acacia_chair": "Chaise en acacia", + "block.middle-earth.acacia_ladder": "Échelle en acacia", + "block.middle-earth.acacia_shingles": "Bardeaux d'acacia", + "block.middle-earth.acacia_shingles_slab": "Dalle en bardeaux d'acacia", + "block.middle-earth.acacia_shingles_stairs": "Escaliers en bardeaux d'acacia", + "block.middle-earth.acacia_shingles_vertical_slab": "Dalle verticale en bardeaux d'acacia", + "block.middle-earth.acacia_shingles_wall": "Muret en bardeaux d'acacia", + "block.middle-earth.acacia_stool": "Tabouret en acacia", + "block.middle-earth.acacia_table": "Table en acacia", + "block.middle-earth.acacia_vertical_slab": "Dalle verticale en acacia", + "block.middle-earth.acacia_wood_fence": "Barrière en bois d'acacia", + "block.middle-earth.acacia_wood_slab": "Dalle en bois d'acacia", + "block.middle-earth.acacia_wood_stairs": "Escalier en bois d'acacia", + "block.middle-earth.acacia_wood_vertical_slab": "Dalle verticale en bois d'acacia", + "block.middle-earth.acacia_wood_wall": "Muret en bois d'acacia", + "block.middle-earth.aged_thatch": "Chaume vieilli", + "block.middle-earth.aged_thatch_slab": "Dalle en chaume vieilli", + "block.middle-earth.aged_thatch_stairs": "Escaliers en chaume vieilli", + "block.middle-earth.aged_thatch_vertical_slab": "Dalle verticale en chaume vieilli", + "block.middle-earth.aged_thatch_wall": "Muret en chaume vieilli", + "block.middle-earth.andesite_bricks": "Briques d'andésite", + "block.middle-earth.andesite_brickwork": "Maçonnerie en andésite", + "block.middle-earth.andesite_brickwork_slab": "Dalle de maçonnerie en andésite", + "block.middle-earth.andesite_brickwork_stairs": "Escalier en maçonnerie d'andésite", + "block.middle-earth.andesite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en andésite", + "block.middle-earth.andesite_brickwork_wall": "Muret en maçonnerie d'andésite", + "block.middle-earth.andesite_chair": "Chaise en andésite", + "block.middle-earth.andesite_pillar": "Pilier en andésite", + "block.middle-earth.andesite_rocks": "Éboulis d'andésite", + "block.middle-earth.andesite_stool": "Tabouret en andésite", + "block.middle-earth.andesite_table": "Table en andésite", + "block.middle-earth.andesite_tiles": "Andésite carrelée", + "block.middle-earth.andesite_trapdoor": "Trappe en andésite", + "block.middle-earth.andesite_vertical_slab": "Dalle verticale en andésite", + "block.middle-earth.artisan_table": "Table d'artisan", + "block.middle-earth.ash_block": "Bloc de cendre", + "block.middle-earth.ashen_coal_ore": "Minerai de charbon cendré", + "block.middle-earth.ashen_copper_ore": "Minerai de cuivre cendré", + "block.middle-earth.ashen_dirt": "Terre cendrée", + "block.middle-earth.ashen_dirt_slab": "Dalle de terre cendrée", + "block.middle-earth.ashen_dirt_stairs": "Escaliers de terre cendrée", + "block.middle-earth.ashen_gravel": "Gravier cendré", + "block.middle-earth.ashen_gravel_layer": "Couche de gravier cendré", + "block.middle-earth.ashen_sand": "Sable cendré", + "block.middle-earth.ashen_sand_layer": "Couche de sable cendré", + "block.middle-earth.ashen_tin_ore": "Minerai d'étain cendré", + "block.middle-earth.azalea_flower_growth": "Pousse de fleurs d'azalée", + "block.middle-earth.bamboo_bench": "Banc en bambou", + "block.middle-earth.bamboo_chair": "Chaise en bambou", + "block.middle-earth.bamboo_ladder": "Échelle en bambou", + "block.middle-earth.bamboo_shingles": "Bardeaux de bambou", + "block.middle-earth.bamboo_shingles_slab": "Dalle en bardeaux de bambou", + "block.middle-earth.bamboo_shingles_stairs": "Escaliers en bardeaux de bambou", + "block.middle-earth.bamboo_shingles_vertical_slab": "Dalle verticale en bardeaux de bambou", + "block.middle-earth.bamboo_shingles_wall": "Muret en bardeaux de bambou", + "block.middle-earth.bamboo_stool": "Tabouret en bambou", + "block.middle-earth.bamboo_table": "Table en bambou", + "block.middle-earth.bamboo_vertical_slab": "Dalle verticale en bambou", + "block.middle-earth.banner.anvil.black": "Enclume noire", + "block.middle-earth.banner.anvil.blue": "Enclume bleue", + "block.middle-earth.banner.anvil.brown": "Enclume marron", + "block.middle-earth.banner.anvil.cyan": "Enclume cyan", + "block.middle-earth.banner.anvil.gray": "Enclume grise", + "block.middle-earth.banner.anvil.green": "Enclume verte", + "block.middle-earth.banner.anvil.light_blue": "Enclume bleu clair", + "block.middle-earth.banner.anvil.light_gray": "Enclume gris clair", + "block.middle-earth.banner.anvil.lime": "Enclume vert clair", + "block.middle-earth.banner.anvil.magenta": "Enclume magenta", + "block.middle-earth.banner.anvil.orange": "Enclume orange", + "block.middle-earth.banner.anvil.pink": "Enclume rose", + "block.middle-earth.banner.anvil.purple": "Enclume violette", + "block.middle-earth.banner.anvil.red": "Enclume rouge", + "block.middle-earth.banner.anvil.white": "Enclume blanche", + "block.middle-earth.banner.anvil.yellow": "Enclume jaune", + "block.middle-earth.banner.anvil_bottom.black": "Bas d'enclume noir", + "block.middle-earth.banner.anvil_bottom.blue": "Bas d'enclume bleu", + "block.middle-earth.banner.anvil_bottom.brown": "Bas d'enclume marron", + "block.middle-earth.banner.anvil_bottom.cyan": "Bas d'enclume cyan", + "block.middle-earth.banner.anvil_bottom.gray": "Bas d'enclume gris", + "block.middle-earth.banner.anvil_bottom.green": "Bas d'enclume vert", + "block.middle-earth.banner.anvil_bottom.light_blue": "Bas d'enclume bleu clair", + "block.middle-earth.banner.anvil_bottom.light_gray": "Bas d'enclume gris clair", + "block.middle-earth.banner.anvil_bottom.lime": "Bas d'enclume vert clair", + "block.middle-earth.banner.anvil_bottom.magenta": "Bas d'enclume magenta", + "block.middle-earth.banner.anvil_bottom.orange": "Bas d'enclume orange", + "block.middle-earth.banner.anvil_bottom.pink": "Bas d'enclume rose", + "block.middle-earth.banner.anvil_bottom.purple": "Bas d'enclume violet", + "block.middle-earth.banner.anvil_bottom.red": "Bas d'enclume rouge", + "block.middle-earth.banner.anvil_bottom.white": "Bas d'enclume blanc", + "block.middle-earth.banner.anvil_bottom.yellow": "Bas d'enclume jaune", + "block.middle-earth.banner.anvil_hammer.black": "Marteau d'enclume noir", + "block.middle-earth.banner.anvil_hammer.blue": "Marteau d'enclume bleu", + "block.middle-earth.banner.anvil_hammer.brown": "Marteau d'enclume marron", + "block.middle-earth.banner.anvil_hammer.cyan": "Marteau d'enclume cyan", + "block.middle-earth.banner.anvil_hammer.gray": "Marteau d'enclume gris", + "block.middle-earth.banner.anvil_hammer.green": "Marteau d'enclume vert", + "block.middle-earth.banner.anvil_hammer.light_blue": "Marteau d'enclume bleu clair", + "block.middle-earth.banner.anvil_hammer.light_gray": "Marteau d'enclume gris clair", + "block.middle-earth.banner.anvil_hammer.lime": "Marteau d'enclume vert clair", + "block.middle-earth.banner.anvil_hammer.magenta": "Marteau d'enclume magenta", + "block.middle-earth.banner.anvil_hammer.orange": "Marteau d'enclume orange", + "block.middle-earth.banner.anvil_hammer.pink": "Marteau d'enclume rose", + "block.middle-earth.banner.anvil_hammer.purple": "Marteau d'enclume violet", + "block.middle-earth.banner.anvil_hammer.red": "Marteau d'enclume rouge", + "block.middle-earth.banner.anvil_hammer.white": "Marteau d'enclume blanc", + "block.middle-earth.banner.anvil_hammer.yellow": "Marteau d'enclume jaune", + "block.middle-earth.banner.anvil_hammer_bottom.black": "Bas de marteau d'enclume noir", + "block.middle-earth.banner.anvil_hammer_bottom.blue": "Bas de marteau d'enclume bleu", + "block.middle-earth.banner.anvil_hammer_bottom.brown": "Bas de marteau d'enclume marron", + "block.middle-earth.banner.anvil_hammer_bottom.cyan": "Bas de marteau d'enclume cyan", + "block.middle-earth.banner.anvil_hammer_bottom.gray": "Bas de marteau d'enclume gris", + "block.middle-earth.banner.anvil_hammer_bottom.green": "Bas de marteau d'enclume vert", + "block.middle-earth.banner.anvil_hammer_bottom.light_blue": "Bas de marteau d'enclume bleu clair", + "block.middle-earth.banner.anvil_hammer_bottom.light_gray": "Bas de marteau d'enclume gris clair", + "block.middle-earth.banner.anvil_hammer_bottom.lime": "Bas de marteau d'enclume vert clair", + "block.middle-earth.banner.anvil_hammer_bottom.magenta": "Bas de marteau d'enclume magenta", + "block.middle-earth.banner.anvil_hammer_bottom.orange": "Bas de marteau d'enclume orange", + "block.middle-earth.banner.anvil_hammer_bottom.pink": "Bas de marteau d'enclume rose", + "block.middle-earth.banner.anvil_hammer_bottom.purple": "Bas de marteau d'enclume violet", + "block.middle-earth.banner.anvil_hammer_bottom.red": "Bas de marteau d'enclume rouge", + "block.middle-earth.banner.anvil_hammer_bottom.white": "Bas de marteau d'enclume blanc", + "block.middle-earth.banner.anvil_hammer_bottom.yellow": "Bas de marteau d'enclume jaune", + "block.middle-earth.banner.anvil_hammer_top.black": "Haut de marteau d'enclume noir", + "block.middle-earth.banner.anvil_hammer_top.blue": "Haut de marteau d'enclume bleu", + "block.middle-earth.banner.anvil_hammer_top.brown": "Haut de marteau d'enclume marron", + "block.middle-earth.banner.anvil_hammer_top.cyan": "Haut de marteau d'enclume cyan", + "block.middle-earth.banner.anvil_hammer_top.gray": "Haut de marteau d'enclume gris", + "block.middle-earth.banner.anvil_hammer_top.green": "Haut de marteau d'enclume vert", + "block.middle-earth.banner.anvil_hammer_top.light_blue": "Haut de marteau d'enclume bleu clair", + "block.middle-earth.banner.anvil_hammer_top.light_gray": "Haut de marteau d'enclume gris clair", + "block.middle-earth.banner.anvil_hammer_top.lime": "Haut de marteau d'enclume vert clair", + "block.middle-earth.banner.anvil_hammer_top.magenta": "Haut de marteau d'enclume magenta", + "block.middle-earth.banner.anvil_hammer_top.orange": "Haut de marteau d'enclume orange", + "block.middle-earth.banner.anvil_hammer_top.pink": "Haut de marteau d'enclume rose", + "block.middle-earth.banner.anvil_hammer_top.purple": "Haut de marteau d'enclume violet", + "block.middle-earth.banner.anvil_hammer_top.red": "Haut de marteau d'enclume rouge", + "block.middle-earth.banner.anvil_hammer_top.white": "Haut de marteau d'enclume blanc", + "block.middle-earth.banner.anvil_hammer_top.yellow": "Haut de marteau d'enclume jaune", + "block.middle-earth.banner.anvil_top.black": "Haut d'enclume noir", + "block.middle-earth.banner.anvil_top.blue": "Haut d'enclume bleu", + "block.middle-earth.banner.anvil_top.brown": "Haut d'enclume marron", + "block.middle-earth.banner.anvil_top.cyan": "Haut d'enclume cyan", + "block.middle-earth.banner.anvil_top.gray": "Haut d'enclume gris", + "block.middle-earth.banner.anvil_top.green": "Haut d'enclume vert", + "block.middle-earth.banner.anvil_top.light_blue": "Haut d'enclume bleu clair", + "block.middle-earth.banner.anvil_top.light_gray": "Haut d'enclume gris clair", + "block.middle-earth.banner.anvil_top.lime": "Haut d'enclume vert clair", + "block.middle-earth.banner.anvil_top.magenta": "Haut d'enclume magenta", + "block.middle-earth.banner.anvil_top.orange": "Haut d'enclume orange", + "block.middle-earth.banner.anvil_top.pink": "Haut d'enclume rose", + "block.middle-earth.banner.anvil_top.purple": "Haut d'enclume violet", + "block.middle-earth.banner.anvil_top.red": "Haut d'enclume rouge", + "block.middle-earth.banner.anvil_top.white": "Haut d'enclume blanc", + "block.middle-earth.banner.anvil_top.yellow": "Haut d'enclume jaune", + "block.middle-earth.banner.bell.black": "Cloche noire", + "block.middle-earth.banner.bell.blue": "Cloche bleue", + "block.middle-earth.banner.bell.brown": "Cloche marron", + "block.middle-earth.banner.bell.cyan": "Cloche cyan", + "block.middle-earth.banner.bell.gray": "Cloche grise", + "block.middle-earth.banner.bell.green": "Cloche verte", + "block.middle-earth.banner.bell.light_blue": "Cloche bleu clair", + "block.middle-earth.banner.bell.light_gray": "Cloche gris clair", + "block.middle-earth.banner.bell.lime": "Cloche vert clair", + "block.middle-earth.banner.bell.magenta": "Cloche magenta", + "block.middle-earth.banner.bell.orange": "Cloche orange", + "block.middle-earth.banner.bell.pink": "Cloche rose", + "block.middle-earth.banner.bell.purple": "Cloche violette", + "block.middle-earth.banner.bell.red": "Cloche rouge", + "block.middle-earth.banner.bell.white": "Cloche blanche", + "block.middle-earth.banner.bell.yellow": "Cloche jaune", + "block.middle-earth.banner.bell_bottom.black": "Bas de cloche noir", + "block.middle-earth.banner.bell_bottom.blue": "Bas de cloche bleu", + "block.middle-earth.banner.bell_bottom.brown": "Bas de cloche marron", + "block.middle-earth.banner.bell_bottom.cyan": "Bas de cloche cyan", + "block.middle-earth.banner.bell_bottom.gray": "Bas de cloche gris", + "block.middle-earth.banner.bell_bottom.green": "Bas de cloche vert", + "block.middle-earth.banner.bell_bottom.light_blue": "Bas de cloche bleu clair", + "block.middle-earth.banner.bell_bottom.light_gray": "Bas de cloche gris clair", + "block.middle-earth.banner.bell_bottom.lime": "Bas de cloche vert clair", + "block.middle-earth.banner.bell_bottom.magenta": "Bas de cloche magenta", + "block.middle-earth.banner.bell_bottom.orange": "Bas de cloche orange", + "block.middle-earth.banner.bell_bottom.pink": "Bas de cloche rose", + "block.middle-earth.banner.bell_bottom.purple": "Bas de cloche violet", + "block.middle-earth.banner.bell_bottom.red": "Bas de cloche rouge", + "block.middle-earth.banner.bell_bottom.white": "Bas de cloche blanc", + "block.middle-earth.banner.bell_bottom.yellow": "Bas de cloche jaune", + "block.middle-earth.banner.bell_top.black": "Haut de cloche noir", + "block.middle-earth.banner.bell_top.blue": "Haut de cloche bleu", + "block.middle-earth.banner.bell_top.brown": "Haut de cloche marron", + "block.middle-earth.banner.bell_top.cyan": "Haut de cloche cyan", + "block.middle-earth.banner.bell_top.gray": "Haut de cloche gris", + "block.middle-earth.banner.bell_top.green": "Haut de cloche vert", + "block.middle-earth.banner.bell_top.light_blue": "Haut de cloche bleu clair", + "block.middle-earth.banner.bell_top.light_gray": "Haut de cloche gris clair", + "block.middle-earth.banner.bell_top.lime": "Haut de cloche vert clair", + "block.middle-earth.banner.bell_top.magenta": "Haut de cloche magenta", + "block.middle-earth.banner.bell_top.orange": "Haut de cloche orange", + "block.middle-earth.banner.bell_top.pink": "Haut de cloche rose", + "block.middle-earth.banner.bell_top.purple": "Haut de cloche violet", + "block.middle-earth.banner.bell_top.red": "Haut de cloche rouge", + "block.middle-earth.banner.bell_top.white": "Haut de cloche blanc", + "block.middle-earth.banner.bell_top.yellow": "Haut de cloche jaune", + "block.middle-earth.banner.bow.black": "Arc noir", + "block.middle-earth.banner.bow.blue": "Arc bleu", + "block.middle-earth.banner.bow.brown": "Arc marron", + "block.middle-earth.banner.bow.cyan": "Arc cyan", + "block.middle-earth.banner.bow.gray": "Arc gris", + "block.middle-earth.banner.bow.green": "Arc vert", + "block.middle-earth.banner.bow.light_blue": "Arc bleu clair", + "block.middle-earth.banner.bow.light_gray": "Arc gris clair", + "block.middle-earth.banner.bow.lime": "Arc vert clair", + "block.middle-earth.banner.bow.magenta": "Arc magenta", + "block.middle-earth.banner.bow.orange": "Arc orange", + "block.middle-earth.banner.bow.pink": "Arc rose", + "block.middle-earth.banner.bow.purple": "Arc violet", + "block.middle-earth.banner.bow.red": "Arc rouge", + "block.middle-earth.banner.bow.white": "Arc blanc", + "block.middle-earth.banner.bow.yellow": "Arc jaune", + "block.middle-earth.banner.bow_down.black": "Arc vers le bas noir", + "block.middle-earth.banner.bow_down.blue": "Arc vers le bas bleu", + "block.middle-earth.banner.bow_down.brown": "Arc vers le bas marron", + "block.middle-earth.banner.bow_down.cyan": "Arc vers le bas cyan", + "block.middle-earth.banner.bow_down.gray": "Arc vers le bas gris", + "block.middle-earth.banner.bow_down.green": "Arc vers le bas vert", + "block.middle-earth.banner.bow_down.light_blue": "Arc vers le bas bleu clair", + "block.middle-earth.banner.bow_down.light_gray": "Arc vers le bas gris clair", + "block.middle-earth.banner.bow_down.lime": "Arc vers le bas vert clair", + "block.middle-earth.banner.bow_down.magenta": "Arc vers le bas magenta", + "block.middle-earth.banner.bow_down.orange": "Arc vers le bas orange", + "block.middle-earth.banner.bow_down.pink": "Arc vers le bas rose", + "block.middle-earth.banner.bow_down.purple": "Arc vers le bas violet", + "block.middle-earth.banner.bow_down.red": "Arc vers le bas rouge", + "block.middle-earth.banner.bow_down.white": "Arc vers le bas blanc", + "block.middle-earth.banner.bow_down.yellow": "Arc vers le bas jaune", + "block.middle-earth.banner.bow_flat_bottom.black": "Arc plat bas noir", + "block.middle-earth.banner.bow_flat_bottom.blue": "Arc plat bas bleu", + "block.middle-earth.banner.bow_flat_bottom.brown": "Arc plat bas marron", + "block.middle-earth.banner.bow_flat_bottom.cyan": "Arc plat bas cyan", + "block.middle-earth.banner.bow_flat_bottom.gray": "Arc plat bas gris", + "block.middle-earth.banner.bow_flat_bottom.green": "Arc plat bas vert", + "block.middle-earth.banner.bow_flat_bottom.light_blue": "Arc plat bas bleu clair", + "block.middle-earth.banner.bow_flat_bottom.light_gray": "Arc plat bas gris clair", + "block.middle-earth.banner.bow_flat_bottom.lime": "Arc plat bas vert clair", + "block.middle-earth.banner.bow_flat_bottom.magenta": "Arc plat bas magenta", + "block.middle-earth.banner.bow_flat_bottom.orange": "Arc plat bas orange", + "block.middle-earth.banner.bow_flat_bottom.pink": "Arc plat bas rose", + "block.middle-earth.banner.bow_flat_bottom.purple": "Arc plat bas violet", + "block.middle-earth.banner.bow_flat_bottom.red": "Arc plat bas rouge", + "block.middle-earth.banner.bow_flat_bottom.white": "Arc plat bas blanc", + "block.middle-earth.banner.bow_flat_bottom.yellow": "Arc plat bas jaune", + "block.middle-earth.banner.bow_flat_center.black": "Arc plat centré noir", + "block.middle-earth.banner.bow_flat_center.blue": "Arc plat centré bleu", + "block.middle-earth.banner.bow_flat_center.brown": "Arc plat centré marron", + "block.middle-earth.banner.bow_flat_center.cyan": "Arc plat centré cyan", + "block.middle-earth.banner.bow_flat_center.gray": "Arc plat centré gris", + "block.middle-earth.banner.bow_flat_center.green": "Arc plat centré vert", + "block.middle-earth.banner.bow_flat_center.light_blue": "Arc plat centré bleu clair", + "block.middle-earth.banner.bow_flat_center.light_gray": "Arc plat centré gris clair", + "block.middle-earth.banner.bow_flat_center.lime": "Arc plat centré vert clair", + "block.middle-earth.banner.bow_flat_center.magenta": "Arc plat centré magenta", + "block.middle-earth.banner.bow_flat_center.orange": "Arc plat centré orange", + "block.middle-earth.banner.bow_flat_center.pink": "Arc plat centré rose", + "block.middle-earth.banner.bow_flat_center.purple": "Arc plat centré violet", + "block.middle-earth.banner.bow_flat_center.red": "Arc plat centré rouge", + "block.middle-earth.banner.bow_flat_center.white": "Arc plat centré blanc", + "block.middle-earth.banner.bow_flat_center.yellow": "Arc plat centré jaune", + "block.middle-earth.banner.bow_flat_top.black": "Arc plat haut noir", + "block.middle-earth.banner.bow_flat_top.blue": "Arc plat haut bleu", + "block.middle-earth.banner.bow_flat_top.brown": "Arc plat haut marron", + "block.middle-earth.banner.bow_flat_top.cyan": "Arc plat haut cyan", + "block.middle-earth.banner.bow_flat_top.gray": "Arc plat haut gris", + "block.middle-earth.banner.bow_flat_top.green": "Arc plat haut vert", + "block.middle-earth.banner.bow_flat_top.light_blue": "Arc plat haut bleu clair", + "block.middle-earth.banner.bow_flat_top.light_gray": "Arc plat haut gris clair", + "block.middle-earth.banner.bow_flat_top.lime": "Arc plat haut vert clair", + "block.middle-earth.banner.bow_flat_top.magenta": "Arc plat haut magenta", + "block.middle-earth.banner.bow_flat_top.orange": "Arc plat haut orange", + "block.middle-earth.banner.bow_flat_top.pink": "Arc plat haut rose", + "block.middle-earth.banner.bow_flat_top.purple": "Arc plat haut violet", + "block.middle-earth.banner.bow_flat_top.red": "Arc plat haut rouge", + "block.middle-earth.banner.bow_flat_top.white": "Arc plat haut blanc", + "block.middle-earth.banner.bow_flat_top.yellow": "Arc plat haut jaune", + "block.middle-earth.banner.bow_long.black": "Grand arc noir", + "block.middle-earth.banner.bow_long.blue": "Grand arc bleu", + "block.middle-earth.banner.bow_long.brown": "Grand arc marron", + "block.middle-earth.banner.bow_long.cyan": "Grand arc cyan", + "block.middle-earth.banner.bow_long.gray": "Grand arc gris", + "block.middle-earth.banner.bow_long.green": "Grand arc vert", + "block.middle-earth.banner.bow_long.light_blue": "Grand arc bleu clair", + "block.middle-earth.banner.bow_long.light_gray": "Grand arc gris clair", + "block.middle-earth.banner.bow_long.lime": "Grand arc vert clair", + "block.middle-earth.banner.bow_long.magenta": "Grand arc magenta", + "block.middle-earth.banner.bow_long.orange": "Grand arc orange", + "block.middle-earth.banner.bow_long.pink": "Grand arc rose", + "block.middle-earth.banner.bow_long.purple": "Grand arc violet", + "block.middle-earth.banner.bow_long.red": "Grand arc rouge", + "block.middle-earth.banner.bow_long.white": "Grand arc blanc", + "block.middle-earth.banner.bow_long.yellow": "Grand arc jaune", + "block.middle-earth.banner.bow_up.black": "Arc vers le haut noir", + "block.middle-earth.banner.bow_up.blue": "Arc vers le haut bleu", + "block.middle-earth.banner.bow_up.brown": "Arc vers le haut marron", + "block.middle-earth.banner.bow_up.cyan": "Arc vers le haut cyan", + "block.middle-earth.banner.bow_up.gray": "Arc vers le haut gris", + "block.middle-earth.banner.bow_up.green": "Arc vers le haut vert", + "block.middle-earth.banner.bow_up.light_blue": "Arc vers le haut bleu clair", + "block.middle-earth.banner.bow_up.light_gray": "Arc vers le haut gris clair", + "block.middle-earth.banner.bow_up.lime": "Arc vers le haut vert clair", + "block.middle-earth.banner.bow_up.magenta": "Arc vers le haut magenta", + "block.middle-earth.banner.bow_up.orange": "Arc vers le haut orange", + "block.middle-earth.banner.bow_up.pink": "Arc vers le haut rose", + "block.middle-earth.banner.bow_up.purple": "Arc vers le haut violet", + "block.middle-earth.banner.bow_up.red": "Arc vers le haut rouge", + "block.middle-earth.banner.bow_up.white": "Arc vers le haut blanc", + "block.middle-earth.banner.bow_up.yellow": "Arc vers le haut jaune", + "block.middle-earth.banner.cloth.black": "Tissu noir", + "block.middle-earth.banner.cloth.blue": "Tissu bleu", + "block.middle-earth.banner.cloth.brown": "Tissu marron", + "block.middle-earth.banner.cloth.cyan": "Tissu cyan", + "block.middle-earth.banner.cloth.gray": "Tissu gris", + "block.middle-earth.banner.cloth.green": "Tissu vert", + "block.middle-earth.banner.cloth.light_blue": "Tissu bleu clair", + "block.middle-earth.banner.cloth.light_gray": "Tissu gris clair", + "block.middle-earth.banner.cloth.lime": "Tissu vert clair", + "block.middle-earth.banner.cloth.magenta": "Tissu magenta", + "block.middle-earth.banner.cloth.orange": "Tissu orange", + "block.middle-earth.banner.cloth.pink": "Tissu rose", + "block.middle-earth.banner.cloth.purple": "Tissu violet", + "block.middle-earth.banner.cloth.red": "Tissu rouge", + "block.middle-earth.banner.cloth.white": "Tissu blanc", + "block.middle-earth.banner.cloth.yellow": "Tissu jaune", + "block.middle-earth.banner.cloth_gradient.black": "Tissu dégradé noir", + "block.middle-earth.banner.cloth_gradient.blue": "Tissu dégradé bleu", + "block.middle-earth.banner.cloth_gradient.brown": "Tissu dégradé marron", + "block.middle-earth.banner.cloth_gradient.cyan": "Tissu dégradé cyan", + "block.middle-earth.banner.cloth_gradient.gray": "Tissu dégradé gris", + "block.middle-earth.banner.cloth_gradient.green": "Tissu dégradé vert", + "block.middle-earth.banner.cloth_gradient.light_blue": "Tissu dégradé bleu clair", + "block.middle-earth.banner.cloth_gradient.light_gray": "Tissu dégradé gris clair", + "block.middle-earth.banner.cloth_gradient.lime": "Tissu dégradé vert clair", + "block.middle-earth.banner.cloth_gradient.magenta": "Tissu dégradé magenta", + "block.middle-earth.banner.cloth_gradient.orange": "Tissu dégradé orange", + "block.middle-earth.banner.cloth_gradient.pink": "Tissu dégradé rose", + "block.middle-earth.banner.cloth_gradient.purple": "Tissu dégradé violet", + "block.middle-earth.banner.cloth_gradient.red": "Tissu dégradé rouge", + "block.middle-earth.banner.cloth_gradient.white": "Tissu dégradé blanc", + "block.middle-earth.banner.cloth_gradient.yellow": "Tissu dégradé jaune", + "block.middle-earth.banner.cloth_gradient_up.black": "Tissu dégradé vers le haut noir", + "block.middle-earth.banner.cloth_gradient_up.blue": "Tissu dégradé vers le haut bleu", + "block.middle-earth.banner.cloth_gradient_up.brown": "Tissu dégradé vers le haut marron", + "block.middle-earth.banner.cloth_gradient_up.cyan": "Tissu dégradé vers le haut cyan", + "block.middle-earth.banner.cloth_gradient_up.gray": "Tissu dégradé vers le haut gris", + "block.middle-earth.banner.cloth_gradient_up.green": "Tissu dégradé vers le haut vert", + "block.middle-earth.banner.cloth_gradient_up.light_blue": "Tissu dégradé vers le haut bleu clair", + "block.middle-earth.banner.cloth_gradient_up.light_gray": "Tissu dégradé vers le haut gris clair", + "block.middle-earth.banner.cloth_gradient_up.lime": "Tissu dégradé vers le haut vert clair", + "block.middle-earth.banner.cloth_gradient_up.magenta": "Tissu dégradé vers le haut magenta", + "block.middle-earth.banner.cloth_gradient_up.orange": "Tissu dégradé vers le haut orange", + "block.middle-earth.banner.cloth_gradient_up.pink": "Tissu dégradé vers le haut rose", + "block.middle-earth.banner.cloth_gradient_up.purple": "Tissu dégradé vers le haut violet", + "block.middle-earth.banner.cloth_gradient_up.red": "Tissu dégradé vers le haut rouge", + "block.middle-earth.banner.cloth_gradient_up.white": "Tissu dégradé vers le haut blanc", + "block.middle-earth.banner.cloth_gradient_up.yellow": "Tissu dégradé vers le haut jaune", + "block.middle-earth.banner.dragon.black": "Dragon noir", + "block.middle-earth.banner.dragon.blue": "Dragon bleu", + "block.middle-earth.banner.dragon.brown": "Dragon marron", + "block.middle-earth.banner.dragon.cyan": "Dragon cyan", + "block.middle-earth.banner.dragon.gray": "Dragon gris", + "block.middle-earth.banner.dragon.green": "Dragon vert", + "block.middle-earth.banner.dragon.light_blue": "Dragon bleu clair", + "block.middle-earth.banner.dragon.light_gray": "Dragon gris clair", + "block.middle-earth.banner.dragon.lime": "Dragon vert clair", + "block.middle-earth.banner.dragon.magenta": "Dragon magenta", + "block.middle-earth.banner.dragon.orange": "Dragon orange", + "block.middle-earth.banner.dragon.pink": "Dragon rose", + "block.middle-earth.banner.dragon.purple": "Dragon violet", + "block.middle-earth.banner.dragon.red": "Dragon rouge", + "block.middle-earth.banner.dragon.white": "Dragon blanc", + "block.middle-earth.banner.dragon.yellow": "Dragon jaune", + "block.middle-earth.banner.dwarf_crown.black": "Couronne naine noire", + "block.middle-earth.banner.dwarf_crown.blue": "Couronne naine bleue", + "block.middle-earth.banner.dwarf_crown.brown": "Couronne naine marron", + "block.middle-earth.banner.dwarf_crown.cyan": "Couronne naine cyan", + "block.middle-earth.banner.dwarf_crown.gray": "Couronne naine grise", + "block.middle-earth.banner.dwarf_crown.green": "Couronne naine verte", + "block.middle-earth.banner.dwarf_crown.light_blue": "Couronne naine bleu clair", + "block.middle-earth.banner.dwarf_crown.light_gray": "Couronne naine gris clair", + "block.middle-earth.banner.dwarf_crown.lime": "Couronne naine vert clair", + "block.middle-earth.banner.dwarf_crown.magenta": "Couronne naine magenta", + "block.middle-earth.banner.dwarf_crown.orange": "Couronne naine orange", + "block.middle-earth.banner.dwarf_crown.pink": "Couronne naine rose", + "block.middle-earth.banner.dwarf_crown.purple": "Couronne naine violette", + "block.middle-earth.banner.dwarf_crown.red": "Couronne naine rouge", + "block.middle-earth.banner.dwarf_crown.white": "Couronne naine blanche", + "block.middle-earth.banner.dwarf_crown.yellow": "Couronne naine jaune", + "block.middle-earth.banner.dwarf_crown_bottom.black": "Bas de couronne naine noir", + "block.middle-earth.banner.dwarf_crown_bottom.blue": "Bas de couronne naine bleu", + "block.middle-earth.banner.dwarf_crown_bottom.brown": "Bas de couronne naine marron", + "block.middle-earth.banner.dwarf_crown_bottom.cyan": "Bas de couronne naine cyan", + "block.middle-earth.banner.dwarf_crown_bottom.gray": "Bas de couronne naine gris", + "block.middle-earth.banner.dwarf_crown_bottom.green": "Bas de couronne naine vert", + "block.middle-earth.banner.dwarf_crown_bottom.light_blue": "Bas de couronne naine bleu clair", + "block.middle-earth.banner.dwarf_crown_bottom.light_gray": "Bas de couronne naine gris clair", + "block.middle-earth.banner.dwarf_crown_bottom.lime": "Bas de couronne naine vert clair", + "block.middle-earth.banner.dwarf_crown_bottom.magenta": "Bas de couronne naine magenta", + "block.middle-earth.banner.dwarf_crown_bottom.orange": "Bas de couronne naine orange", + "block.middle-earth.banner.dwarf_crown_bottom.pink": "Bas de couronne naine rose", + "block.middle-earth.banner.dwarf_crown_bottom.purple": "Bas de couronne naine violet", + "block.middle-earth.banner.dwarf_crown_bottom.red": "Bas de couronne naine rouge", + "block.middle-earth.banner.dwarf_crown_bottom.white": "Bas de couronne naine blanc", + "block.middle-earth.banner.dwarf_crown_bottom.yellow": "Bas de couronne naine jaune", + "block.middle-earth.banner.dwarf_crown_top.black": "Haut de couronne naine noir", + "block.middle-earth.banner.dwarf_crown_top.blue": "Haut de couronne naine bleu", + "block.middle-earth.banner.dwarf_crown_top.brown": "Haut de couronne naine marron", + "block.middle-earth.banner.dwarf_crown_top.cyan": "Haut de couronne naine cyan", + "block.middle-earth.banner.dwarf_crown_top.gray": "Haut de couronne naine gris", + "block.middle-earth.banner.dwarf_crown_top.green": "Haut de couronne naine vert", + "block.middle-earth.banner.dwarf_crown_top.light_blue": "Haut de couronne naine bleu clair", + "block.middle-earth.banner.dwarf_crown_top.light_gray": "Haut de couronne naine gris clair", + "block.middle-earth.banner.dwarf_crown_top.lime": "Haut de couronne naine vert clair", + "block.middle-earth.banner.dwarf_crown_top.magenta": "Haut de couronne naine magenta", + "block.middle-earth.banner.dwarf_crown_top.orange": "Haut de couronne naine orange", + "block.middle-earth.banner.dwarf_crown_top.pink": "Haut de couronne naine rose", + "block.middle-earth.banner.dwarf_crown_top.purple": "Haut de couronne naine violet", + "block.middle-earth.banner.dwarf_crown_top.red": "Haut de couronne naine rouge", + "block.middle-earth.banner.dwarf_crown_top.white": "Haut de couronne naine blanc", + "block.middle-earth.banner.dwarf_crown_top.yellow": "Haut de couronne naine jaune", + "block.middle-earth.banner.evil_eye.black": "Motif d'œil maléfique noir", + "block.middle-earth.banner.evil_eye.blue": "Motif d'œil maléfique bleu", + "block.middle-earth.banner.evil_eye.brown": "Motif d'œil maléfique marron", + "block.middle-earth.banner.evil_eye.cyan": "Motif d'œil maléfique cyan", + "block.middle-earth.banner.evil_eye.gray": "Motif d'œil maléfique gris", + "block.middle-earth.banner.evil_eye.green": "Motif d'œil maléfique vert", + "block.middle-earth.banner.evil_eye.light_blue": "Motif d'œil maléfique bleu clair", + "block.middle-earth.banner.evil_eye.light_gray": "Motif d'œil maléfique gris clair", + "block.middle-earth.banner.evil_eye.lime": "Motif d'œil maléfique vert clair", + "block.middle-earth.banner.evil_eye.magenta": "Motif d'œil maléfique magenta", + "block.middle-earth.banner.evil_eye.orange": "Motif d'œil maléfique orange", + "block.middle-earth.banner.evil_eye.pink": "Motif d'œil maléfique rose", + "block.middle-earth.banner.evil_eye.purple": "Motif d'œil maléfique violet", + "block.middle-earth.banner.evil_eye.red": "Motif d'œil maléfique rouge", + "block.middle-earth.banner.evil_eye.white": "Motif d'œil maléfique blanc", + "block.middle-earth.banner.evil_eye.yellow": "Motif d'œil maléfique jaune", + "block.middle-earth.banner.evil_peaks.black": "Motif de pics maléfiques noir", + "block.middle-earth.banner.evil_peaks.blue": "Motif de pics maléfiques bleu", + "block.middle-earth.banner.evil_peaks.brown": "Motif de pics maléfiques marron", + "block.middle-earth.banner.evil_peaks.cyan": "Motif de pics maléfiques cyan", + "block.middle-earth.banner.evil_peaks.gray": "Motif de pics maléfiques gris", + "block.middle-earth.banner.evil_peaks.green": "Motif de pics maléfiques vert", + "block.middle-earth.banner.evil_peaks.light_blue": "Motif de pics maléfiques bleu clair", + "block.middle-earth.banner.evil_peaks.light_gray": "Motif de pics maléfiques gris clair", + "block.middle-earth.banner.evil_peaks.lime": "Motif de pics maléfiques vert clair", + "block.middle-earth.banner.evil_peaks.magenta": "Motif de pics maléfiques magenta", + "block.middle-earth.banner.evil_peaks.orange": "Motif de pics maléfiques orange", + "block.middle-earth.banner.evil_peaks.pink": "Motif de pics maléfiques rose", + "block.middle-earth.banner.evil_peaks.purple": "Motif de pics maléfiques violet", + "block.middle-earth.banner.evil_peaks.red": "Motif de pics maléfiques rouge", + "block.middle-earth.banner.evil_peaks.white": "Motif de pics maléfiques blanc", + "block.middle-earth.banner.evil_peaks.yellow": "Motif de pics maléfiques jaune", + "block.middle-earth.banner.eye_of_sauron.black": "Motif de l'Œil de Sauron noir", + "block.middle-earth.banner.eye_of_sauron.blue": "Motif de l'Œil de Sauron bleu", + "block.middle-earth.banner.eye_of_sauron.brown": "Motif de l'Œil de Sauron marron", + "block.middle-earth.banner.eye_of_sauron.cyan": "Motif de l'Œil de Sauron cyan", + "block.middle-earth.banner.eye_of_sauron.gray": "Motif de l'Œil de Sauron gris", + "block.middle-earth.banner.eye_of_sauron.green": "Motif de l'Œil de Sauron vert", + "block.middle-earth.banner.eye_of_sauron.light_blue": "Motif de l'Œil de Sauron bleu clair", + "block.middle-earth.banner.eye_of_sauron.light_gray": "Motif de l'Œil de Sauron gris clair", + "block.middle-earth.banner.eye_of_sauron.lime": "Motif de l'Œil de Sauron vert clair", + "block.middle-earth.banner.eye_of_sauron.magenta": "Motif de l'Œil de Sauron magenta", + "block.middle-earth.banner.eye_of_sauron.orange": "Motif de l'Œil de Sauron orange", + "block.middle-earth.banner.eye_of_sauron.pink": "Motif de l'Œil de Sauron rose", + "block.middle-earth.banner.eye_of_sauron.purple": "Motif de l'Œil de Sauron violet", + "block.middle-earth.banner.eye_of_sauron.red": "Motif de l'Œil de Sauron rouge", + "block.middle-earth.banner.eye_of_sauron.white": "Motif de l'Œil de Sauron blanc", + "block.middle-earth.banner.eye_of_sauron.yellow": "Motif de l'Œil de Sauron jaune", + "block.middle-earth.banner.goldenwood.black": "Bois doré noir", + "block.middle-earth.banner.goldenwood.blue": "Bois doré bleu", + "block.middle-earth.banner.goldenwood.brown": "Bois doré marron", + "block.middle-earth.banner.goldenwood.cyan": "Bois doré cyan", + "block.middle-earth.banner.goldenwood.gray": "Bois doré gris", + "block.middle-earth.banner.goldenwood.green": "Bois doré vert", + "block.middle-earth.banner.goldenwood.light_blue": "Bois doré bleu clair", + "block.middle-earth.banner.goldenwood.light_gray": "Bois doré gris clair", + "block.middle-earth.banner.goldenwood.lime": "Bois doré vert clair", + "block.middle-earth.banner.goldenwood.magenta": "Bois doré magenta", + "block.middle-earth.banner.goldenwood.orange": "Bois doré orange", + "block.middle-earth.banner.goldenwood.pink": "Bois doré rose", + "block.middle-earth.banner.goldenwood.purple": "Bois doré violet", + "block.middle-earth.banner.goldenwood.red": "Bois doré rouge", + "block.middle-earth.banner.goldenwood.white": "Bois doré blanc", + "block.middle-earth.banner.goldenwood.yellow": "Bois doré jaune", + "block.middle-earth.banner.great_eye.black": "Motif du Grand Œil noir", + "block.middle-earth.banner.great_eye.blue": "Motif du Grand Œil bleu", + "block.middle-earth.banner.great_eye.brown": "Motif du Grand Œil marron", + "block.middle-earth.banner.great_eye.cyan": "Motif du Grand Œil cyan", + "block.middle-earth.banner.great_eye.gray": "Motif du Grand Œil gris", + "block.middle-earth.banner.great_eye.green": "Motif du Grand Œil vert", + "block.middle-earth.banner.great_eye.light_blue": "Motif du Grand Œil bleu clair", + "block.middle-earth.banner.great_eye.light_gray": "Motif du Grand Œil gris clair", + "block.middle-earth.banner.great_eye.lime": "Motif du Grand Œil vert clair", + "block.middle-earth.banner.great_eye.magenta": "Motif du Grand Œil magenta", + "block.middle-earth.banner.great_eye.orange": "Motif du Grand Œil orange", + "block.middle-earth.banner.great_eye.pink": "Motif du Grand Œil rose", + "block.middle-earth.banner.great_eye.purple": "Motif du Grand Œil violet", + "block.middle-earth.banner.great_eye.red": "Motif du Grand Œil rouge", + "block.middle-earth.banner.great_eye.white": "Motif du Grand Œil blanc", + "block.middle-earth.banner.great_eye.yellow": "Motif du Grand Œil jaune", + "block.middle-earth.banner.hand.black": "Main noire", + "block.middle-earth.banner.hand.blue": "Main bleue", + "block.middle-earth.banner.hand.brown": "Main marron", + "block.middle-earth.banner.hand.cyan": "Main cyan", + "block.middle-earth.banner.hand.gray": "Main grise", + "block.middle-earth.banner.hand.green": "Main verte", + "block.middle-earth.banner.hand.light_blue": "Main bleu clair", + "block.middle-earth.banner.hand.light_gray": "Main gris clair", + "block.middle-earth.banner.hand.lime": "Main vert clair", + "block.middle-earth.banner.hand.magenta": "Main magenta", + "block.middle-earth.banner.hand.orange": "Main orange", + "block.middle-earth.banner.hand.pink": "Main rose", + "block.middle-earth.banner.hand.purple": "Main violette", + "block.middle-earth.banner.hand.red": "Main rouge", + "block.middle-earth.banner.hand.white": "Main blanche", + "block.middle-earth.banner.hand.yellow": "Main jaune", + "block.middle-earth.banner.horse.black": "Cheval noir", + "block.middle-earth.banner.horse.blue": "Cheval bleu", + "block.middle-earth.banner.horse.brown": "Cheval marron", + "block.middle-earth.banner.horse.cyan": "Cheval cyan", + "block.middle-earth.banner.horse.gray": "Cheval gris", + "block.middle-earth.banner.horse.green": "Cheval vert", + "block.middle-earth.banner.horse.light_blue": "Cheval bleu clair", + "block.middle-earth.banner.horse.light_gray": "Cheval gris clair", + "block.middle-earth.banner.horse.lime": "Cheval vert clair", + "block.middle-earth.banner.horse.magenta": "Cheval magenta", + "block.middle-earth.banner.horse.orange": "Cheval orange", + "block.middle-earth.banner.horse.pink": "Cheval rose", + "block.middle-earth.banner.horse.purple": "Cheval violet", + "block.middle-earth.banner.horse.red": "Cheval rouge", + "block.middle-earth.banner.horse.white": "Cheval blanc", + "block.middle-earth.banner.horse.yellow": "Cheval jaune", + "block.middle-earth.banner.horse_head.black": "Tête de cheval noire", + "block.middle-earth.banner.horse_head.blue": "Tête de cheval bleue", + "block.middle-earth.banner.horse_head.brown": "Tête de cheval marron", + "block.middle-earth.banner.horse_head.cyan": "Tête de cheval cyan", + "block.middle-earth.banner.horse_head.gray": "Tête de cheval grise", + "block.middle-earth.banner.horse_head.green": "Tête de cheval verte", + "block.middle-earth.banner.horse_head.light_blue": "Tête de cheval bleu clair", + "block.middle-earth.banner.horse_head.light_gray": "Tête de cheval gris clair", + "block.middle-earth.banner.horse_head.lime": "Tête de cheval vert clair", + "block.middle-earth.banner.horse_head.magenta": "Tête de cheval magenta", + "block.middle-earth.banner.horse_head.orange": "Tête de cheval orange", + "block.middle-earth.banner.horse_head.pink": "Tête de cheval rose", + "block.middle-earth.banner.horse_head.purple": "Tête de cheval violette", + "block.middle-earth.banner.horse_head.red": "Tête de cheval rouge", + "block.middle-earth.banner.horse_head.white": "Tête de cheval blanche", + "block.middle-earth.banner.horse_head.yellow": "Tête de cheval jaune", + "block.middle-earth.banner.mallorn.black": "Mallorn noir", + "block.middle-earth.banner.mallorn.blue": "Mallorn bleu", + "block.middle-earth.banner.mallorn.brown": "Mallorn marron", + "block.middle-earth.banner.mallorn.cyan": "Mallorn cyan", + "block.middle-earth.banner.mallorn.gray": "Mallorn gris", + "block.middle-earth.banner.mallorn.green": "Mallorn vert", + "block.middle-earth.banner.mallorn.light_blue": "Mallorn bleu clair", + "block.middle-earth.banner.mallorn.light_gray": "Mallorn gris clair", + "block.middle-earth.banner.mallorn.lime": "Mallorn vert clair", + "block.middle-earth.banner.mallorn.magenta": "Mallorn magenta", + "block.middle-earth.banner.mallorn.orange": "Mallorn orange", + "block.middle-earth.banner.mallorn.pink": "Mallorn rose", + "block.middle-earth.banner.mallorn.purple": "Mallorn violet", + "block.middle-earth.banner.mallorn.red": "Mallorn rouge", + "block.middle-earth.banner.mallorn.white": "Mallorn blanc", + "block.middle-earth.banner.mallorn.yellow": "Mallorn jaune", + "block.middle-earth.banner.painted_eye.black": "Motif d'œil peint noir", + "block.middle-earth.banner.painted_eye.blue": "Motif d'œil peint bleu", + "block.middle-earth.banner.painted_eye.brown": "Motif d'œil peint marron", + "block.middle-earth.banner.painted_eye.cyan": "Motif d'œil peint cyan", + "block.middle-earth.banner.painted_eye.gray": "Motif d'œil peint gris", + "block.middle-earth.banner.painted_eye.green": "Motif d'œil peint vert", + "block.middle-earth.banner.painted_eye.light_blue": "Motif d'œil peint bleu clair", + "block.middle-earth.banner.painted_eye.light_gray": "Motif d'œil peint gris clair", + "block.middle-earth.banner.painted_eye.lime": "Motif d'œil peint vert clair", + "block.middle-earth.banner.painted_eye.magenta": "Motif d'œil peint magenta", + "block.middle-earth.banner.painted_eye.orange": "Motif d'œil peint orange", + "block.middle-earth.banner.painted_eye.pink": "Motif d'œil peint rose", + "block.middle-earth.banner.painted_eye.purple": "Motif d'œil peint violet", + "block.middle-earth.banner.painted_eye.red": "Motif d'œil peint rouge", + "block.middle-earth.banner.painted_eye.white": "Motif d'œil peint blanc", + "block.middle-earth.banner.painted_eye.yellow": "Motif d'œil peint jaune", + "block.middle-earth.banner.pipe.black": "Pipe noire", + "block.middle-earth.banner.pipe.blue": "Pipe bleue", + "block.middle-earth.banner.pipe.brown": "Pipe marron", + "block.middle-earth.banner.pipe.cyan": "Pipe cyan", + "block.middle-earth.banner.pipe.gray": "Pipe grise", + "block.middle-earth.banner.pipe.green": "Pipe verte", + "block.middle-earth.banner.pipe.light_blue": "Pipe bleu clair", + "block.middle-earth.banner.pipe.light_gray": "Pipe gris clair", + "block.middle-earth.banner.pipe.lime": "Pipe vert clair", + "block.middle-earth.banner.pipe.magenta": "Pipe magenta", + "block.middle-earth.banner.pipe.orange": "Pipe orange", + "block.middle-earth.banner.pipe.pink": "Pipe rose", + "block.middle-earth.banner.pipe.purple": "Pipe violette", + "block.middle-earth.banner.pipe.red": "Pipe rouge", + "block.middle-earth.banner.pipe.white": "Pipe blanche", + "block.middle-earth.banner.pipe.yellow": "Pipe jaune", + "block.middle-earth.banner.small_circle.black": "Petit cercle noir", + "block.middle-earth.banner.small_circle.blue": "Petit cercle bleu", + "block.middle-earth.banner.small_circle.brown": "Petit cercle marron", + "block.middle-earth.banner.small_circle.cyan": "Petit cercle cyan", + "block.middle-earth.banner.small_circle.gray": "Petit cercle gris", + "block.middle-earth.banner.small_circle.green": "Petit cercle vert", + "block.middle-earth.banner.small_circle.light_blue": "Petit cercle bleu clair", + "block.middle-earth.banner.small_circle.light_gray": "Petit cercle gris clair", + "block.middle-earth.banner.small_circle.lime": "Petit cercle vert clair", + "block.middle-earth.banner.small_circle.magenta": "Petit cercle magenta", + "block.middle-earth.banner.small_circle.orange": "Petit cercle orange", + "block.middle-earth.banner.small_circle.pink": "Petit cercle rose", + "block.middle-earth.banner.small_circle.purple": "Petit cercle violet", + "block.middle-earth.banner.small_circle.red": "Petit cercle rouge", + "block.middle-earth.banner.small_circle.white": "Petit cercle blanc", + "block.middle-earth.banner.small_circle.yellow": "Petit cercle jaune", + "block.middle-earth.banner.snail.black": "Escargot noir", + "block.middle-earth.banner.snail.blue": "Escargot bleu", + "block.middle-earth.banner.snail.brown": "Escargot marron", + "block.middle-earth.banner.snail.cyan": "Escargot cyan", + "block.middle-earth.banner.snail.gray": "Escargot gris", + "block.middle-earth.banner.snail.green": "Escargot vert", + "block.middle-earth.banner.snail.light_blue": "Escargot bleu clair", + "block.middle-earth.banner.snail.light_gray": "Escargot gris clair", + "block.middle-earth.banner.snail.lime": "Escargot vert clair", + "block.middle-earth.banner.snail.magenta": "Escargot magenta", + "block.middle-earth.banner.snail.orange": "Escargot orange", + "block.middle-earth.banner.snail.pink": "Escargot rose", + "block.middle-earth.banner.snail.purple": "Escargot violet", + "block.middle-earth.banner.snail.red": "Escargot rouge", + "block.middle-earth.banner.snail.white": "Escargot blanc", + "block.middle-earth.banner.snail.yellow": "Escargot jaune", + "block.middle-earth.banner.star_and_leaf.black": "Étoile et feuille noire", + "block.middle-earth.banner.star_and_leaf.blue": "Étoile et feuille bleue", + "block.middle-earth.banner.star_and_leaf.brown": "Étoile et feuille marron", + "block.middle-earth.banner.star_and_leaf.cyan": "Étoile et feuille cyan", + "block.middle-earth.banner.star_and_leaf.gray": "Étoile et feuille grise", + "block.middle-earth.banner.star_and_leaf.green": "Étoile et feuille verte", + "block.middle-earth.banner.star_and_leaf.light_blue": "Étoile et feuille bleu clair", + "block.middle-earth.banner.star_and_leaf.light_gray": "Étoile et feuille gris clair", + "block.middle-earth.banner.star_and_leaf.lime": "Étoile et feuille vert clair", + "block.middle-earth.banner.star_and_leaf.magenta": "Étoile et feuille magenta", + "block.middle-earth.banner.star_and_leaf.orange": "Étoile et feuille orange", + "block.middle-earth.banner.star_and_leaf.pink": "Étoile et feuille rose", + "block.middle-earth.banner.star_and_leaf.purple": "Étoile et feuille violette", + "block.middle-earth.banner.star_and_leaf.red": "Étoile et feuille rouge", + "block.middle-earth.banner.star_and_leaf.white": "Étoile et feuille blanche", + "block.middle-earth.banner.star_and_leaf.yellow": "Étoile et feuille jaune", + "block.middle-earth.banner.tree.black": "Arbre noir", + "block.middle-earth.banner.tree.blue": "Arbre bleu", + "block.middle-earth.banner.tree.brown": "Arbre marron", + "block.middle-earth.banner.tree.cyan": "Arbre cyan", + "block.middle-earth.banner.tree.gray": "Arbre gris", + "block.middle-earth.banner.tree.green": "Arbre vert", + "block.middle-earth.banner.tree.light_blue": "Arbre bleu clair", + "block.middle-earth.banner.tree.light_gray": "Arbre gris clair", + "block.middle-earth.banner.tree.lime": "Arbre vert clair", + "block.middle-earth.banner.tree.magenta": "Arbre magenta", + "block.middle-earth.banner.tree.orange": "Arbre orange", + "block.middle-earth.banner.tree.pink": "Arbre rose", + "block.middle-earth.banner.tree.purple": "Arbre violet", + "block.middle-earth.banner.tree.red": "Arbre rouge", + "block.middle-earth.banner.tree.white": "Arbre blanc", + "block.middle-earth.banner.tree.yellow": "Arbre jaune", + "block.middle-earth.banner.veil.black": "Voile noir", + "block.middle-earth.banner.veil.blue": "Voile bleu", + "block.middle-earth.banner.veil.brown": "Voile marron", + "block.middle-earth.banner.veil.cyan": "Voile cyan", + "block.middle-earth.banner.veil.gray": "Voile gris", + "block.middle-earth.banner.veil.green": "Voile vert", + "block.middle-earth.banner.veil.light_blue": "Voile bleu clair", + "block.middle-earth.banner.veil.light_gray": "Voile gris clair", + "block.middle-earth.banner.veil.lime": "Voile vert clair", + "block.middle-earth.banner.veil.magenta": "Voile magenta", + "block.middle-earth.banner.veil.orange": "Voile orange", + "block.middle-earth.banner.veil.pink": "Voile rose", + "block.middle-earth.banner.veil.purple": "Voile violet", + "block.middle-earth.banner.veil.red": "Voile rouge", + "block.middle-earth.banner.veil.white": "Voile blanc", + "block.middle-earth.banner.veil.yellow": "Voile jaune", + "block.middle-earth.basalt_bricks": "Briques de basalte", + "block.middle-earth.basalt_brickwork": "Maçonnerie en basalte", + "block.middle-earth.basalt_brickwork_slab": "Dalle de maçonnerie en basalte", + "block.middle-earth.basalt_brickwork_stairs": "Escalier en maçonnerie de basalte", + "block.middle-earth.basalt_brickwork_vertical_slab": "Dalle verticale de maçonnerie en basalte", + "block.middle-earth.basalt_brickwork_wall": "Muret en maçonnerie de basalte", + "block.middle-earth.basalt_button": "Bouton en basalte", + "block.middle-earth.basalt_chair": "Chaise en basalte", + "block.middle-earth.basalt_pillar": "Pilier en basalte", + "block.middle-earth.basalt_pressure_plate": "Plaque de pression en basalte", + "block.middle-earth.basalt_rocks": "Éboulis de basalte", + "block.middle-earth.basalt_stool": "Tabouret en basalte", + "block.middle-earth.basalt_table": "Table en basalte", + "block.middle-earth.basalt_tiles": "Basalte carrelé", + "block.middle-earth.basalt_trapdoor": "Trappe en basalte", + "block.middle-earth.beach_grass": "Herbe de plage", + "block.middle-earth.beech_bench": "Banc en hêtre", + "block.middle-earth.beech_button": "Bouton en hêtre", + "block.middle-earth.beech_chair": "Chaise en hêtre", + "block.middle-earth.beech_door": "Porte en hêtre", + "block.middle-earth.beech_fence": "Clôture en hêtre", + "block.middle-earth.beech_fence_gate": "Portillon en hêtre", + "block.middle-earth.beech_ladder": "Échelle en hêtre", + "block.middle-earth.beech_leaves": "Feuilles de hêtre", + "block.middle-earth.beech_log": "Bûche de hêtre", + "block.middle-earth.beech_planks": "Planches de hêtre", + "block.middle-earth.beech_pressure_plate": "Plaque de pression en hêtre", + "block.middle-earth.beech_roofing": "Toiture en hêtre", + "block.middle-earth.beech_roofing_slab": "Dalle de toiture en hêtre", + "block.middle-earth.beech_roofing_stairs": "Escalier de toiture en hêtre", + "block.middle-earth.beech_roofing_vertical_slab": "Dalle verticale de toiture en hêtre", + "block.middle-earth.beech_roofing_wall": "Muret de toiture en hêtre", + "block.middle-earth.beech_sapling": "Pousse de hêtre", + "block.middle-earth.beech_shingles": "Bardeaux en hêtre", + "block.middle-earth.beech_shingles_slab": "Dalle de bardeaux en hêtre", + "block.middle-earth.beech_shingles_stairs": "Escalier de bardeaux en hêtre", + "block.middle-earth.beech_shingles_vertical_slab": "Dalle verticale de bardeaux en hêtre", + "block.middle-earth.beech_shingles_wall": "Muret de bardeaux en hêtre", + "block.middle-earth.beech_slab": "Dalle en hêtre", + "block.middle-earth.beech_stairs": "Escaliers en hêtre", + "block.middle-earth.beech_stool": "Tabouret en hêtre", + "block.middle-earth.beech_table": "Table en hêtre", + "block.middle-earth.beech_trapdoor": "Trappe en hêtre", + "block.middle-earth.beech_vertical_slab": "Dalle verticale en hêtre", + "block.middle-earth.beech_wood": "Planches de hêtre", + "block.middle-earth.beech_wood_fence": "Barrière en hêtre", + "block.middle-earth.beech_wood_slab": "Dalle en bois de hêtre", + "block.middle-earth.beech_wood_stairs": "Escaliers en bois de hêtre", + "block.middle-earth.beech_wood_vertical_slab": "Dalle verticale en bois de hêtre", + "block.middle-earth.beech_wood_wall": "Muret en hêtre", + "block.middle-earth.bellows": "Soufflets", + "block.middle-earth.berry_holly_leaves": "Feuilles de houx à baies", + "block.middle-earth.big_brazier": "Grand brasero", + "block.middle-earth.birch_bench": "Banc en bouleau", + "block.middle-earth.birch_chair": "Chaise en bouleau", + "block.middle-earth.birch_ladder": "Échelle en bouleau", + "block.middle-earth.birch_shingles": "Bardeaux de bouleau", + "block.middle-earth.birch_shingles_slab": "Dalle en bardeaux de bouleau", + "block.middle-earth.birch_shingles_stairs": "Escaliers en bardeaux de bouleau", + "block.middle-earth.birch_shingles_vertical_slab": "Dalle verticale en bardeaux de bouleau", + "block.middle-earth.birch_shingles_wall": "Muret en bardeaux de bouleau", + "block.middle-earth.birch_stool": "Tabouret en bouleau", + "block.middle-earth.birch_table": "Table en bouleau", + "block.middle-earth.birch_vertical_slab": "Dalle verticale en bouleau", + "block.middle-earth.birch_wood_fence": "Barrière en bois de bouleau", + "block.middle-earth.birch_wood_slab": "Dalle en bois de bouleau", + "block.middle-earth.birch_wood_stairs": "Escalier en bois de bouleau", + "block.middle-earth.birch_wood_vertical_slab": "Dalle verticale en bois de bouleau", + "block.middle-earth.birch_wood_wall": "Muret de bois de bouleau", + "block.middle-earth.black_clay_tiling": "Tuile d'argile noire", + "block.middle-earth.black_clay_tiling_slab": "Dalle en tuile d'argile noire", + "block.middle-earth.black_clay_tiling_stairs": "Escaliers en tuile d'argile noire", + "block.middle-earth.black_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile noire", + "block.middle-earth.black_clay_tiling_wall": "Muret en tuile d'argile noire", + "block.middle-earth.black_lebethron_bench": "Banc en Lebethron noir", + "block.middle-earth.black_lebethron_button": "Bouton en Lebethron noir", + "block.middle-earth.black_lebethron_chair": "Chaise en Lebethron noir", + "block.middle-earth.black_lebethron_door": "Porte en Lebethron noir", + "block.middle-earth.black_lebethron_fence": "Barrière en Lebethron noir", + "block.middle-earth.black_lebethron_fence_gate": "Portillon en Lebethron noir", + "block.middle-earth.black_lebethron_ladder": "Échelle en Lebethron noir", + "block.middle-earth.black_lebethron_log": "Bûche de Lebethron noir", + "block.middle-earth.black_lebethron_planks": "Planches de Lebethron noir", + "block.middle-earth.black_lebethron_pressure_plate": "Plaque de pression en Lebethron noir", + "block.middle-earth.black_lebethron_roofing": "Toiture en Lebethron noir", + "block.middle-earth.black_lebethron_roofing_slab": "Dalle de toiture en Lebethron noir", + "block.middle-earth.black_lebethron_roofing_stairs": "Escalier de toiture en Lebethron noir", + "block.middle-earth.black_lebethron_roofing_vertical_slab": "Dalle verticale de toiture en Lebethron noir", + "block.middle-earth.black_lebethron_roofing_wall": "Muret de toiture en Lebethron noir", + "block.middle-earth.black_lebethron_shingles": "Bardeaux en Lebethron noir", + "block.middle-earth.black_lebethron_shingles_slab": "Dalle en bardeaux de Lebethron noir", + "block.middle-earth.black_lebethron_shingles_stairs": "Escaliers en bardeaux de Lebethron noir", + "block.middle-earth.black_lebethron_shingles_vertical_slab": "Dalle verticale en bardeaux de Lebethron noir", + "block.middle-earth.black_lebethron_shingles_wall": "Muret en bardeaux de Lebethron noir", + "block.middle-earth.black_lebethron_slab": "Dalle en Lebethron noir", + "block.middle-earth.black_lebethron_stairs": "Escaliers en Lebethron noir", + "block.middle-earth.black_lebethron_stool": "Tabouret en Lebethron noir", + "block.middle-earth.black_lebethron_table": "Table en Lebethron noir", + "block.middle-earth.black_lebethron_trapdoor": "Trappe en Lebethron noir", + "block.middle-earth.black_lebethron_vertical_slab": "Dalle verticale en Lebethron noir", + "block.middle-earth.black_lebethron_wood": "Bois Lebethron noir", + "block.middle-earth.black_lebethron_wood_fence": "Clôture en bois de Lebethron noir", + "block.middle-earth.black_lebethron_wood_slab": "Dalle en bois de Lebethron noir", + "block.middle-earth.black_lebethron_wood_stairs": "Escaliers en bois de Lebethron noir", + "block.middle-earth.black_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron noir", + "block.middle-earth.black_lebethron_wood_wall": "Muret en bois de Lebethron noir", + "block.middle-earth.black_pine_bench": "Banc en pin noir", + "block.middle-earth.black_pine_button": "Bouton en pin noir", + "block.middle-earth.black_pine_chair": "Chaise en pin noir", + "block.middle-earth.black_pine_door": "Porte en pin noir", + "block.middle-earth.black_pine_fence": "Barrière en pin noir", + "block.middle-earth.black_pine_fence_gate": "Portillon en pin noir", + "block.middle-earth.black_pine_ladder": "Échelle en pin noir", + "block.middle-earth.black_pine_leaves": "Feuilles de pin noir", + "block.middle-earth.black_pine_log": "Bûche de pin noir", + "block.middle-earth.black_pine_planks": "Planches de pin noir", + "block.middle-earth.black_pine_pressure_plate": "Plaque de pression en pin noir", + "block.middle-earth.black_pine_roofing": "Toiture en pin noir", + "block.middle-earth.black_pine_roofing_slab": "Dalle de toiture en pin noir", + "block.middle-earth.black_pine_roofing_stairs": "Escalier de toiture en pin noir", + "block.middle-earth.black_pine_roofing_vertical_slab": "Dalle verticale de toiture en pin noir", + "block.middle-earth.black_pine_roofing_wall": "Muret de toiture en pin noir", + "block.middle-earth.black_pine_sapling": "Pousse de pin noir", + "block.middle-earth.black_pine_shingles": "Bardeaux de pin noir", + "block.middle-earth.black_pine_shingles_slab": "Dalle en bardeaux de pin noir", + "block.middle-earth.black_pine_shingles_stairs": "Escaliers en bardeaux de pin noir", + "block.middle-earth.black_pine_shingles_vertical_slab": "Dalle verticale en bardeaux de pin noir", + "block.middle-earth.black_pine_shingles_wall": "Muret en bardeaux de pin noir", + "block.middle-earth.black_pine_slab": "Dalle en pin noir", + "block.middle-earth.black_pine_stairs": "Escaliers en pin noir", + "block.middle-earth.black_pine_stool": "Tabouret en pin noir", + "block.middle-earth.black_pine_table": "Table en pin noir", + "block.middle-earth.black_pine_trapdoor": "Trappe en pin noir", + "block.middle-earth.black_pine_vertical_slab": "Dalle verticale en pin noir", + "block.middle-earth.black_pine_wood": "Planches de pin noir", + "block.middle-earth.black_pine_wood_fence": "Barrière en pin noir", + "block.middle-earth.black_pine_wood_slab": "Dalle en bois de pin noir", + "block.middle-earth.black_pine_wood_stairs": "Escaliers en bois de pin noir", + "block.middle-earth.black_pine_wood_vertical_slab": "Dalle verticale en bois de pin noir", + "block.middle-earth.black_pine_wood_wall": "Muret en pin noir", + "block.middle-earth.black_sand": "Sable noir", + "block.middle-earth.black_sand_layer": "Couche de sable noir", + "block.middle-earth.black_stained_lead_glass": "Verre plombé noir", + "block.middle-earth.black_stained_lead_glass_pane": "Vitre plombée noire", + "block.middle-earth.black_wattle_and_white_daub": "Clayonnage noir et torchis blanc", + "block.middle-earth.black_wattle_and_white_daub_cross": "Clayonnage noir et torchis blanc en croix", + "block.middle-earth.black_wattle_and_white_daub_diamond": "Clayonnage noir et torchis blanc en losange", + "block.middle-earth.black_wattle_and_white_daub_left": "Clayonnage noir et torchis blanc à gauche", + "block.middle-earth.black_wattle_and_white_daub_pillar": "Pilier de clayonnage noir et torchis blanc", + "block.middle-earth.black_wattle_and_white_daub_right": "Clayonnage noir et torchis blanc à droite", + "block.middle-earth.black_wattle_framed_window": "Fenêtre à clayonnage noir", + "block.middle-earth.black_wattle_framed_window_pane": "Fenêtre plate à clayonnage noir", + "block.middle-earth.black_wattle_trapdoor": "Trappe en clayonnage noir", + "block.middle-earth.black_wool_slab": "Dalle en laine noire", + "block.middle-earth.black_wool_stairs": "Escaliers en laine noire", + "block.middle-earth.black_wool_vertical_slab": "Dalle verticale en laine noire", + "block.middle-earth.blackstone_brickwork": "Maçonnerie en pierre noire", + "block.middle-earth.blackstone_brickwork_slab": "Dalle de maçonnerie en pierre noire", + "block.middle-earth.blackstone_brickwork_stairs": "Escalier en maçonnerie de pierre noire", + "block.middle-earth.blackstone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierre noire", + "block.middle-earth.blackstone_brickwork_wall": "Muret en maçonnerie de pierre noire", + "block.middle-earth.blackstone_button": "Bouton en pierre noire", + "block.middle-earth.blackstone_carved_window": "Fenêtre sculptée en pierre noire", + "block.middle-earth.blackstone_chair": "Chaise en pierre noire", + "block.middle-earth.blackstone_pillar": "Pilier en pierre noire", + "block.middle-earth.blackstone_pressure_plate": "Plaque de pression en pierre noire", + "block.middle-earth.blackstone_rocks": "Éboulis de pierre noire", + "block.middle-earth.blackstone_stool": "Tabouret en pierre noire", + "block.middle-earth.blackstone_table": "Table en pierre noire", + "block.middle-earth.blackstone_tiles": "Roche noire carrelée", + "block.middle-earth.blackstone_trapdoor": "Trappe en pierre noire", + "block.middle-earth.blackstone_vertical_slab": "Dalle verticale en roche noire", + "block.middle-earth.blue_clay_tiling": "Tuile d'argile bleue", + "block.middle-earth.blue_clay_tiling_slab": "Dalle en tuile d'argile bleue", + "block.middle-earth.blue_clay_tiling_stairs": "Escaliers en tuile d'argile bleue", + "block.middle-earth.blue_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile bleue", + "block.middle-earth.blue_clay_tiling_wall": "Muret en tuile d'argile bleue", + "block.middle-earth.blue_cushion": "Coussin bleu", + "block.middle-earth.blue_hobbit_door": "Porte Hobbit bleue", + "block.middle-earth.blue_roof_tiles": "Tuiles de toit bleues", + "block.middle-earth.blue_stained_lead_glass": "Verre plombé bleu", + "block.middle-earth.blue_stained_lead_glass_pane": "Vitre plombée bleue", + "block.middle-earth.blue_tuff": "Tuf bleu", + "block.middle-earth.blue_tuff_bricks": "Briques en tuf bleu", + "block.middle-earth.blue_tuff_button": "Bouton en tuf bleu", + "block.middle-earth.blue_tuff_chair": "Chaise en tuf bleu", + "block.middle-earth.blue_tuff_pillar": "Pilier en tuf bleu", + "block.middle-earth.blue_tuff_pressure_plate": "Plaque de pression en tuf bleu", + "block.middle-earth.blue_tuff_rocks": "Éboulis de tuf bleu", + "block.middle-earth.blue_tuff_slab": "Dalle en tuf bleu", + "block.middle-earth.blue_tuff_stairs": "Escaliers en tuf bleu", + "block.middle-earth.blue_tuff_stool": "Tabouret en tuf bleu", + "block.middle-earth.blue_tuff_table": "Table en tuf bleu", + "block.middle-earth.blue_tuff_tiles": "Tuf bleu carrelé", + "block.middle-earth.blue_tuff_trapdoor": "Trappe en tuf bleu", + "block.middle-earth.blue_tuff_vertical_slab": "Dalle verticale en tuf bleu", + "block.middle-earth.blue_tuff_wall": "Muret en tuf bleu", + "block.middle-earth.blue_wool_slab": "Dalle en laine bleue", + "block.middle-earth.blue_wool_stairs": "Escaliers en laine bleue", + "block.middle-earth.blue_wool_vertical_slab": "Dalle verticale en laine bleue", + "block.middle-earth.bonfire": "Feu de joie", + "block.middle-earth.bracken": "Fougère-aigle", + "block.middle-earth.brick_vertical_slab": "Dalle verticale en brique", + "block.middle-earth.bright_blue_roof_tiles": "Tuiles de toit bleu vif", + "block.middle-earth.bright_cyan_roof_tiles": "Tuiles de toit cyan vif", + "block.middle-earth.bright_green_roof_tiles": "Tuiles de toit vert vif", + "block.middle-earth.bright_red_roof_tiles": "Tuiles de toit rouge vif", + "block.middle-earth.bright_yellow_roof_tiles": "Tuiles de toit jaune vif", + "block.middle-earth.bronze_block": "Bloc de bronze", + "block.middle-earth.bronze_broad_chain": "Grosse chaîne en bronze", + "block.middle-earth.bronze_chain": "Chaîne en bronze", + "block.middle-earth.brown_bolete": "Bolet brun", + "block.middle-earth.brown_bolete_block": "Bloc de bolet brun", + "block.middle-earth.brown_bolete_tiller": "Talle de bolet brun", + "block.middle-earth.brown_clay_tiling": "Tuile d'argile brune", + "block.middle-earth.brown_clay_tiling_slab": "Dalle en tuile d'argile brune", + "block.middle-earth.brown_clay_tiling_stairs": "Escaliers en tuile d'argile brune", + "block.middle-earth.brown_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile brune", + "block.middle-earth.brown_clay_tiling_wall": "Muret en tuile d'argile brune", + "block.middle-earth.brown_cushion": "Coussin marron", + "block.middle-earth.brown_grass": "Herbe brune", + "block.middle-earth.brown_roof_tiles": "Tuiles de toit marron", + "block.middle-earth.brown_stained_lead_glass": "Verre plombé marron", + "block.middle-earth.brown_stained_lead_glass_pane": "Vitre plombée marron", + "block.middle-earth.brown_wool_slab": "Dalle en laine marron", + "block.middle-earth.brown_wool_stairs": "Escaliers en laine marron", + "block.middle-earth.brown_wool_vertical_slab": "Dalle verticale en laine marron", + "block.middle-earth.budding_citrine": "Druse de citrine", + "block.middle-earth.budding_glowstone": "Druse de pierre lumineuse", + "block.middle-earth.budding_quartz": "Druse de quartz", + "block.middle-earth.budding_red_agate": "Druse d'agate rouge", + "block.middle-earth.burzum_steel_block": "Bloc d'acier Uruk", + "block.middle-earth.calcite_bricks": "Briques en calcite", + "block.middle-earth.calcite_brickwork": "Maçonnerie en calcite", + "block.middle-earth.calcite_brickwork_slab": "Dalle de maçonnerie en calcite", + "block.middle-earth.calcite_brickwork_stairs": "Escalier en maçonnerie de calcite", + "block.middle-earth.calcite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en calcite", + "block.middle-earth.calcite_brickwork_wall": "Muret en maçonnerie de calcite", + "block.middle-earth.calcite_button": "Bouton en calcite", + "block.middle-earth.calcite_chair": "Chaise en calcite", + "block.middle-earth.calcite_coal_ore": "Minerai de charbon de calcite", + "block.middle-earth.calcite_copper_ore": "Minerai de cuivre de calcite", + "block.middle-earth.calcite_pillar": "Pilier en calcite", + "block.middle-earth.calcite_pressure_plate": "Plaque de pression en calcite", + "block.middle-earth.calcite_rocks": "Éboulis de calcite", + "block.middle-earth.calcite_slab": "Dalle en calcite", + "block.middle-earth.calcite_stairs": "Escalier en calcite", + "block.middle-earth.calcite_stool": "Tabouret en calcite", + "block.middle-earth.calcite_table": "Table en calcite", + "block.middle-earth.calcite_tiles": "Calcite carrelée", + "block.middle-earth.calcite_tin_ore": "Minerai d'étain de calcite", + "block.middle-earth.calcite_trapdoor": "Trappe en calcite", + "block.middle-earth.calcite_vertical_slab": "Dalle verticale en calcite", + "block.middle-earth.calcite_wall": "Muret en calcite", + "block.middle-earth.candle_heap": "Tas de bougies", + "block.middle-earth.cave_amanita": "Amanite de caverne", + "block.middle-earth.cave_amanita_block": "Bloc d'amanite de caverne", + "block.middle-earth.cave_amanita_tiller": "Talle d'amanite de caverne", + "block.middle-earth.cherry_bench": "Banc en cerisier", + "block.middle-earth.cherry_chair": "Chaise en cerisier", + "block.middle-earth.cherry_ladder": "Échelle en cerisier", + "block.middle-earth.cherry_shingles": "Bardeaux de cerisier", + "block.middle-earth.cherry_shingles_slab": "Dalle en bardeaux de cerisier", + "block.middle-earth.cherry_shingles_stairs": "Escaliers en bardeaux de cerisier", + "block.middle-earth.cherry_shingles_vertical_slab": "Dalle verticale en bardeaux de cerisier", + "block.middle-earth.cherry_shingles_wall": "Muret en bardeaux de cerisier", + "block.middle-earth.cherry_stool": "Tabouret en cerisier", + "block.middle-earth.cherry_table": "Table en cerisier", + "block.middle-earth.cherry_vertical_slab": "Dalle verticale en cerisier", + "block.middle-earth.cherry_wood_fence": "Barrière en bois de cerisier", + "block.middle-earth.cherry_wood_slab": "Dalle en bois de cerisier", + "block.middle-earth.cherry_wood_stairs": "Escalier en bois de cerisier", + "block.middle-earth.cherry_wood_vertical_slab": "Dalle verticale en bois de cerisier", + "block.middle-earth.cherry_wood_wall": "Muret en bois de cerisier", + "block.middle-earth.chestnut_bench": "Banc en châtaignier", + "block.middle-earth.chestnut_button": "Bouton en châtaignier", + "block.middle-earth.chestnut_chair": "Chaise en châtaignier", + "block.middle-earth.chestnut_door": "Porte en châtaignier", + "block.middle-earth.chestnut_fence": "Clôture en châtaignier", + "block.middle-earth.chestnut_fence_gate": "Portillon en châtaignier", + "block.middle-earth.chestnut_ladder": "Échelle en châtaignier", + "block.middle-earth.chestnut_leaves": "Feuilles de châtaignier", + "block.middle-earth.chestnut_log": "Bûche de châtaignier", + "block.middle-earth.chestnut_planks": "Planches de châtaignier", + "block.middle-earth.chestnut_pressure_plate": "Plaque de pression en châtaignier", + "block.middle-earth.chestnut_roofing": "Toiture en châtaignier", + "block.middle-earth.chestnut_roofing_slab": "Dalle de toiture en châtaignier", + "block.middle-earth.chestnut_roofing_stairs": "Escalier de toiture en châtaignier", + "block.middle-earth.chestnut_roofing_vertical_slab": "Dalle verticale de toiture en châtaignier", + "block.middle-earth.chestnut_roofing_wall": "Muret de toiture en châtaignier", + "block.middle-earth.chestnut_sapling": "Pousse de châtaignier", + "block.middle-earth.chestnut_shingles": "Bardeaux en châtaignier", + "block.middle-earth.chestnut_shingles_slab": "Dalle de bardeaux en châtaignier", + "block.middle-earth.chestnut_shingles_stairs": "Escalier de bardeaux en châtaignier", + "block.middle-earth.chestnut_shingles_vertical_slab": "Dalle verticale de bardeaux en châtaignier", + "block.middle-earth.chestnut_shingles_wall": "Muret de bardeaux en châtaignier", + "block.middle-earth.chestnut_slab": "Dalle en châtaignier", + "block.middle-earth.chestnut_stairs": "Escaliers en châtaignier", + "block.middle-earth.chestnut_stool": "Tabouret en châtaignier", + "block.middle-earth.chestnut_table": "Table en châtaignier", + "block.middle-earth.chestnut_trapdoor": "Trappe en châtaignier", + "block.middle-earth.chestnut_vertical_slab": "Dalle verticale en châtaignier", + "block.middle-earth.chestnut_wood": "Planches de châtaignier", + "block.middle-earth.chestnut_wood_fence": "Barrière en châtaignier", + "block.middle-earth.chestnut_wood_slab": "Dalle en bois de châtaignier", + "block.middle-earth.chestnut_wood_stairs": "Escaliers en bois de châtaignier", + "block.middle-earth.chestnut_wood_vertical_slab": "Dalle verticale en bois de châtaignier", + "block.middle-earth.chestnut_wood_wall": "Muret en châtaignier", + "block.middle-earth.chimney": "Cheminée", + "block.middle-earth.chiseled_andesite": "Andésite sculptée", + "block.middle-earth.chiseled_andesite_bricks": "Briques d'andésite sculptées", + "block.middle-earth.chiseled_andesite_tiles": "Andésite carrelée sculptée", + "block.middle-earth.chiseled_basalt": "Basalte sculpté", + "block.middle-earth.chiseled_basalt_bricks": "Briques de basalte sculptées", + "block.middle-earth.chiseled_basalt_tiles": "Basalte carrelé sculpté", + "block.middle-earth.chiseled_blackstone": "Pierre noire sculptée", + "block.middle-earth.chiseled_blackstone_tiles": "Roche noire carrelée sculptée", + "block.middle-earth.chiseled_blue_tuff_bricks": "Briques en tuf bleu sculptées", + "block.middle-earth.chiseled_calcite": "Calcite sculptée", + "block.middle-earth.chiseled_calcite_bricks": "Briques en calcite sculptées", + "block.middle-earth.chiseled_calcite_tiles": "Calcite carrelée sculptée", + "block.middle-earth.chiseled_deepslate_bricks": "Ardoise des abîmes taillée sculptée", + "block.middle-earth.chiseled_deepslate_tiles": "Ardoise des abîmes carrelée sculptée", + "block.middle-earth.chiseled_diorite": "Diorite sculptée", + "block.middle-earth.chiseled_diorite_bricks": "Briques de diorite sculptées", + "block.middle-earth.chiseled_diorite_tiles": "Diorite carrelée sculptée", + "block.middle-earth.chiseled_dolomite": "Dolomite sculptée", + "block.middle-earth.chiseled_dolomite_bricks": "Briques en dolomite sculptées", + "block.middle-earth.chiseled_dolomite_tiles": "Dolomite carrelée sculptée", + "block.middle-earth.chiseled_gabbro_bricks": "Briques en gabbro sculptées", + "block.middle-earth.chiseled_galonn": "Galonn sculptée", + "block.middle-earth.chiseled_galonn_bricks": "Briques en Galonn sculptées", + "block.middle-earth.chiseled_galonn_tiles": "Galonn carrelée sculptée", + "block.middle-earth.chiseled_gneiss": "Gneiss sculpté", + "block.middle-earth.chiseled_gneiss_bricks": "Briques en gneiss sculptées", + "block.middle-earth.chiseled_granite": "Granite sculpté", + "block.middle-earth.chiseled_granite_bricks": "Briques en granite sculptées", + "block.middle-earth.chiseled_granite_tiles": "Granite carrelé sculpté", + "block.middle-earth.chiseled_green_tuff": "Tuf vert sculpté", + "block.middle-earth.chiseled_green_tuff_bricks": "Briques en tuf vert sculptées", + "block.middle-earth.chiseled_green_tuff_tiles": "Tuf vert carrelé sculpté", + "block.middle-earth.chiseled_hematite": "Hématite sculptée", + "block.middle-earth.chiseled_hematite_bricks": "Briques en hématite sculptées", + "block.middle-earth.chiseled_ironstone": "Pierre de fer sculptée", + "block.middle-earth.chiseled_ironstone_bricks": "Briques en pierre de fer sculptées", + "block.middle-earth.chiseled_izheraban": "Izhêr'Aban sculptée", + "block.middle-earth.chiseled_izheraban_bricks": "Briques en Izhêr'Aban sculptées", + "block.middle-earth.chiseled_izheraban_tiles": "Izhêr'Aban carrelée sculptée", + "block.middle-earth.chiseled_limestone": "Calcaire sculpté", + "block.middle-earth.chiseled_limestone_bricks": "Briques de calcaire sculptées", + "block.middle-earth.chiseled_limestone_tiles": "Calcaire carrelé sculpté", + "block.middle-earth.chiseled_medgon": "Medgon sculptée", + "block.middle-earth.chiseled_medgon_bricks": "Briques en Medgon sculptées", + "block.middle-earth.chiseled_medgon_tiles": "Medgon carrelée sculptée", + "block.middle-earth.chiseled_nurgon_bricks": "Briques en Núrgon sculptées", + "block.middle-earth.chiseled_polished_andesite": "Andésite polie sculptée", + "block.middle-earth.chiseled_polished_basalt": "Basalte poli sculpté", + "block.middle-earth.chiseled_polished_blackstone_bricks": "Briques en pierre noire polie sculptées", + "block.middle-earth.chiseled_polished_blue_tuff": "Tuf bleu poli sculpté", + "block.middle-earth.chiseled_polished_calcite": "Calcite polie sculptée", + "block.middle-earth.chiseled_polished_deepslate": "Ardoise des abîmes polie sculptée", + "block.middle-earth.chiseled_polished_diorite": "Diorite polie sculptée", + "block.middle-earth.chiseled_polished_dolomite": "Dolomite polie sculptée", + "block.middle-earth.chiseled_polished_gabbro": "Gabbro poli sculpté", + "block.middle-earth.chiseled_polished_galonn": "Galonn polie sculptée", + "block.middle-earth.chiseled_polished_gneiss": "Gneiss poli sculpté", + "block.middle-earth.chiseled_polished_granite": "Granite poli sculpté", + "block.middle-earth.chiseled_polished_green_tuff": "Tuf vert poli sculpté", + "block.middle-earth.chiseled_polished_hematite": "Hématite polie sculptée", + "block.middle-earth.chiseled_polished_ironstone": "Pierre de fer polie sculptée", + "block.middle-earth.chiseled_polished_izheraban": "Izhêr'Aban polie sculptée", + "block.middle-earth.chiseled_polished_limestone": "Calcaire poli sculpté", + "block.middle-earth.chiseled_polished_medgon": "Medgon polie sculptée", + "block.middle-earth.chiseled_polished_nurgon": "Núrgon polie sculptée", + "block.middle-earth.chiseled_polished_pumice": "Pierre ponce polie sculptée", + "block.middle-earth.chiseled_polished_slate": "Ardoise polie sculptée", + "block.middle-earth.chiseled_polished_stone": "Roche polie sculptée", + "block.middle-earth.chiseled_polished_tuff": "Tuf poli sculpté", + "block.middle-earth.chiseled_polished_zigilaban": "Zigil'Aban polie sculptée", + "block.middle-earth.chiseled_pumice_bricks": "Briques en pierre ponce sculptées", + "block.middle-earth.chiseled_slate_bricks": "Briques en ardoise sculptées", + "block.middle-earth.chiseled_smooth_andesite": "Andésite lisse sculptée", + "block.middle-earth.chiseled_smooth_basalt": "Basalte lisse sculpté", + "block.middle-earth.chiseled_smooth_blackstone": "Roche noire lisse sculptée", + "block.middle-earth.chiseled_smooth_calcite": "Calcite lisse sculptée", + "block.middle-earth.chiseled_smooth_deepslate": "Ardoise des abîmes lisse sculptée", + "block.middle-earth.chiseled_smooth_diorite": "Diorite lisse sculptée", + "block.middle-earth.chiseled_smooth_dolomite": "Dolomite lisse sculptée", + "block.middle-earth.chiseled_smooth_galonn": "Galonn lisse sculptée", + "block.middle-earth.chiseled_smooth_granite": "Granite lisse sculpté", + "block.middle-earth.chiseled_smooth_green_tuff": "Tuf vert lisse sculpté", + "block.middle-earth.chiseled_smooth_izheraban": "Izhêr'Aban lisse sculptée", + "block.middle-earth.chiseled_smooth_limestone": "Calcaire lisse sculpté", + "block.middle-earth.chiseled_smooth_medgon": "Medgon lisse sculptée", + "block.middle-earth.chiseled_smooth_stone": "Pierre lisse sculptée", + "block.middle-earth.chiseled_smooth_tuff": "Tuf lisse sculpté", + "block.middle-earth.chiseled_stone": "Roche sculptée", + "block.middle-earth.chiseled_stone_tiles": "Roche carrelée sculptée", + "block.middle-earth.chiseled_tuff_tiles": "Tuf carrelé sculpté", + "block.middle-earth.chiseled_zigilaban": "Zigil'Aban sculptée", + "block.middle-earth.chiseled_zigilaban_bricks": "Briques en Zigil'Aban sculptées", + "block.middle-earth.citrine_block": "Bloc de citrine", + "block.middle-earth.citrine_cluster": "Amas de citrine", + "block.middle-earth.clay_tiling": "Tuile d'argile", + "block.middle-earth.clay_tiling_slab": "Dalle en tuile d'argile", + "block.middle-earth.clay_tiling_stairs": "Escaliers en tuile d'argile", + "block.middle-earth.clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile", + "block.middle-earth.clay_tiling_wall": "Muret en tuile d'argile", + "block.middle-earth.coarse_dirt_slab": "Dalle de terre stérile", + "block.middle-earth.coarse_dirt_stairs": "Escalier de terre stérile", + "block.middle-earth.coastal_panic_grass": "Panic amer", + "block.middle-earth.cobbled_andesite": "Pierre d'andésite", + "block.middle-earth.cobbled_andesite_slab": "Dalle en pierre d'andésite", + "block.middle-earth.cobbled_andesite_stairs": "Escaliers en pierre d'andésite", + "block.middle-earth.cobbled_andesite_vertical_slab": "Dalle verticale en pierre d'andésite", + "block.middle-earth.cobbled_andesite_wall": "Muret en pierre d'andésite", + "block.middle-earth.cobbled_basalt": "Pierre de basalte", + "block.middle-earth.cobbled_basalt_slab": "Dalle en pierre de basalte", + "block.middle-earth.cobbled_basalt_stairs": "Escaliers en pierre de basalte", + "block.middle-earth.cobbled_basalt_vertical_slab": "Dalle verticale en pierre de basalte", + "block.middle-earth.cobbled_basalt_wall": "Muret en pierre de basalte", + "block.middle-earth.cobbled_blackstone": "Pierre noire taillée", + "block.middle-earth.cobbled_blackstone_slab": "Dalle en pierre noire taillée", + "block.middle-earth.cobbled_blackstone_stairs": "Escalier en pierre noire taillée", + "block.middle-earth.cobbled_blackstone_vertical_slab": "Dalle verticale en pierre noire taillée", + "block.middle-earth.cobbled_blackstone_wall": "Muret en pierre noire taillée", + "block.middle-earth.cobbled_blue_tuff": "Pierre de tuf bleu", + "block.middle-earth.cobbled_blue_tuff_slab": "Dalle en pierre de tuf bleu", + "block.middle-earth.cobbled_blue_tuff_stairs": "Escaliers en pierre de tuf bleu", + "block.middle-earth.cobbled_blue_tuff_vertical_slab": "Dalle verticale en pierre de tuf bleu", + "block.middle-earth.cobbled_blue_tuff_wall": "Muret en pierre de tuf bleu", + "block.middle-earth.cobbled_calcite": "Pierre de calcite", + "block.middle-earth.cobbled_calcite_slab": "Dalle en pierre de calcite", + "block.middle-earth.cobbled_calcite_stairs": "Escaliers en pierres de calcite", + "block.middle-earth.cobbled_calcite_vertical_slab": "Dalle verticale en pierre de calcite", + "block.middle-earth.cobbled_calcite_wall": "Muret en pierre de calcite", + "block.middle-earth.cobbled_deepslate_vertical_slab": "Dalle verticale de pierre des abîmes", + "block.middle-earth.cobbled_diorite": "Pierre de diorite", + "block.middle-earth.cobbled_diorite_slab": "Dalle en pierre de diorite", + "block.middle-earth.cobbled_diorite_stairs": "Escaliers en pierre de diorite", + "block.middle-earth.cobbled_diorite_vertical_slab": "Dalle verticale en pierre de diorite", + "block.middle-earth.cobbled_diorite_wall": "Muret en pierre de diorite", + "block.middle-earth.cobbled_dolomite": "Pierres de dolomite", + "block.middle-earth.cobbled_dolomite_slab": "Dalle en pierre de dolomite", + "block.middle-earth.cobbled_dolomite_stairs": "Escaliers en pierre de dolomite", + "block.middle-earth.cobbled_dolomite_vertical_slab": "Dalle verticale en pierre de dolomite", + "block.middle-earth.cobbled_dolomite_wall": "Muret en pierre de dolomite", + "block.middle-earth.cobbled_gabbro": "Pierre de gabbro", + "block.middle-earth.cobbled_gabbro_slab": "Dalle en pierre de gabbro", + "block.middle-earth.cobbled_gabbro_stairs": "Escalier en pierre de gabbro", + "block.middle-earth.cobbled_gabbro_vertical_slab": "Dalle verticale en pierre de gabbro", + "block.middle-earth.cobbled_gabbro_wall": "Muret en pierre de gabbro", + "block.middle-earth.cobbled_galonn": "Pierre de Galonn", + "block.middle-earth.cobbled_galonn_slab": "Dalle en pierre de Galonn", + "block.middle-earth.cobbled_galonn_stairs": "Escalier en pierre de Galonn", + "block.middle-earth.cobbled_galonn_vertical_slab": "Dalle verticale en pierre de Galonn", + "block.middle-earth.cobbled_galonn_wall": "Muret en pierre de Galonn", + "block.middle-earth.cobbled_gneiss": "Pierre de gneiss", + "block.middle-earth.cobbled_gneiss_slab": "Dalle en pierre de gneiss", + "block.middle-earth.cobbled_gneiss_stairs": "Escalier en pierre de gneiss", + "block.middle-earth.cobbled_gneiss_vertical_slab": "Dalle verticale en pierre de gneiss", + "block.middle-earth.cobbled_gneiss_wall": "Muret en pierre de gneiss", + "block.middle-earth.cobbled_granite": "Pierre de granite", + "block.middle-earth.cobbled_granite_slab": "Dalle en pierre de granite", + "block.middle-earth.cobbled_granite_stairs": "Escaliers en pierre de granite", + "block.middle-earth.cobbled_granite_vertical_slab": "Dalle verticale en pierre de granite", + "block.middle-earth.cobbled_granite_wall": "Muret en pierre de granite", + "block.middle-earth.cobbled_hematite": "Pierre d'hématite", + "block.middle-earth.cobbled_hematite_slab": "Dalle en pierre d'hématite", + "block.middle-earth.cobbled_hematite_stairs": "Escalier en pierre d'hématite", + "block.middle-earth.cobbled_hematite_vertical_slab": "Dalle verticale en pierre d'hématite", + "block.middle-earth.cobbled_hematite_wall": "Muret en pierre d'hématite", + "block.middle-earth.cobbled_ironstone": "Pierre de fer taillée", + "block.middle-earth.cobbled_ironstone_slab": "Dalle en pierre de fer taillée", + "block.middle-earth.cobbled_ironstone_stairs": "Escalier en pierre de fer taillée", + "block.middle-earth.cobbled_ironstone_vertical_slab": "Dalle verticale en pierre de fer taillée", + "block.middle-earth.cobbled_ironstone_wall": "Muret en pierre de fer taillée", + "block.middle-earth.cobbled_izheraban": "Pierre d'Izhêr'Aban", + "block.middle-earth.cobbled_izheraban_slab": "Dalle en pierre d'Izhêr'Aban", + "block.middle-earth.cobbled_izheraban_stairs": "Escalier en pierre d'Izhêr'Aban", + "block.middle-earth.cobbled_izheraban_vertical_slab": "Dalle verticale en pierre d'Izhêr'Aban", + "block.middle-earth.cobbled_izheraban_wall": "Muret en pierre d'Izhêr'Aban", + "block.middle-earth.cobbled_jadeite": "Pierre de jadéite", + "block.middle-earth.cobbled_jadeite_slab": "Dalle en pierre de jadéite", + "block.middle-earth.cobbled_jadeite_stairs": "Escaliers en pierre de jadéite", + "block.middle-earth.cobbled_jadeite_vertical_slab": "Dalle verticale en pierre de jadéite", + "block.middle-earth.cobbled_jadeite_wall": "Muret en pierre de jadéite", + "block.middle-earth.cobbled_limestone": "Pierre de calcaire", + "block.middle-earth.cobbled_limestone_slab": "Dalle en pierre de calcaire", + "block.middle-earth.cobbled_limestone_stairs": "Escaliers en pierre de calcaire", + "block.middle-earth.cobbled_limestone_vertical_slab": "Dalle verticale en pierre de calcaire", + "block.middle-earth.cobbled_limestone_wall": "Muret en pierre de calcaire", + "block.middle-earth.cobbled_medgon": "Pierre de Medgon", + "block.middle-earth.cobbled_medgon_slab": "Dalle en pierre de Medgon", + "block.middle-earth.cobbled_medgon_stairs": "Escalier en pierre de Medgon", + "block.middle-earth.cobbled_medgon_vertical_slab": "Dalle verticale en pierre de Medgon", + "block.middle-earth.cobbled_medgon_wall": "Muret en pierre de Medgon", + "block.middle-earth.cobbled_nurgon": "Pierre de Núrgon", + "block.middle-earth.cobbled_nurgon_slab": "Dalle en pierre de Núrgon", + "block.middle-earth.cobbled_nurgon_stairs": "Escalier en pierre de Núrgon", + "block.middle-earth.cobbled_nurgon_vertical_slab": "Dalle verticale en pierre de Núrgon", + "block.middle-earth.cobbled_nurgon_wall": "Muret en pierre de Núrgon", + "block.middle-earth.cobbled_pumice": "Pierre ponce taillée", + "block.middle-earth.cobbled_pumice_slab": "Dalle en pierre ponce taillée", + "block.middle-earth.cobbled_pumice_stairs": "Escalier en pierre ponce taillée", + "block.middle-earth.cobbled_pumice_vertical_slab": "Dalle verticale en pierre ponce taillée", + "block.middle-earth.cobbled_pumice_wall": "Muret en pierre ponce taillée", + "block.middle-earth.cobbled_quartzite": "Pierre de quartzite", + "block.middle-earth.cobbled_quartzite_slab": "Dalle en pierre de quartzite", + "block.middle-earth.cobbled_quartzite_stairs": "Escaliers en pierre de quartzite", + "block.middle-earth.cobbled_quartzite_vertical_slab": "Dalle verticale en pierre de quartzite", + "block.middle-earth.cobbled_quartzite_wall": "Muret en pierre de quartzite", + "block.middle-earth.cobbled_schist": "Pierre de schiste", + "block.middle-earth.cobbled_schist_slab": "Dalle en pierre de schiste", + "block.middle-earth.cobbled_schist_stairs": "Escalier en pierre de schiste", + "block.middle-earth.cobbled_schist_vertical_slab": "Dalle verticale en pierre de schiste", + "block.middle-earth.cobbled_schist_wall": "Muret en pierre de schiste", + "block.middle-earth.cobbled_slate": "Pierre d'ardoise", + "block.middle-earth.cobbled_slate_slab": "Dalle en pierre d'ardoise", + "block.middle-earth.cobbled_slate_stairs": "Escalier en pierre d'ardoise", + "block.middle-earth.cobbled_slate_vertical_slab": "Dalle verticale en pierre d'ardoise", + "block.middle-earth.cobbled_slate_wall": "Muret en pierre d'ardoise", + "block.middle-earth.cobbled_tuff": "Pierre de tuf", + "block.middle-earth.cobbled_tuff_slab": "Dalle en pierre de tuf", + "block.middle-earth.cobbled_tuff_stairs": "Escalier en pierre de tuf", + "block.middle-earth.cobbled_tuff_vertical_slab": "Dalle verticale en pierre de tuf", + "block.middle-earth.cobbled_tuff_wall": "Muret en pierre de tuf", + "block.middle-earth.cobbled_zigilaban": "Pierre de Zigil'Aban", + "block.middle-earth.cobbled_zigilaban_slab": "Dalle en pierre de Zigil'Aban", + "block.middle-earth.cobbled_zigilaban_stairs": "Escalier en pierre de Zigil'Aban", + "block.middle-earth.cobbled_zigilaban_vertical_slab": "Dalle verticale en pierre de Zigil'Aban", + "block.middle-earth.cobbled_zigilaban_wall": "Muret en pierre de Zigil'Aban", + "block.middle-earth.cobblestone_vertical_slab": "Dalle verticale en pierre", + "block.middle-earth.cobbly_ashen_dirt": "Terre cendrée caillouteuse", + "block.middle-earth.cobbly_ashen_dirt_slab": "Dalle de terre cendrée caillouteuse", + "block.middle-earth.cobbly_ashen_dirt_stairs": "Escaliers de terre cendrée caillouteuse", + "block.middle-earth.cobbly_dirt": "Terre caillouteuse", + "block.middle-earth.cobbly_dirt_slab": "Dalle de terre caillouteuse", + "block.middle-earth.cobbly_dirt_stairs": "Escaliers de terre caillouteuse", + "block.middle-earth.copper_bars": "Barreaux en cuivre", + "block.middle-earth.corner_cobweb": "Toile de coin", + "block.middle-earth.corrupted_moss": "Mousse corrompue", + "block.middle-earth.corrupted_moss_block": "Bloc de mousse corrompue", + "block.middle-earth.corrupted_moss_carpet": "Tapis de mousse corrompue", + "block.middle-earth.cracked_andesite_bricks": "Briques d'andésite craquelées", + "block.middle-earth.cracked_andesite_pillar": "Pilier en andésite craquelée", + "block.middle-earth.cracked_andesite_tiles": "Andésite carrelée craquelée", + "block.middle-earth.cracked_basalt_bricks": "Briques de basalte craquelées", + "block.middle-earth.cracked_basalt_pillar": "Pilier en basalte craquelé", + "block.middle-earth.cracked_basalt_tiles": "Basalte carrelé craquelé", + "block.middle-earth.cracked_blackstone_pillar": "Pilier en pierre noire craquelée", + "block.middle-earth.cracked_blackstone_tiles": "Roche noire carrelée craquelée", + "block.middle-earth.cracked_blue_tuff_bricks": "Briques en tuf bleu craquelées", + "block.middle-earth.cracked_blue_tuff_pillar": "Pilier en tuf bleu craquelé", + "block.middle-earth.cracked_blue_tuff_tiles": "Tuf bleu carrelé craquelé", + "block.middle-earth.cracked_calcite_bricks": "Briques en calcite craquelées", + "block.middle-earth.cracked_calcite_pillar": "Pilier en calcite craquelée", + "block.middle-earth.cracked_calcite_tiles": "Calcite carrelée craquelée", + "block.middle-earth.cracked_deepslate_pillar": "Pilier d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_diorite_bricks": "Briques de diorite craquelées", + "block.middle-earth.cracked_diorite_pillar": "Pilier en diorite craquelée", + "block.middle-earth.cracked_diorite_tiles": "Diorite carrelée craquelée", + "block.middle-earth.cracked_dolomite_bricks": "Briques de dolomite craquelées", + "block.middle-earth.cracked_dolomite_pillar": "Pilier en dolomite craquelée", + "block.middle-earth.cracked_dolomite_tiles": "Dolomite carrelée craquelée", + "block.middle-earth.cracked_gabbro_bricks": "Briques en gabbro craquelées", + "block.middle-earth.cracked_gabbro_pillar": "Pilier en gabbro craquelé", + "block.middle-earth.cracked_gabbro_tiles": "Gabbro carrelé craquelé", + "block.middle-earth.cracked_galonn_bricks": "Briques de Galonn craquelées", + "block.middle-earth.cracked_galonn_pillar": "Pilier en Galonn craquelée", + "block.middle-earth.cracked_galonn_tiles": "Galonn carrelée craquelée", + "block.middle-earth.cracked_gneiss_bricks": "Briques en gneiss craquelées", + "block.middle-earth.cracked_gneiss_pillar": "Pilier en gneiss craquelé", + "block.middle-earth.cracked_gneiss_tiles": "Gneiss carrelé craquelé", + "block.middle-earth.cracked_granite_bricks": "Briques de granite craquelées", + "block.middle-earth.cracked_granite_pillar": "Pilier en granite craquelé", + "block.middle-earth.cracked_granite_tiles": "Granite carrelé craquelé", + "block.middle-earth.cracked_green_tuff_bricks": "Briques en tuf vert craquelées", + "block.middle-earth.cracked_green_tuff_pillar": "Pilier en tuf vert craquelé", + "block.middle-earth.cracked_green_tuff_tiles": "Tuf vert carrelé craquelé", + "block.middle-earth.cracked_hematite_bricks": "Briques d'hématite craquelées", + "block.middle-earth.cracked_hematite_pillar": "Pilier en hématite craquelée", + "block.middle-earth.cracked_hematite_tiles": "Hématite carrelée craquelée", + "block.middle-earth.cracked_ironstone_bricks": "Briques de pierre de fer craquelées", + "block.middle-earth.cracked_ironstone_pillar": "Pilier en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_tiles": "Pierre de fer carrelée craquelée", + "block.middle-earth.cracked_izheraban_bricks": "Briques d'Izhêr'Aban craquelées", + "block.middle-earth.cracked_izheraban_pillar": "Pilier en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_tiles": "Izhêr'Aban carrelée craquelée", + "block.middle-earth.cracked_jadeite_bricks": "Briques de jadéite craquelées", + "block.middle-earth.cracked_jadeite_pillar": "Pilier en jadéite craquelée", + "block.middle-earth.cracked_jadeite_tiles": "Jadéite carrelée craquelée", + "block.middle-earth.cracked_limestone_bricks": "Briques de calcaire craquelées", + "block.middle-earth.cracked_limestone_pillar": "Pilier en calcaire craquelé", + "block.middle-earth.cracked_limestone_tiles": "Calcaire carrelé craquelé", + "block.middle-earth.cracked_medgon_bricks": "Briques de Medgon craquelées", + "block.middle-earth.cracked_medgon_pillar": "Pilier en Medgon craquelée", + "block.middle-earth.cracked_medgon_tiles": "Medgon carrelée craquelée", + "block.middle-earth.cracked_mixed_stones": "Pierres mixtes craquelées", + "block.middle-earth.cracked_mixed_stones_slab": "Dalle en pierres mixtes craquelées", + "block.middle-earth.cracked_mixed_stones_stairs": "Escalier en pierres mixtes craquelées", + "block.middle-earth.cracked_mixed_stones_vertical_slab": "Dalle verticale en pierres mixtes craquelées", + "block.middle-earth.cracked_mixed_stones_wall": "Muret en pierres mixtes craquelées", + "block.middle-earth.cracked_nurgon_bricks": "Briques de Núrgon craquelées", + "block.middle-earth.cracked_nurgon_pillar": "Pilier en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_tiles": "Núrgon carrelée craquelée", + "block.middle-earth.cracked_polished_andesite": "Andésite polie craquelée", + "block.middle-earth.cracked_polished_andesite_slab": "Dalle en andésite polie craquelée", + "block.middle-earth.cracked_polished_andesite_stairs": "Escaliers en andésite polie craquelée", + "block.middle-earth.cracked_polished_andesite_vertical_slab": "Dalle verticale en andésite polie craquelée", + "block.middle-earth.cracked_polished_andesite_wall": "Muret en andésite polie craquelée", + "block.middle-earth.cracked_polished_basalt": "Basalte poli craquelé", + "block.middle-earth.cracked_polished_basalt_slab": "Dalle en basalte poli craquelé", + "block.middle-earth.cracked_polished_basalt_stairs": "Escaliers en basalte poli craquelé", + "block.middle-earth.cracked_polished_basalt_vertical_slab": "Dalle verticale en basalte poli craquelé", + "block.middle-earth.cracked_polished_basalt_wall": "Muret en basalte poli craquelé", + "block.middle-earth.cracked_polished_blackstone": "Pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blackstone_slab": "Dalle en pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blackstone_stairs": "Escalier en pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blackstone_wall": "Muret en pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blue_tuff": "Tuf bleu poli craquelé", + "block.middle-earth.cracked_polished_blue_tuff_slab": "Dalle en tuf bleu poli craquelé", + "block.middle-earth.cracked_polished_blue_tuff_stairs": "Escaliers en tuf bleu poli craquelé", + "block.middle-earth.cracked_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli craquelé", + "block.middle-earth.cracked_polished_blue_tuff_wall": "Muret en tuf bleu poli craquelé", + "block.middle-earth.cracked_polished_calcite": "Calcite polie craquelée", + "block.middle-earth.cracked_polished_calcite_slab": "Dalle en calcite polie craquelée", + "block.middle-earth.cracked_polished_calcite_stairs": "Escaliers en calcite polie craquelée", + "block.middle-earth.cracked_polished_calcite_vertical_slab": "Dalle verticale en calcite polie craquelée", + "block.middle-earth.cracked_polished_calcite_wall": "Muret en calcite polie craquelée", + "block.middle-earth.cracked_polished_deepslate": "Ardoise des abîmes polie craquelée", + "block.middle-earth.cracked_polished_deepslate_slab": "Dalle en ardoise des abîmes polie craquelée", + "block.middle-earth.cracked_polished_deepslate_stairs": "Escaliers en ardoise des abîmes polie craquelée", + "block.middle-earth.cracked_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie craquelée", + "block.middle-earth.cracked_polished_deepslate_wall": "Muret en ardoise des abîmes polie craquelée", + "block.middle-earth.cracked_polished_diorite": "Diorite polie craquelée", + "block.middle-earth.cracked_polished_diorite_slab": "Dalle en diorite polie craquelée", + "block.middle-earth.cracked_polished_diorite_stairs": "Escaliers en diorite polie craquelée", + "block.middle-earth.cracked_polished_diorite_vertical_slab": "Dalle verticale en diorite polie craquelée", + "block.middle-earth.cracked_polished_diorite_wall": "Muret en diorite polie craquelée", + "block.middle-earth.cracked_polished_dolomite": "Dolomite polie craquelée", + "block.middle-earth.cracked_polished_dolomite_slab": "Dalle en dolomite polie craquelée", + "block.middle-earth.cracked_polished_dolomite_stairs": "Escaliers en dolomite polie craquelée", + "block.middle-earth.cracked_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie craquelée", + "block.middle-earth.cracked_polished_dolomite_wall": "Muret en dolomite polie craquelée", + "block.middle-earth.cracked_polished_gabbro": "Gabbro poli craquelé", + "block.middle-earth.cracked_polished_gabbro_slab": "Dalle en gabbro poli craquelé", + "block.middle-earth.cracked_polished_gabbro_stairs": "Escalier en gabbro poli craquelé", + "block.middle-earth.cracked_polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli craquelé", + "block.middle-earth.cracked_polished_gabbro_wall": "Muret en gabbro poli craquelé", + "block.middle-earth.cracked_polished_galonn": "Galonn polie craquelée", + "block.middle-earth.cracked_polished_galonn_slab": "Dalle en Galonn polie craquelée", + "block.middle-earth.cracked_polished_galonn_stairs": "Escalier en Galonn polie craquelée", + "block.middle-earth.cracked_polished_galonn_vertical_slab": "Dalle verticale en Galonn polie craquelée", + "block.middle-earth.cracked_polished_galonn_wall": "Muret en Galonn polie craquelée", + "block.middle-earth.cracked_polished_gneiss": "Gneiss poli craquelé", + "block.middle-earth.cracked_polished_gneiss_slab": "Dalle en gneiss poli craquelé", + "block.middle-earth.cracked_polished_gneiss_stairs": "Escalier en gneiss poli craquelé", + "block.middle-earth.cracked_polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli craquelé", + "block.middle-earth.cracked_polished_gneiss_wall": "Muret en gneiss poli craquelé", + "block.middle-earth.cracked_polished_granite": "Granite poli craquelé", + "block.middle-earth.cracked_polished_granite_slab": "Dalle en granite poli craquelé", + "block.middle-earth.cracked_polished_granite_stairs": "Escaliers en granite poli craquelé", + "block.middle-earth.cracked_polished_granite_vertical_slab": "Dalle verticale en granite poli craquelé", + "block.middle-earth.cracked_polished_granite_wall": "Muret en granite poli craquelé", + "block.middle-earth.cracked_polished_green_tuff": "Tuf vert poli craquelé", + "block.middle-earth.cracked_polished_green_tuff_slab": "Dalle en tuf vert poli craquelé", + "block.middle-earth.cracked_polished_green_tuff_stairs": "Escaliers en tuf vert poli craquelé", + "block.middle-earth.cracked_polished_green_tuff_vertical_slab": "Dalle verticale en tuf vert poli craquelé", + "block.middle-earth.cracked_polished_green_tuff_wall": "Muret en tuf vert poli craquelé", + "block.middle-earth.cracked_polished_hematite": "Hématite polie craquelée", + "block.middle-earth.cracked_polished_hematite_slab": "Dalle en hématite polie craquelée", + "block.middle-earth.cracked_polished_hematite_stairs": "Escalier en hématite polie craquelée", + "block.middle-earth.cracked_polished_hematite_vertical_slab": "Dalle verticale en hématite polie craquelée", + "block.middle-earth.cracked_polished_hematite_wall": "Muret en hématite polie craquelée", + "block.middle-earth.cracked_polished_ironstone": "Pierre de fer polie craquelée", + "block.middle-earth.cracked_polished_ironstone_slab": "Dalle en pierre de fer polie craquelée", + "block.middle-earth.cracked_polished_ironstone_stairs": "Escalier en pierre de fer polie craquelée", + "block.middle-earth.cracked_polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie craquelée", + "block.middle-earth.cracked_polished_ironstone_wall": "Muret en pierre de fer polie craquelée", + "block.middle-earth.cracked_polished_izheraban": "Izhêr'Aban polie craquelée", + "block.middle-earth.cracked_polished_izheraban_slab": "Dalle en Izhêr'Aban polie craquelée", + "block.middle-earth.cracked_polished_izheraban_stairs": "Escalier en Izhêr'Aban polie craquelée", + "block.middle-earth.cracked_polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie craquelée", + "block.middle-earth.cracked_polished_izheraban_wall": "Muret en Izhêr'Aban polie craquelée", + "block.middle-earth.cracked_polished_jadeite": "Jadéite polie craquelée", + "block.middle-earth.cracked_polished_jadeite_slab": "Dalle en jadéite polie craquelée", + "block.middle-earth.cracked_polished_jadeite_stairs": "Escaliers en jadéite polie craquelée", + "block.middle-earth.cracked_polished_jadeite_vertical_slab": "Dalle verticale en jadéite polie craquelée", + "block.middle-earth.cracked_polished_jadeite_wall": "Muret en jadéite polie craquelée", + "block.middle-earth.cracked_polished_limestone": "Calcaire poli craquelé", + "block.middle-earth.cracked_polished_limestone_slab": "Dalle en calcaire poli craquelé", + "block.middle-earth.cracked_polished_limestone_stairs": "Escaliers en calcaire poli craquelé", + "block.middle-earth.cracked_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli craquelé", + "block.middle-earth.cracked_polished_limestone_wall": "Muret en calcaire poli craquelé", + "block.middle-earth.cracked_polished_medgon": "Medgon polie craquelée", + "block.middle-earth.cracked_polished_medgon_slab": "Dalle en Medgon polie craquelée", + "block.middle-earth.cracked_polished_medgon_stairs": "Escalier en Medgon polie craquelée", + "block.middle-earth.cracked_polished_medgon_vertical_slab": "Dalle verticale en Medgon polie craquelée", + "block.middle-earth.cracked_polished_medgon_wall": "Muret en Medgon polie craquelée", + "block.middle-earth.cracked_polished_nurgon": "Núrgon polie craquelée", + "block.middle-earth.cracked_polished_nurgon_slab": "Dalle en Núrgon polie craquelée", + "block.middle-earth.cracked_polished_nurgon_stairs": "Escalier en Núrgon polie craquelée", + "block.middle-earth.cracked_polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie craquelée", + "block.middle-earth.cracked_polished_nurgon_wall": "Muret en Núrgon polie craquelée", + "block.middle-earth.cracked_polished_pumice": "Pierre ponce polie craquelée", + "block.middle-earth.cracked_polished_pumice_slab": "Dalle en pierre ponce polie craquelée", + "block.middle-earth.cracked_polished_pumice_stairs": "Escalier en pierre ponce polie craquelée", + "block.middle-earth.cracked_polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie craquelée", + "block.middle-earth.cracked_polished_pumice_wall": "Muret en pierre ponce polie craquelée", + "block.middle-earth.cracked_polished_slate": "Ardoise polie craquelée", + "block.middle-earth.cracked_polished_slate_slab": "Dalle en ardoise polie craquelée", + "block.middle-earth.cracked_polished_slate_stairs": "Escalier en ardoise polie craquelée", + "block.middle-earth.cracked_polished_slate_vertical_slab": "Dalle verticale en ardoise polie craquelée", + "block.middle-earth.cracked_polished_slate_wall": "Muret en ardoise polie craquelée", + "block.middle-earth.cracked_polished_stone": "Roche polie craquelée", + "block.middle-earth.cracked_polished_stone_slab": "Dalle en roche polie craquelée", + "block.middle-earth.cracked_polished_stone_stairs": "Escalier en roche polie craquelée", + "block.middle-earth.cracked_polished_stone_vertical_slab": "Dalle verticale en roche polie craquelée", + "block.middle-earth.cracked_polished_stone_wall": "Muret en roche polie craquelée", + "block.middle-earth.cracked_polished_tuff": "Tuf poli craquelé", + "block.middle-earth.cracked_polished_tuff_slab": "Dalle en tuf poli craquelé", + "block.middle-earth.cracked_polished_tuff_stairs": "Escalier en tuf poli craquelé", + "block.middle-earth.cracked_polished_tuff_vertical_slab": "Dalle verticale en tuf poli craquelé", + "block.middle-earth.cracked_polished_tuff_wall": "Muret en tuf poli craquelé", + "block.middle-earth.cracked_polished_zigilaban": "Zigil'Aban polie craquelée", + "block.middle-earth.cracked_polished_zigilaban_slab": "Dalle en Zigil'Aban polie craquelée", + "block.middle-earth.cracked_polished_zigilaban_stairs": "Escalier en Zigil'Aban polie craquelée", + "block.middle-earth.cracked_polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie craquelée", + "block.middle-earth.cracked_polished_zigilaban_wall": "Muret en Zigil'Aban polie craquelée", + "block.middle-earth.cracked_pumice_bricks": "Briques en pierre ponce craquelées", + "block.middle-earth.cracked_pumice_pillar": "Pilier en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_tiles": "Pierre ponce carrelée craquelée", + "block.middle-earth.cracked_slate_bricks": "Briques en ardoise craquelées", + "block.middle-earth.cracked_slate_pillar": "Pilier en ardoise craquelée", + "block.middle-earth.cracked_slate_tiles": "Ardoise carrelée craquelée", + "block.middle-earth.cracked_smooth_andesite": "Andésite lisse craquelée", + "block.middle-earth.cracked_smooth_andesite_slab": "Dalle en andésite lisse craquelée", + "block.middle-earth.cracked_smooth_andesite_stairs": "Escalier en andésite lisse craquelée", + "block.middle-earth.cracked_smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse craquelée", + "block.middle-earth.cracked_smooth_andesite_wall": "Muret en andésite lisse craquelée", + "block.middle-earth.cracked_smooth_basalt": "Basalte lisse craquelé", + "block.middle-earth.cracked_smooth_basalt_slab": "Dalle en basalte lisse craquelé", + "block.middle-earth.cracked_smooth_basalt_stairs": "Escalier en basalte lisse craquelé", + "block.middle-earth.cracked_smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse craquelé", + "block.middle-earth.cracked_smooth_basalt_wall": "Muret en basalte lisse craquelé", + "block.middle-earth.cracked_smooth_blackstone": "Roche noire lisse craquelée", + "block.middle-earth.cracked_smooth_blackstone_slab": "Dalle en roche noire lisse craquelée", + "block.middle-earth.cracked_smooth_blackstone_stairs": "Escalier en roche noire lisse craquelée", + "block.middle-earth.cracked_smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse craquelée", + "block.middle-earth.cracked_smooth_blackstone_wall": "Muret en roche noire lisse craquelée", + "block.middle-earth.cracked_smooth_calcite": "Calcite lisse craquelée", + "block.middle-earth.cracked_smooth_calcite_slab": "Dalle en calcite lisse craquelée", + "block.middle-earth.cracked_smooth_calcite_stairs": "Escalier en calcite lisse craquelée", + "block.middle-earth.cracked_smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse craquelée", + "block.middle-earth.cracked_smooth_calcite_wall": "Muret en calcite lisse craquelée", + "block.middle-earth.cracked_smooth_deepslate": "Ardoise des abîmes lisse craquelée", + "block.middle-earth.cracked_smooth_deepslate_slab": "Dalle en ardoise des abîmes lisse craquelée", + "block.middle-earth.cracked_smooth_deepslate_stairs": "Escalier en ardoise des abîmes lisse craquelée", + "block.middle-earth.cracked_smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse craquelée", + "block.middle-earth.cracked_smooth_deepslate_wall": "Muret en ardoise des abîmes lisse craquelée", + "block.middle-earth.cracked_smooth_diorite": "Diorite lisse craquelée", + "block.middle-earth.cracked_smooth_diorite_slab": "Dalle en diorite lisse craquelée", + "block.middle-earth.cracked_smooth_diorite_stairs": "Escalier en diorite lisse craquelée", + "block.middle-earth.cracked_smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse craquelée", + "block.middle-earth.cracked_smooth_diorite_wall": "Muret en diorite lisse craquelée", + "block.middle-earth.cracked_smooth_dolomite": "Dolomite lisse craquelée", + "block.middle-earth.cracked_smooth_dolomite_slab": "Dalle en dolomite lisse craquelée", + "block.middle-earth.cracked_smooth_dolomite_stairs": "Escalier en dolomite lisse craquelée", + "block.middle-earth.cracked_smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse craquelée", + "block.middle-earth.cracked_smooth_dolomite_wall": "Muret en dolomite lisse craquelée", + "block.middle-earth.cracked_smooth_galonn": "Galonn lisse craquelée", + "block.middle-earth.cracked_smooth_galonn_slab": "Dalle en Galonn lisse craquelée", + "block.middle-earth.cracked_smooth_galonn_stairs": "Escalier en Galonn lisse craquelée", + "block.middle-earth.cracked_smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse craquelée", + "block.middle-earth.cracked_smooth_galonn_wall": "Muret en Galonn lisse craquelée", + "block.middle-earth.cracked_smooth_granite": "Granite lisse craquelé", + "block.middle-earth.cracked_smooth_granite_slab": "Dalle en granite lisse craquelé", + "block.middle-earth.cracked_smooth_granite_stairs": "Escalier en granite lisse craquelé", + "block.middle-earth.cracked_smooth_granite_vertical_slab": "Dalle verticale en granite lisse craquelé", + "block.middle-earth.cracked_smooth_granite_wall": "Muret en granite lisse craquelé", + "block.middle-earth.cracked_smooth_green_tuff": "Tuf vert lisse craquelé", + "block.middle-earth.cracked_smooth_green_tuff_slab": "Dalle en tuf vert lisse craquelé", + "block.middle-earth.cracked_smooth_green_tuff_stairs": "Escaliers en tuf vert lisse craquelé", + "block.middle-earth.cracked_smooth_green_tuff_vertical_slab": "Dalle verticale en tuf vert lisse craquelé", + "block.middle-earth.cracked_smooth_green_tuff_wall": "Muret en tuf vert lisse craquelé", + "block.middle-earth.cracked_smooth_izheraban": "Izhêr'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_izheraban_slab": "Dalle en Izhêr'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_izheraban_stairs": "Escalier en Izhêr'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_izheraban_wall": "Muret en Izhêr'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_limestone": "Calcaire lisse craquelé", + "block.middle-earth.cracked_smooth_limestone_slab": "Dalle en calcaire lisse craquelé", + "block.middle-earth.cracked_smooth_limestone_stairs": "Escalier en calcaire lisse craquelé", + "block.middle-earth.cracked_smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse craquelé", + "block.middle-earth.cracked_smooth_limestone_wall": "Muret en calcaire lisse craquelé", + "block.middle-earth.cracked_smooth_medgon": "Medgon lisse craquelée", + "block.middle-earth.cracked_smooth_medgon_slab": "Dalle en Medgon lisse craquelée", + "block.middle-earth.cracked_smooth_medgon_stairs": "Escalier en Medgon lisse craquelée", + "block.middle-earth.cracked_smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse craquelée", + "block.middle-earth.cracked_smooth_medgon_wall": "Muret en Medgon lisse craquelée", + "block.middle-earth.cracked_smooth_stone": "Roche lisse craquelée", + "block.middle-earth.cracked_smooth_stone_slab": "Dalle en roche lisse craquelée", + "block.middle-earth.cracked_smooth_stone_stairs": "Escalier en roche lisse craquelée", + "block.middle-earth.cracked_smooth_stone_vertical_slab": "Dalle verticale de roche lisse craquelée", + "block.middle-earth.cracked_smooth_stone_wall": "Muret en roche lisse craquelée", + "block.middle-earth.cracked_smooth_tuff": "Tuf lisse craquelé", + "block.middle-earth.cracked_smooth_tuff_slab": "Dalle en tuf lisse craquelé", + "block.middle-earth.cracked_smooth_tuff_stairs": "Escalier en tuf lisse craquelé", + "block.middle-earth.cracked_smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse craquelé", + "block.middle-earth.cracked_smooth_tuff_wall": "Muret en tuf lisse craquelé", + "block.middle-earth.cracked_stone_pillar": "Pilier en roche craquelée", + "block.middle-earth.cracked_stone_tiles": "Roche carrelée craquelée", + "block.middle-earth.cracked_tuff_bricks": "Briques en tuf craquelées", + "block.middle-earth.cracked_tuff_pillar": "Pilier en tuf craquelé", + "block.middle-earth.cracked_tuff_tiles": "Tuf carrelé craquelé", + "block.middle-earth.cracked_zigilaban_bricks": "Briques de Zigil'Aban craquelées", + "block.middle-earth.cracked_zigilaban_pillar": "Pilier en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_tiles": "Zigil'Aban carrelée craquelée", + "block.middle-earth.crimson_bench": "Banc carmin", + "block.middle-earth.crimson_chair": "Chaise carmin", + "block.middle-earth.crimson_ladder": "Échelle carmin", + "block.middle-earth.crimson_shingles": "Bardeaux carmin", + "block.middle-earth.crimson_shingles_slab": "Dalle en bardeaux carmin", + "block.middle-earth.crimson_shingles_stairs": "Escaliers en bardeaux carmin", + "block.middle-earth.crimson_shingles_vertical_slab": "Dalle verticale en bardeaux carmin", + "block.middle-earth.crimson_shingles_wall": "Muret en bardeaux carmin", + "block.middle-earth.crimson_stool": "Tabouret carmin", + "block.middle-earth.crimson_table": "Table carmin", + "block.middle-earth.crimson_vertical_slab": "Dalle verticale carmin", + "block.middle-earth.crude_block": "Bloc grossier", + "block.middle-earth.crystal_lamp": "Lampe en cristal", + "block.middle-earth.cut_copper_vertical_slab": "Dalle verticale en cuivre taillé", + "block.middle-earth.cut_copper_wall": "Muret en cuivre taillé", + "block.middle-earth.cut_lead": "Plomb taillé", + "block.middle-earth.cut_lead_slab": "Dalle en plomb taillé", + "block.middle-earth.cut_lead_stairs": "Escaliers en plomb taillé", + "block.middle-earth.cut_lead_vertical_slab": "Dalle verticale en plomb taillé", + "block.middle-earth.cut_red_sandstone_vertical_slab": "Dalle verticale en grès rouge sculpté", + "block.middle-earth.cut_sandstone_vertical_slab": "Dalle verticale en grès sculpté", + "block.middle-earth.cut_silver": "Argent taillé", + "block.middle-earth.cut_silver_slab": "Dalle en argent taillé", + "block.middle-earth.cut_silver_stairs": "Escaliers en argent taillé", + "block.middle-earth.cut_silver_vertical_slab": "Dalle verticale en argent taillé", + "block.middle-earth.cyan_clay_tiling": "Tuile d'argile cyan", + "block.middle-earth.cyan_clay_tiling_slab": "Dalle en tuile d'argile cyan", + "block.middle-earth.cyan_clay_tiling_stairs": "Escaliers en tuile d'argile cyan", + "block.middle-earth.cyan_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile cyan", + "block.middle-earth.cyan_clay_tiling_wall": "Muret en tuile d'argile cyan", + "block.middle-earth.cyan_roof_tiles": "Tuiles de toit cyan", + "block.middle-earth.cyan_stained_lead_glass": "Verre plombé cyan", + "block.middle-earth.cyan_stained_lead_glass_pane": "Vitre plombée cyan", + "block.middle-earth.cyan_wool_slab": "Dalle en laine cyan", + "block.middle-earth.cyan_wool_stairs": "Escaliers en laine cyan", + "block.middle-earth.cyan_wool_vertical_slab": "Dalle verticale en laine cyan", + "block.middle-earth.dark_blue_cushion": "Coussin bleu foncé", + "block.middle-earth.dark_blue_roof_tiles": "Tuiles de toit bleu foncé", + "block.middle-earth.dark_brown_cushion": "Coussin marron foncé", + "block.middle-earth.dark_brown_roof_tiles": "Tuiles de toit marron foncé", + "block.middle-earth.dark_cyan_roof_tiles": "Tuiles de toit cyan foncé", + "block.middle-earth.dark_daub": "Torchis sombre", + "block.middle-earth.dark_daub_slab": "Dalle en torchis sombre", + "block.middle-earth.dark_daub_stairs": "Escalier en torchis sombre", + "block.middle-earth.dark_daub_vertical_slab": "Dalle verticale en torchis sombre", + "block.middle-earth.dark_daub_wall": "Muret en torchis sombre", + "block.middle-earth.dark_gray_roof_tiles": "Tuiles de toit gris foncé", + "block.middle-earth.dark_green_cushion": "Coussin vert foncé", + "block.middle-earth.dark_green_roof_tiles": "Tuiles de toit vert foncé", + "block.middle-earth.dark_mushroom_bench": "Banc en champignon noir", + "block.middle-earth.dark_mushroom_button": "Bouton en champignon noir", + "block.middle-earth.dark_mushroom_chair": "Chaise en champignon noir", + "block.middle-earth.dark_mushroom_door": "Porte en champignon noir", + "block.middle-earth.dark_mushroom_fence": "Barrière en champignon noir", + "block.middle-earth.dark_mushroom_fence_gate": "Portillon en champignon noir", + "block.middle-earth.dark_mushroom_ladder": "Échelle en champignon noir", + "block.middle-earth.dark_mushroom_planks": "Planches de champignon noir", + "block.middle-earth.dark_mushroom_pressure_plate": "Plaque de pression en champignon noir", + "block.middle-earth.dark_mushroom_shingles": "Bardeaux en champignon noir", + "block.middle-earth.dark_mushroom_shingles_slab": "Dalle en bardeaux de champignon noir", + "block.middle-earth.dark_mushroom_shingles_stairs": "Escaliers en bardeaux de champignon noir", + "block.middle-earth.dark_mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon noir", + "block.middle-earth.dark_mushroom_shingles_wall": "Muret en bardeaux de champignon noir", + "block.middle-earth.dark_mushroom_slab": "Dalle en champignon noir", + "block.middle-earth.dark_mushroom_stairs": "Escaliers en champignon noir", + "block.middle-earth.dark_mushroom_stem": "Tige de champignon noir", + "block.middle-earth.dark_mushroom_stem_fence": "Barrière en tige de champignon noir", + "block.middle-earth.dark_mushroom_stem_wall": "Muret en tige de champignon noir", + "block.middle-earth.dark_mushroom_stool": "Tabouret en champignon noir", + "block.middle-earth.dark_mushroom_table": "Table en champignon noir", + "block.middle-earth.dark_mushroom_trapdoor": "Trappe en champignon noir", + "block.middle-earth.dark_mushroom_vertical_slab": "Dalle verticale en champignon noir", + "block.middle-earth.dark_oak_bench": "Banc en chêne noir", + "block.middle-earth.dark_oak_chair": "Chaise en chêne noir", + "block.middle-earth.dark_oak_ladder": "Échelle en chêne noir", + "block.middle-earth.dark_oak_shingles": "Bardeaux de chêne noir", + "block.middle-earth.dark_oak_shingles_slab": "Dalle en bardeaux de chêne noir", + "block.middle-earth.dark_oak_shingles_stairs": "Escaliers en bardeaux de chêne noir", + "block.middle-earth.dark_oak_shingles_vertical_slab": "Dalle verticale en bardeaux de chêne noir", + "block.middle-earth.dark_oak_shingles_wall": "Muret en bardeaux de chêne noir", + "block.middle-earth.dark_oak_stool": "Tabouret en chêne noir", + "block.middle-earth.dark_oak_table": "Table en chêne noir", + "block.middle-earth.dark_oak_vertical_slab": "Dalle verticale en chêne noir", + "block.middle-earth.dark_oak_wood_fence": "Barrière en bois de chêne noir", + "block.middle-earth.dark_oak_wood_slab": "Dalle en bois de chêne noir", + "block.middle-earth.dark_oak_wood_stairs": "Escalier en bois de chêne noir", + "block.middle-earth.dark_oak_wood_vertical_slab": "Dalle verticale en bois de chêne noir", + "block.middle-earth.dark_oak_wood_wall": "Muret en bois de chêne noir", + "block.middle-earth.dark_prismarine_vertical_slab": "Dalle verticale en prismarine sombre", + "block.middle-earth.dark_red_cushion": "Coussin rouge foncé", + "block.middle-earth.dark_red_roof_tiles": "Tuiles de toit rouge foncé", + "block.middle-earth.dark_wattle_and_dark_daub": "Clayonnage sombre et torchis sombre", + "block.middle-earth.dark_wattle_and_dark_daub_cross": "Clayonnage sombre et torchis sombre en croix", + "block.middle-earth.dark_wattle_and_dark_daub_diamond": "Clayonnage sombre et torchis sombre en losange", + "block.middle-earth.dark_wattle_and_dark_daub_left": "Clayonnage sombre et torchis sombre à gauche", + "block.middle-earth.dark_wattle_and_dark_daub_pillar": "Pilier de clayonnage sombre et torchis sombre", + "block.middle-earth.dark_wattle_and_dark_daub_right": "Clayonnage sombre et torchis sombre à droite", + "block.middle-earth.dark_wattle_framed_window": "Fenêtre à clayonnage sombre", + "block.middle-earth.dark_wattle_framed_window_pane": "Fenêtre plate à clayonnage sombre", + "block.middle-earth.dark_wattle_trapdoor": "Trappe en clayonnage sombre", + "block.middle-earth.dark_yellow_roof_tiles": "Tuiles de toit jaune foncé", + "block.middle-earth.dead_heather": "Bruyère morte", + "block.middle-earth.dead_rushes": "Joncs morts", + "block.middle-earth.deep_firecap": "Champi-feu des profondeurs", + "block.middle-earth.deep_firecap_block": "Bloc de champi-feu des profondeurs", + "block.middle-earth.deep_firecap_tiller": "Talle de champi-feu des profondeurs", + "block.middle-earth.deepslate_brick_vertical_slab": "Dalle verticale en ardoise des abîmes taillée", + "block.middle-earth.deepslate_brickwork": "Maçonnerie en ardoise des abîmes", + "block.middle-earth.deepslate_brickwork_slab": "Dalle de maçonnerie en ardoise des abîmes", + "block.middle-earth.deepslate_brickwork_stairs": "Escalier en maçonnerie d'ardoise des abîmes", + "block.middle-earth.deepslate_brickwork_vertical_slab": "Dalle verticale de maçonnerie en ardoise des abîmes", + "block.middle-earth.deepslate_brickwork_wall": "Muret en maçonnerie d'ardoise des abîmes", + "block.middle-earth.deepslate_button": "Bouton en ardoise des abîmes", + "block.middle-earth.deepslate_chair": "Chaise en ardoise des abîmes", + "block.middle-earth.deepslate_lead_ore": "Minerais de plomb des abîmes", + "block.middle-earth.deepslate_pillar": "Pilier d'ardoise des abîmes", + "block.middle-earth.deepslate_pressure_plate": "Plaque de pression en ardoise des abîmes", + "block.middle-earth.deepslate_rocks": "Éboulis d'ardoise des abîmes", + "block.middle-earth.deepslate_stool": "Tabouret en ardoise des abîmes", + "block.middle-earth.deepslate_table": "Table en ardoise des abîmes", + "block.middle-earth.deepslate_tile_vertical_slab": "Dalle verticale en ardoise des abîmes carrelée", + "block.middle-earth.deepslate_tin_ore": "Minerais d'étain des abîmes", + "block.middle-earth.deepslate_trapdoor": "Trappe en ardoise des abîmes", + "block.middle-earth.diorite_bricks": "Briques de diorite", + "block.middle-earth.diorite_brickwork": "Maçonnerie en diorite", + "block.middle-earth.diorite_brickwork_slab": "Dalle de maçonnerie en diorite", + "block.middle-earth.diorite_brickwork_stairs": "Escalier en maçonnerie de diorite", + "block.middle-earth.diorite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en diorite", + "block.middle-earth.diorite_brickwork_wall": "Muret en maçonnerie de diorite", + "block.middle-earth.diorite_chair": "Chaise en diorite", + "block.middle-earth.diorite_pillar": "Pilier en diorite", + "block.middle-earth.diorite_rocks": "Éboulis de diorite", + "block.middle-earth.diorite_stool": "Tabouret en diorite", + "block.middle-earth.diorite_table": "Table en diorite", + "block.middle-earth.diorite_tiles": "Diorite carrelée", + "block.middle-earth.diorite_trapdoor": "Trappe en diorite", + "block.middle-earth.diorite_vertical_slab": "Dalle verticale en diorite", + "block.middle-earth.dirt_slab": "Dalle de terre", + "block.middle-earth.dirt_stairs": "Escaliers de terre", + "block.middle-earth.dirty_roots": "Racines sales", + "block.middle-earth.dirty_roots_slab": "Dalle de racines sales", + "block.middle-earth.dirty_roots_stairs": "Escaliers de racines sales", + "block.middle-earth.dolomite": "Dolomite", + "block.middle-earth.dolomite_bricks": "Briques en dolomite", + "block.middle-earth.dolomite_brickwork": "Maçonnerie en dolomite", + "block.middle-earth.dolomite_brickwork_slab": "Dalle de maçonnerie en dolomite", + "block.middle-earth.dolomite_brickwork_stairs": "Escalier en maçonnerie de dolomite", + "block.middle-earth.dolomite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en dolomite", + "block.middle-earth.dolomite_brickwork_wall": "Muret en maçonnerie de dolomite", + "block.middle-earth.dolomite_button": "Bouton en dolomite", + "block.middle-earth.dolomite_chair": "Chaise en dolomite", + "block.middle-earth.dolomite_pillar": "Pilier en dolomite", + "block.middle-earth.dolomite_pressure_plate": "Plaque de pression en dolomite", + "block.middle-earth.dolomite_rocks": "Éboulis de dolomite", + "block.middle-earth.dolomite_slab": "Dalle en dolomite", + "block.middle-earth.dolomite_stairs": "Escaliers en dolomite", + "block.middle-earth.dolomite_stool": "Tabouret en dolomite", + "block.middle-earth.dolomite_table": "Table en dolomite", + "block.middle-earth.dolomite_tiles": "Dolomite carrelée", + "block.middle-earth.dolomite_trapdoor": "Trappe en dolomite", + "block.middle-earth.dolomite_vertical_slab": "Dalle verticale en dolomite", + "block.middle-earth.dolomite_wall": "Muret en dolomite", + "block.middle-earth.drooping_icicles": "Glaçons tombants", + "block.middle-earth.dry_dirt": "Terre sèche", + "block.middle-earth.dry_dirt_slab": "Dalle de terre sèche", + "block.middle-earth.dry_dirt_stairs": "Escaliers de terre sèche", + "block.middle-earth.dry_growth": "Pousse sèche", + "block.middle-earth.dry_heather": "Bruyère sèche", + "block.middle-earth.dry_larch_leaves": "Feuilles de mélèze sèches", + "block.middle-earth.dry_pine_leaves": "Feuilles de pin sèches", + "block.middle-earth.duckweed": "Lentille d'eau", + "block.middle-earth.dwarven_ground_book": "Livre nain au sol", + "block.middle-earth.dwarven_lantern": "Lanterne naine", + "block.middle-earth.dwarven_treated_anvil": "Enclume naine traitée", + "block.middle-earth.dying_grass": "Herbe mourante", + "block.middle-earth.edhel_steel_block": "Bloc d'acier d'Edhel", + "block.middle-earth.elanor": "Elanor", + "block.middle-earth.elven_lantern": "Lanterne elfique", + "block.middle-earth.elven_treated_anvil": "Enclume elfique traitée", + "block.middle-earth.end_stone_brick_vertical_slab": "Dalle verticale en brique de l'end", + "block.middle-earth.exposed_copper_bars": "Barreaux en cuivre exposé", + "block.middle-earth.exposed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé exposé", + "block.middle-earth.exposed_cut_copper_wall": "Muret en cuivre taillé exposé", + "block.middle-earth.fallen_leaves": "Feuilles tombées", + "block.middle-earth.fallen_mallorn_leaves": "Feuilles de Mallorn tombées", + "block.middle-earth.fallen_mirkwood_leaves": "Feuilles tombées de la Forêt noire", + "block.middle-earth.false_oatgrass": "Fausse avoine", + "block.middle-earth.fancy_bed": "Lit élégant", + "block.middle-earth.fire_bowl": "Vasque de feu", + "block.middle-earth.fire_of_orthanc": "Feu d'Orthanc", + "block.middle-earth.floating_ice": "Glace flottante", + "block.middle-earth.flowering_mallorn_leaves": "Feuilles de Mallorn en fleurs", + "block.middle-earth.forest_moss": "Mousse de la forêt", + "block.middle-earth.forest_moss_block": "Bloc de mousse de la forêt", + "block.middle-earth.forest_moss_carpet": "Tapis de mousse de la forêt", + "block.middle-earth.forge": "Forge", + "block.middle-earth.frozen_grass": "Herbe gelée", + "block.middle-earth.frozen_growth": "Pousse gelée", + "block.middle-earth.frozen_shrub": "Arbuste gelé", + "block.middle-earth.frozen_tuft": "Touffe gelée", + "block.middle-earth.fur_bed": "Lit en fourrure", + "block.middle-earth.gabbro": "Gabbro", + "block.middle-earth.gabbro_bricks": "Briques en gabbro", + "block.middle-earth.gabbro_brickwork": "Maçonnerie en gabbro", + "block.middle-earth.gabbro_brickwork_slab": "Dalle de maçonnerie en gabbro", + "block.middle-earth.gabbro_brickwork_stairs": "Escalier en maçonnerie de gabbro", + "block.middle-earth.gabbro_brickwork_vertical_slab": "Dalle verticale de maçonnerie en gabbro", + "block.middle-earth.gabbro_brickwork_wall": "Muret en maçonnerie de gabbro", + "block.middle-earth.gabbro_button": "Bouton en gabbro", + "block.middle-earth.gabbro_chair": "Chaise en gabbro", + "block.middle-earth.gabbro_pillar": "Pilier en gabbro", + "block.middle-earth.gabbro_pressure_plate": "Plaque de pression en gabbro", + "block.middle-earth.gabbro_rocks": "Éboulis de gabbro", + "block.middle-earth.gabbro_slab": "Dalle en gabbro", + "block.middle-earth.gabbro_stairs": "Escalier en gabbro", + "block.middle-earth.gabbro_stool": "Tabouret en gabbro", + "block.middle-earth.gabbro_table": "Table en gabbro", + "block.middle-earth.gabbro_tiles": "Gabbro carrelé", + "block.middle-earth.gabbro_trapdoor": "Trappe en gabbro", + "block.middle-earth.gabbro_vertical_slab": "Dalle verticale en gabbro", + "block.middle-earth.gabbro_wall": "Muret en gabbro", + "block.middle-earth.galonn": "Galonn", + "block.middle-earth.galonn_bricks": "Briques en Galonn", + "block.middle-earth.galonn_brickwork": "Maçonnerie en Galonn", + "block.middle-earth.galonn_brickwork_slab": "Dalle de maçonnerie en Galonn", + "block.middle-earth.galonn_brickwork_stairs": "Escalier en maçonnerie de Galonn", + "block.middle-earth.galonn_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Galonn", + "block.middle-earth.galonn_brickwork_wall": "Muret en maçonnerie de Galonn", + "block.middle-earth.galonn_button": "Bouton en Galonn", + "block.middle-earth.galonn_chair": "Chaise en Galonn", + "block.middle-earth.galonn_pillar": "Pilier en Galonn", + "block.middle-earth.galonn_pressure_plate": "Plaque de pression en Galonn", + "block.middle-earth.galonn_rocks": "Éboulis de Galonn", + "block.middle-earth.galonn_slab": "Dalle en Galonn", + "block.middle-earth.galonn_stairs": "Escalier en Galonn", + "block.middle-earth.galonn_stool": "Tabouret en Galonn", + "block.middle-earth.galonn_table": "Table en Galonn", + "block.middle-earth.galonn_tiles": "Galonn carrelée", + "block.middle-earth.galonn_trapdoor": "Trappe en Galonn", + "block.middle-earth.galonn_vertical_slab": "Dalle verticale en Galonn", + "block.middle-earth.galonn_wall": "Muret en Galonn", + "block.middle-earth.ghostshroom": "Champi-fantôme", + "block.middle-earth.ghostshroom_tiller": "Talle de champi-fantôme", + "block.middle-earth.gilded_bars": "Barreaux dorés", + "block.middle-earth.gilded_big_brazier": "Grand brasero doré", + "block.middle-earth.gilded_green_tuff": "Tuf vert doré", + "block.middle-earth.gilded_green_tuff_button": "Bouton en tuf vert doré", + "block.middle-earth.gilded_green_tuff_chair": "Chaise en tuf vert doré", + "block.middle-earth.gilded_green_tuff_pressure_plate": "Plaque de pression en tuf vert doré", + "block.middle-earth.gilded_green_tuff_rocks": "Éboulis de tuf vert doré", + "block.middle-earth.gilded_green_tuff_slab": "Dalle en tuf vert doré", + "block.middle-earth.gilded_green_tuff_stairs": "Escaliers en tuf vert doré", + "block.middle-earth.gilded_green_tuff_stool": "Tabouret en tuf vert doré", + "block.middle-earth.gilded_green_tuff_table": "Table en tuf vert doré", + "block.middle-earth.gilded_green_tuff_trapdoor": "Trappe en tuf vert doré", + "block.middle-earth.gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré", + "block.middle-earth.gilded_green_tuff_wall": "Muret en tuf vert doré", + "block.middle-earth.gilded_sconce": "Applique murale dorée", + "block.middle-earth.gilded_small_brazier": "Petit brasero doré", + "block.middle-earth.glowstone_block": "Bloc de pierre lumineuse", + "block.middle-earth.glowstone_cluster": "Amas de pierre lumineuse", + "block.middle-earth.glowworm_main": "Ver luisant principal", + "block.middle-earth.glowworm_webbing": "Toile de ver luisant", + "block.middle-earth.gneiss": "Gneiss", + "block.middle-earth.gneiss_bricks": "Briques en gneiss", + "block.middle-earth.gneiss_brickwork": "Maçonnerie en gneiss", + "block.middle-earth.gneiss_brickwork_slab": "Dalle de maçonnerie en gneiss", + "block.middle-earth.gneiss_brickwork_stairs": "Escalier en maçonnerie de gneiss", + "block.middle-earth.gneiss_brickwork_vertical_slab": "Dalle verticale de maçonnerie en gneiss", + "block.middle-earth.gneiss_brickwork_wall": "Muret en maçonnerie de gneiss", + "block.middle-earth.gneiss_button": "Bouton en gneiss", + "block.middle-earth.gneiss_chair": "Chaise en gneiss", + "block.middle-earth.gneiss_pillar": "Pilier en gneiss", + "block.middle-earth.gneiss_pressure_plate": "Plaque de pression en gneiss", + "block.middle-earth.gneiss_rocks": "Éboulis de gneiss", + "block.middle-earth.gneiss_slab": "Dalle en gneiss", + "block.middle-earth.gneiss_stairs": "Escalier en gneiss", + "block.middle-earth.gneiss_stool": "Tabouret en gneiss", + "block.middle-earth.gneiss_table": "Table en gneiss", + "block.middle-earth.gneiss_tiles": "Gneiss carrelé", + "block.middle-earth.gneiss_trapdoor": "Trappe en gneiss", + "block.middle-earth.gneiss_vertical_slab": "Dalle verticale en gneiss", + "block.middle-earth.gneiss_wall": "Muret en gneiss", + "block.middle-earth.granite_bricks": "Briques en granite", + "block.middle-earth.granite_brickwork": "Maçonnerie en granite", + "block.middle-earth.granite_brickwork_slab": "Dalle de maçonnerie en granite", + "block.middle-earth.granite_brickwork_stairs": "Escalier en maçonnerie de granite", + "block.middle-earth.granite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en granite", + "block.middle-earth.granite_brickwork_wall": "Muret en maçonnerie de granite", + "block.middle-earth.granite_chair": "Chaise en granite", + "block.middle-earth.granite_pillar": "Pilier en granite", + "block.middle-earth.granite_rocks": "Éboulis de granite", + "block.middle-earth.granite_stool": "Tabouret en granite", + "block.middle-earth.granite_table": "Table en granite", + "block.middle-earth.granite_tiles": "Granite carrelé", + "block.middle-earth.granite_trapdoor": "Trappe en granite", + "block.middle-earth.granite_vertical_slab": "Dalle verticale en granite", + "block.middle-earth.grass_tuft": "Pousse d'herbe", + "block.middle-earth.grassy_dirt": "Terre herbeuse", + "block.middle-earth.grassy_dirt_slab": "Dalle de terre herbeuse", + "block.middle-earth.grassy_dirt_stairs": "Escaliers de terre herbeuse", + "block.middle-earth.gravel_layer": "Couche de gravier", + "block.middle-earth.gray_clay_tiling": "Tuile d'argile grise", + "block.middle-earth.gray_clay_tiling_slab": "Dalle en tuile d'argile grise", + "block.middle-earth.gray_clay_tiling_stairs": "Escaliers en tuile d'argile grise", + "block.middle-earth.gray_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile grise", + "block.middle-earth.gray_clay_tiling_wall": "Muret en tuile d'argile grise", + "block.middle-earth.gray_mushroom_bench": "Banc en champignon gris", + "block.middle-earth.gray_mushroom_button": "Bouton en champignon gris", + "block.middle-earth.gray_mushroom_chair": "Chaise en champignon gris", + "block.middle-earth.gray_mushroom_door": "Porte en champignon gris", + "block.middle-earth.gray_mushroom_fence": "Barrière en champignon gris", + "block.middle-earth.gray_mushroom_fence_gate": "Portillon en champignon gris", + "block.middle-earth.gray_mushroom_ladder": "Échelle en champignon gris", + "block.middle-earth.gray_mushroom_planks": "Planches de champignon gris", + "block.middle-earth.gray_mushroom_pressure_plate": "Plaque de pression en champignon gris", + "block.middle-earth.gray_mushroom_shingles": "Bardeaux en champignon gris", + "block.middle-earth.gray_mushroom_shingles_slab": "Dalle en bardeaux de champignon gris", + "block.middle-earth.gray_mushroom_shingles_stairs": "Escaliers en bardeaux de champignon gris", + "block.middle-earth.gray_mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon gris", + "block.middle-earth.gray_mushroom_shingles_wall": "Muret en bardeaux de champignon gris", + "block.middle-earth.gray_mushroom_slab": "Dalle en champignon gris", + "block.middle-earth.gray_mushroom_stairs": "Escaliers en champignon gris", + "block.middle-earth.gray_mushroom_stem": "Tige de champignon gris", + "block.middle-earth.gray_mushroom_stem_fence": "Barrière en tige de champignon gris", + "block.middle-earth.gray_mushroom_stem_wall": "Muret en tige de champignon gris", + "block.middle-earth.gray_mushroom_stool": "Tabouret en champignon gris", + "block.middle-earth.gray_mushroom_table": "Table en champignon gris", + "block.middle-earth.gray_mushroom_trapdoor": "Trappe en champignon gris", + "block.middle-earth.gray_mushroom_vertical_slab": "Dalle verticale en champignon gris", + "block.middle-earth.gray_roof_tiles": "Tuiles de toit grises", + "block.middle-earth.gray_stained_lead_glass": "Verre plombé gris", + "block.middle-earth.gray_stained_lead_glass_pane": "Vitre plombée grise", + "block.middle-earth.gray_wool_slab": "Dalle en laine grise", + "block.middle-earth.gray_wool_stairs": "Escaliers en laine grise", + "block.middle-earth.gray_wool_vertical_slab": "Dalle verticale en laine grise", + "block.middle-earth.great_dwarven_gate": "Grand portail nain", + "block.middle-earth.great_elven_gate": "Grand portail elfique", + "block.middle-earth.great_gondorian_gate": "Grand portail gondorien", + "block.middle-earth.great_orcish_gate": "Grand portail orque", + "block.middle-earth.green_clay_tiling": "Tuile d'argile verte", + "block.middle-earth.green_clay_tiling_slab": "Dalle en tuile d'argile verte", + "block.middle-earth.green_clay_tiling_stairs": "Escaliers en tuile d'argile verte", + "block.middle-earth.green_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile verte", + "block.middle-earth.green_clay_tiling_wall": "Muret en tuile d'argile verte", + "block.middle-earth.green_cushion": "Coussin vert", + "block.middle-earth.green_growth": "Pousse verte", + "block.middle-earth.green_hobbit_door": "Porte Hobbit verte", + "block.middle-earth.green_jewel_cornflower": "Cornouille verdoyante", + "block.middle-earth.green_roof_tiles": "Tuiles de toit vertes", + "block.middle-earth.green_shrub": "Arbuste vert", + "block.middle-earth.green_stained_lead_glass": "Verre plombé vert", + "block.middle-earth.green_stained_lead_glass_pane": "Vitre plombée verte", + "block.middle-earth.green_tuff": "Tuf vert", + "block.middle-earth.green_tuff_bricks": "Briques en tuf vert", + "block.middle-earth.green_tuff_button": "Bouton en tuf vert", + "block.middle-earth.green_tuff_chair": "Chaise en tuf vert", + "block.middle-earth.green_tuff_pillar": "Pilier en tuf vert", + "block.middle-earth.green_tuff_pressure_plate": "Plaque de pression en tuf vert", + "block.middle-earth.green_tuff_rocks": "Éboulis de tuf vert", + "block.middle-earth.green_tuff_slab": "Dalle en tuf vert", + "block.middle-earth.green_tuff_stairs": "Escaliers en tuf vert", + "block.middle-earth.green_tuff_stool": "Tabouret en tuf vert", + "block.middle-earth.green_tuff_table": "Table en tuf vert", + "block.middle-earth.green_tuff_tiles": "Tuf vert carrelé", + "block.middle-earth.green_tuff_trapdoor": "Trappe en tuf vert", + "block.middle-earth.green_tuff_vertical_slab": "Dalle verticale en tuf vert", + "block.middle-earth.green_tuff_wall": "Muret en tuf vert", + "block.middle-earth.green_wattle_and_white_daub": "Clayonnage vert et torchis blanc", + "block.middle-earth.green_wattle_and_white_daub_cross": "Clayonnage vert et torchis blanc en croix", + "block.middle-earth.green_wattle_and_white_daub_diamond": "Clayonnage vert et torchis blanc en losange", + "block.middle-earth.green_wattle_and_white_daub_left": "Clayonnage vert et torchis blanc à gauche", + "block.middle-earth.green_wattle_and_white_daub_pillar": "Pilier de clayonnage vert et torchis blanc", + "block.middle-earth.green_wattle_and_white_daub_right": "Clayonnage vert et torchis blanc à droite", + "block.middle-earth.green_wattle_framed_window": "Fenêtre à clayonnage vert", + "block.middle-earth.green_wattle_framed_window_pane": "Fenêtre plate à clayonnage vert", + "block.middle-earth.green_wattle_trapdoor": "Trappe en clayonnage vert", + "block.middle-earth.green_wool_slab": "Dalle en laine verte", + "block.middle-earth.green_wool_stairs": "Escaliers en laine verte", + "block.middle-earth.green_wool_vertical_slab": "Dalle verticale en laine verte", + "block.middle-earth.grim_grass": "Herbe sinistre", + "block.middle-earth.ground_book": "Livre au sol", + "block.middle-earth.heath": "Lande", + "block.middle-earth.heather": "Bruyère", + "block.middle-earth.hematite": "Hématite", + "block.middle-earth.hematite_bricks": "Briques en hématite", + "block.middle-earth.hematite_brickwork": "Maçonnerie en hématite", + "block.middle-earth.hematite_brickwork_slab": "Dalle de maçonnerie en hématite", + "block.middle-earth.hematite_brickwork_stairs": "Escalier en maçonnerie d'hématite", + "block.middle-earth.hematite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en hématite", + "block.middle-earth.hematite_brickwork_wall": "Muret en maçonnerie d'hématite", + "block.middle-earth.hematite_button": "Bouton en hématite", + "block.middle-earth.hematite_chair": "Chaise en hématite", + "block.middle-earth.hematite_pillar": "Pilier en hématite", + "block.middle-earth.hematite_pressure_plate": "Plaque de pression en hématite", + "block.middle-earth.hematite_rocks": "Éboulis d'hématite", + "block.middle-earth.hematite_slab": "Dalle en hématite", + "block.middle-earth.hematite_stairs": "Escalier en hématite", + "block.middle-earth.hematite_stool": "Tabouret en hématite", + "block.middle-earth.hematite_table": "Table en hématite", + "block.middle-earth.hematite_tiles": "Hématite carrelée", + "block.middle-earth.hematite_trapdoor": "Trappe en hématite", + "block.middle-earth.hematite_vertical_slab": "Dalle verticale en hématite", + "block.middle-earth.hematite_wall": "Muret en hématite", + "block.middle-earth.hidden_dwarven_door": "Porte naine cachée", + "block.middle-earth.holly_bench": "Banc en houx", + "block.middle-earth.holly_button": "Bouton en houx", + "block.middle-earth.holly_chair": "Chaise en houx", + "block.middle-earth.holly_door": "Porte en houx", + "block.middle-earth.holly_fence": "Clôture en houx", + "block.middle-earth.holly_fence_gate": "Portillon en houx", + "block.middle-earth.holly_ladder": "Échelle en houx", + "block.middle-earth.holly_leaves": "Feuilles de houx", + "block.middle-earth.holly_log": "Bûche de houx", + "block.middle-earth.holly_planks": "Planches de houx", + "block.middle-earth.holly_pressure_plate": "Plaque de pression en houx", + "block.middle-earth.holly_roofing": "Toiture en houx", + "block.middle-earth.holly_roofing_slab": "Dalle de toiture en houx", + "block.middle-earth.holly_roofing_stairs": "Escalier de toiture en houx", + "block.middle-earth.holly_roofing_vertical_slab": "Dalle verticale de toiture en houx", + "block.middle-earth.holly_roofing_wall": "Muret de toiture en houx", + "block.middle-earth.holly_sapling": "Pousse de houx", + "block.middle-earth.holly_shingles": "Bardeaux en houx", + "block.middle-earth.holly_shingles_slab": "Dalle de bardeaux en houx", + "block.middle-earth.holly_shingles_stairs": "Escalier de bardeaux en houx", + "block.middle-earth.holly_shingles_vertical_slab": "Dalle verticale de bardeaux en houx", + "block.middle-earth.holly_shingles_wall": "Muret de bardeaux en houx", + "block.middle-earth.holly_slab": "Dalle en houx", + "block.middle-earth.holly_stairs": "Escaliers en houx", + "block.middle-earth.holly_stool": "Tabouret en houx", + "block.middle-earth.holly_table": "Table en houx", + "block.middle-earth.holly_trapdoor": "Trappe en houx", + "block.middle-earth.holly_vertical_slab": "Dalle verticale en houx", + "block.middle-earth.holly_wood": "Planches de houx", + "block.middle-earth.holly_wood_fence": "Barrière en houx", + "block.middle-earth.holly_wood_slab": "Dalle en bois de houx", + "block.middle-earth.holly_wood_stairs": "Escaliers en bois de houx", + "block.middle-earth.holly_wood_vertical_slab": "Dalle verticale en bois de houx", + "block.middle-earth.holly_wood_wall": "Muret en houx", + "block.middle-earth.ironstone": "Pierre de fer", + "block.middle-earth.ironstone_bricks": "Briques en pierre de fer", + "block.middle-earth.ironstone_button": "Bouton en pierre de fer", + "block.middle-earth.ironstone_chair": "Chaise en pierre de fer", + "block.middle-earth.ironstone_coal_ore": "Minerai de charbon de pierre de fer", + "block.middle-earth.ironstone_copper_ore": "Minerai de cuivre de pierre de fer", + "block.middle-earth.ironstone_pillar": "Pilier en pierre de fer", + "block.middle-earth.ironstone_pressure_plate": "Plaque de pression en pierre de fer", + "block.middle-earth.ironstone_rocks": "Éboulis de pierre de fer", + "block.middle-earth.ironstone_slab": "Dalle en pierre de fer", + "block.middle-earth.ironstone_stairs": "Escalier en pierre de fer", + "block.middle-earth.ironstone_stool": "Tabouret en pierre de fer", + "block.middle-earth.ironstone_table": "Table en pierre de fer", + "block.middle-earth.ironstone_tiles": "Pierre de fer carrelée", + "block.middle-earth.ironstone_tin_ore": "Minerai d'étain de pierre de fer", + "block.middle-earth.ironstone_trapdoor": "Trappe en pierre de fer", + "block.middle-earth.ironstone_vertical_slab": "Dalle verticale en pierre de fer", + "block.middle-earth.ironstone_wall": "Muret en pierre de fer", + "block.middle-earth.ivy_growth": "Pousse de lierre", + "block.middle-earth.izheraban": "Izhêr'Aban", + "block.middle-earth.izheraban_bricks": "Briques en Izhêr'Aban", + "block.middle-earth.izheraban_brickwork": "Maçonnerie en Izhêr'Aban", + "block.middle-earth.izheraban_brickwork_slab": "Dalle de maçonnerie en Izhêr'Aban", + "block.middle-earth.izheraban_brickwork_stairs": "Escalier en maçonnerie d'Izhêr'Aban", + "block.middle-earth.izheraban_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Izhêr'Aban", + "block.middle-earth.izheraban_brickwork_wall": "Muret en maçonnerie d'Izhêr'Aban", + "block.middle-earth.izheraban_button": "Bouton en Izhêr'Aban", + "block.middle-earth.izheraban_carved_window": "Fenêtre sculptée en Izhêr'Aban", + "block.middle-earth.izheraban_chair": "Chaise en Izhêr'Aban", + "block.middle-earth.izheraban_pillar": "Pilier en Izhêr'Aban", + "block.middle-earth.izheraban_pressure_plate": "Plaque de pression en Izhêr'Aban", + "block.middle-earth.izheraban_rocks": "Éboulis d'Izhêr'Aban", + "block.middle-earth.izheraban_slab": "Dalle en Izhêr'Aban", + "block.middle-earth.izheraban_stairs": "Escalier en Izhêr'Aban", + "block.middle-earth.izheraban_stool": "Tabouret en Izhêr'Aban", + "block.middle-earth.izheraban_table": "Table en Izhêr'Aban", + "block.middle-earth.izheraban_tiles": "Izhêr'Aban carrelée", + "block.middle-earth.izheraban_trapdoor": "Trappe en Izhêr'Aban", + "block.middle-earth.izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban", + "block.middle-earth.izheraban_wall": "Muret en Izhêr'Aban", + "block.middle-earth.jadeite": "Jadéite", + "block.middle-earth.jadeite_bricks": "Briques en jadéite", + "block.middle-earth.jadeite_button": "Bouton en jadéite", + "block.middle-earth.jadeite_chair": "Chaise en jadéite", + "block.middle-earth.jadeite_pillar": "Pilier en jadéite", + "block.middle-earth.jadeite_pressure_plate": "Plaque de pression en jadéite", + "block.middle-earth.jadeite_rocks": "Éboulis de jadéite", + "block.middle-earth.jadeite_slab": "Dalle en jadéite", + "block.middle-earth.jadeite_stairs": "Escaliers en jadéite", + "block.middle-earth.jadeite_stool": "Tabouret en jadéite", + "block.middle-earth.jadeite_table": "Table en jadéite", + "block.middle-earth.jadeite_tiles": "Jadéite carrelée", + "block.middle-earth.jadeite_trapdoor": "Trappe en jadéite", + "block.middle-earth.jadeite_vertical_slab": "Dalle verticale en jadéite", + "block.middle-earth.jadeite_wall": "Muret en jadéite", + "block.middle-earth.jungle_bench": "Banc en acajou", + "block.middle-earth.jungle_chair": "Chaise en acajou", + "block.middle-earth.jungle_ladder": "Échelle en acajou", + "block.middle-earth.jungle_shingles": "Bardeaux d'acajou", + "block.middle-earth.jungle_shingles_slab": "Dalle en bardeaux d'acajou", + "block.middle-earth.jungle_shingles_stairs": "Escaliers en bardeaux d'acajou", + "block.middle-earth.jungle_shingles_vertical_slab": "Dalle verticale en bardeaux d'acajou", + "block.middle-earth.jungle_shingles_wall": "Muret en bardeaux d'acajou", + "block.middle-earth.jungle_stool": "Tabouret en acajou", + "block.middle-earth.jungle_table": "Table en acajou", + "block.middle-earth.jungle_vertical_slab": "Dalle verticale en acajou", + "block.middle-earth.jungle_wood_fence": "Barrière en bois d'acajou", + "block.middle-earth.jungle_wood_slab": "Dalle en bois d'acajou", + "block.middle-earth.jungle_wood_stairs": "Escalier en bois d'acajou", + "block.middle-earth.jungle_wood_vertical_slab": "Dalle verticale en bois d'acajou", + "block.middle-earth.jungle_wood_wall": "Muret en bois d'acajou", + "block.middle-earth.khazad_steel_block": "Bloc d'acier de Khâzad", + "block.middle-earth.larch_bench": "Banc en mélèze", + "block.middle-earth.larch_button": "Bouton en mélèze", + "block.middle-earth.larch_chair": "Chaise en mélèze", + "block.middle-earth.larch_door": "Porte en mélèze", + "block.middle-earth.larch_fence": "Barrière en mélèze", + "block.middle-earth.larch_fence_gate": "Portillon en mélèze", + "block.middle-earth.larch_hobbit_door": "Porte Hobbit en mélèze", + "block.middle-earth.larch_ladder": "Échelle en mélèze", + "block.middle-earth.larch_leaves": "Feuilles de mélèze", + "block.middle-earth.larch_log": "Bûche de mélèze", + "block.middle-earth.larch_planks": "Planches de mélèze", + "block.middle-earth.larch_pressure_plate": "Plaque de pression en mélèze", + "block.middle-earth.larch_roofing": "Toiture en mélèze", + "block.middle-earth.larch_roofing_slab": "Dalle de toiture en mélèze", + "block.middle-earth.larch_roofing_stairs": "Escalier de toiture en mélèze", + "block.middle-earth.larch_roofing_vertical_slab": "Dalle verticale de toiture en mélèze", + "block.middle-earth.larch_roofing_wall": "Muret de toiture en mélèze", + "block.middle-earth.larch_sapling": "Pousse de mélèze", + "block.middle-earth.larch_shingles": "Bardeaux en mélèze", + "block.middle-earth.larch_shingles_slab": "Dalle de bardeaux en mélèze", + "block.middle-earth.larch_shingles_stairs": "Escalier de bardeaux en mélèze", + "block.middle-earth.larch_shingles_vertical_slab": "Dalle verticale de bardeaux en mélèze", + "block.middle-earth.larch_shingles_wall": "Muret de bardeaux en mélèze", + "block.middle-earth.larch_slab": "Dalle en mélèze", + "block.middle-earth.larch_stairs": "Escaliers en mélèze", + "block.middle-earth.larch_stool": "Tabouret en mélèze", + "block.middle-earth.larch_table": "Table en mélèze", + "block.middle-earth.larch_trapdoor": "Trappe en mélèze", + "block.middle-earth.larch_vertical_slab": "Dalle verticale en mélèze", + "block.middle-earth.larch_wood": "Planches de mélèze", + "block.middle-earth.larch_wood_fence": "Barrière en mélèze", + "block.middle-earth.larch_wood_slab": "Dalle en bois de mélèze", + "block.middle-earth.larch_wood_stairs": "Escaliers en bois de mélèze", + "block.middle-earth.larch_wood_vertical_slab": "Dalle verticale en bois de mélèze", + "block.middle-earth.larch_wood_wall": "Muret en mélèze", + "block.middle-earth.large_citrine_bud": "Grand cristal de citrine", + "block.middle-earth.large_glowstone_bud": "Grand cristal de pierre lumineuse", + "block.middle-earth.large_quartz_bud": "Grand cristal de quartz", + "block.middle-earth.large_red_agate_bud": "Grand cristal d'agate rouge", + "block.middle-earth.large_sturdy_door": "Grande porte robuste", + "block.middle-earth.lead_block": "Bloc de plomb", + "block.middle-earth.lead_glass": "Verre plombé", + "block.middle-earth.lead_glass_pane": "Vitre plombée", + "block.middle-earth.lebethron_leaves": "Feuilles de Lebethron", + "block.middle-earth.lebethron_sapling": "Pousse de Lebethron", + "block.middle-earth.light_blue_clay_tiling": "Tuile d'argile bleu clair", + "block.middle-earth.light_blue_clay_tiling_slab": "Dalle en tuile d'argile bleu clair", + "block.middle-earth.light_blue_clay_tiling_stairs": "Escaliers en tuile d'argile bleu clair", + "block.middle-earth.light_blue_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile bleu clair", + "block.middle-earth.light_blue_clay_tiling_wall": "Muret en tuile d'argile bleu clair", + "block.middle-earth.light_blue_flowers": "Fleurs bleu clair", + "block.middle-earth.light_blue_hobbit_door": "Porte Hobbit bleu clair", + "block.middle-earth.light_blue_roof_tiles": "Tuiles de toit bleu clair", + "block.middle-earth.light_blue_stained_lead_glass": "Verre plombé bleu clair", + "block.middle-earth.light_blue_stained_lead_glass_pane": "Vitre plombée bleu clair", + "block.middle-earth.light_blue_wool_slab": "Dalle en laine bleu clair", + "block.middle-earth.light_blue_wool_stairs": "Escaliers en laine bleu clair", + "block.middle-earth.light_blue_wool_vertical_slab": "Dalle verticale en laine bleu clair", + "block.middle-earth.light_cyan_roof_tiles": "Tuiles de toit cyan clair", + "block.middle-earth.light_gray_clay_tiling": "Tuile d'argile gris clair", + "block.middle-earth.light_gray_clay_tiling_slab": "Dalle en tuile d'argile gris clair", + "block.middle-earth.light_gray_clay_tiling_stairs": "Escaliers en tuile d'argile gris clair", + "block.middle-earth.light_gray_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile gris clair", + "block.middle-earth.light_gray_clay_tiling_wall": "Muret en tuile d'argile gris clair", + "block.middle-earth.light_gray_roof_tiles": "Tuiles de toit gris clair", + "block.middle-earth.light_gray_stained_lead_glass": "Verre plombé gris clair", + "block.middle-earth.light_gray_stained_lead_glass_pane": "Vitre plombée gris clair", + "block.middle-earth.light_gray_wool_slab": "Dalle en laine gris clair", + "block.middle-earth.light_gray_wool_stairs": "Escaliers en laine gris clair", + "block.middle-earth.light_gray_wool_vertical_slab": "Dalle verticale en laine gris clair", + "block.middle-earth.light_green_roof_tiles": "Tuiles de toit vert clair", + "block.middle-earth.light_red_roof_tiles": "Tuiles de toit rouge clair", + "block.middle-earth.light_yellow_roof_tiles": "Tuiles de toit jaune clair", + "block.middle-earth.lilac_flower_growth": "Pousse de fleurs de lilas", + "block.middle-earth.lily_pads": "Nénuphars", + "block.middle-earth.lime_clay_tiling": "Tuile d'argile vert clair", + "block.middle-earth.lime_clay_tiling_slab": "Dalle en tuile d'argile vert clair", + "block.middle-earth.lime_clay_tiling_stairs": "Escaliers en tuile d'argile vert clair", + "block.middle-earth.lime_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile vert clair", + "block.middle-earth.lime_clay_tiling_wall": "Muret en tuile d'argile vert clair", + "block.middle-earth.lime_stained_lead_glass": "Verre plombé vert clair", + "block.middle-earth.lime_stained_lead_glass_pane": "Vitre plombée vert clair", + "block.middle-earth.lime_wool_slab": "Dalle en laine vert clair", + "block.middle-earth.lime_wool_stairs": "Escaliers en laine vert clair", + "block.middle-earth.lime_wool_vertical_slab": "Dalle verticale en laine vert clair", + "block.middle-earth.limestone": "Calcaire", + "block.middle-earth.limestone_bricks": "Briques de calcaire", + "block.middle-earth.limestone_brickwork": "Maçonnerie en calcaire", + "block.middle-earth.limestone_brickwork_slab": "Dalle de maçonnerie en calcaire", + "block.middle-earth.limestone_brickwork_stairs": "Escalier en maçonnerie de calcaire", + "block.middle-earth.limestone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en calcaire", + "block.middle-earth.limestone_brickwork_wall": "Muret en maçonnerie de calcaire", + "block.middle-earth.limestone_button": "Bouton en calcaire", + "block.middle-earth.limestone_chair": "Chaise en calcaire", + "block.middle-earth.limestone_coal_ore": "Minerai de charbon de calcaire", + "block.middle-earth.limestone_copper_ore": "Minerai de cuivre de calcaire", + "block.middle-earth.limestone_pillar": "Pilier en calcaire", + "block.middle-earth.limestone_pressure_plate": "Plaque de pression en calcaire", + "block.middle-earth.limestone_rocks": "Éboulis de calcaire", + "block.middle-earth.limestone_slab": "Dalle en calcaire", + "block.middle-earth.limestone_stairs": "Escaliers en calcaire", + "block.middle-earth.limestone_stool": "Tabouret en calcaire", + "block.middle-earth.limestone_table": "Table en calcaire", + "block.middle-earth.limestone_tiles": "Calcaire carrelé", + "block.middle-earth.limestone_tin_ore": "Minerai d'étain de calcaire", + "block.middle-earth.limestone_trapdoor": "Trappe en calcaire", + "block.middle-earth.limestone_vertical_slab": "Dalle verticale en calcaire", + "block.middle-earth.limestone_wall": "Muret en calcaire", + "block.middle-earth.lorien_podzol": "Podzol de Lórien", + "block.middle-earth.magenta_clay_tiling": "Tuile d'argile magenta", + "block.middle-earth.magenta_clay_tiling_slab": "Dalle en tuile d'argile magenta", + "block.middle-earth.magenta_clay_tiling_stairs": "Escaliers en tuile d'argile magenta", + "block.middle-earth.magenta_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile magenta", + "block.middle-earth.magenta_clay_tiling_wall": "Muret en tuile d'argile magenta", + "block.middle-earth.magenta_flowers": "Fleurs magenta", + "block.middle-earth.magenta_stained_lead_glass": "Verre plombé magenta", + "block.middle-earth.magenta_stained_lead_glass_pane": "Vitre plombée magenta", + "block.middle-earth.magenta_wool_slab": "Dalle en laine magenta", + "block.middle-earth.magenta_wool_stairs": "Escaliers en laine magenta", + "block.middle-earth.magenta_wool_vertical_slab": "Dalle verticale en laine magenta", + "block.middle-earth.mallorn_bench": "Banc en Mallorn", + "block.middle-earth.mallorn_button": "Bouton en Mallorn", + "block.middle-earth.mallorn_chair": "Chaise en Mallorn", + "block.middle-earth.mallorn_door": "Porte en Mallorn", + "block.middle-earth.mallorn_fence": "Barrière en Mallorn", + "block.middle-earth.mallorn_fence_gate": "Portillon en Mallorn", + "block.middle-earth.mallorn_ladder": "Échelle en Mallorn", + "block.middle-earth.mallorn_leaves": "Feuilles de Mallorn", + "block.middle-earth.mallorn_log": "Bûche de Mallorn", + "block.middle-earth.mallorn_planks": "Planches de Mallorn", + "block.middle-earth.mallorn_pressure_plate": "Plaque de pression en Mallorn", + "block.middle-earth.mallorn_roofing": "Toiture en Mallorn", + "block.middle-earth.mallorn_roofing_slab": "Dalle de toiture en Mallorn", + "block.middle-earth.mallorn_roofing_stairs": "Escalier de toiture en Mallorn", + "block.middle-earth.mallorn_roofing_vertical_slab": "Dalle verticale de toiture en Mallorn", + "block.middle-earth.mallorn_roofing_wall": "Muret de toiture en Mallorn", + "block.middle-earth.mallorn_sapling": "Pousse de Mallorn", + "block.middle-earth.mallorn_shingles": "Bardeaux en Mallorn", + "block.middle-earth.mallorn_shingles_slab": "Dalle en bardeaux de Mallorn", + "block.middle-earth.mallorn_shingles_stairs": "Escaliers en bardeaux de Mallorn", + "block.middle-earth.mallorn_shingles_vertical_slab": "Dalle verticale en bardeaux de Mallorn", + "block.middle-earth.mallorn_shingles_wall": "Muret en bardeaux de Mallorn", + "block.middle-earth.mallorn_slab": "Dalle en Mallorn", + "block.middle-earth.mallorn_stairs": "Escaliers en Mallorn", + "block.middle-earth.mallorn_stool": "Tabouret en Mallorn", + "block.middle-earth.mallorn_table": "Table en Mallorn", + "block.middle-earth.mallorn_trapdoor": "Trappe en Mallorn", + "block.middle-earth.mallorn_vertical_slab": "Dalle verticale en Mallorn", + "block.middle-earth.mallorn_wood": "Bois de Mallorn", + "block.middle-earth.mallorn_wood_fence": "Barrière en bois de Mallorn", + "block.middle-earth.mallorn_wood_slab": "Dalle en bois de Mallorn", + "block.middle-earth.mallorn_wood_stairs": "Escaliers en bois de Mallorn", + "block.middle-earth.mallorn_wood_vertical_slab": "Dalle verticale en bois de Mallorn", + "block.middle-earth.mallorn_wood_wall": "Muret en bois de Mallorn", + "block.middle-earth.mallos": "Mallos", + "block.middle-earth.mangrove_bench": "Banc en palétuvier", + "block.middle-earth.mangrove_chair": "Chaise en palétuvier", + "block.middle-earth.mangrove_ladder": "Échelle en palétuvier", + "block.middle-earth.mangrove_shingles": "Bardeaux de palétuvier", + "block.middle-earth.mangrove_shingles_slab": "Dalle en bardeaux de palétuvier", + "block.middle-earth.mangrove_shingles_stairs": "Escaliers en bardeaux de palétuvier", + "block.middle-earth.mangrove_shingles_vertical_slab": "Dalle verticale en bardeaux de palétuvier", + "block.middle-earth.mangrove_shingles_wall": "Muret en bardeaux de palétuvier", + "block.middle-earth.mangrove_stool": "Tabouret en palétuvier", + "block.middle-earth.mangrove_table": "Table en palétuvier", + "block.middle-earth.mangrove_vertical_slab": "Dalle verticale en palétuvier", + "block.middle-earth.mangrove_wood_fence": "Barrière en bois de palétuvier", + "block.middle-earth.mangrove_wood_slab": "Dalle en bois de palétuvier", + "block.middle-earth.mangrove_wood_stairs": "Escalier en bois de palétuvier", + "block.middle-earth.mangrove_wood_vertical_slab": "Dalle verticale en bois de palétuvier", + "block.middle-earth.mangrove_wood_wall": "Muret en bois de palétuvier", + "block.middle-earth.maple_bench": "Banc en érable", + "block.middle-earth.maple_button": "Bouton en érable", + "block.middle-earth.maple_chair": "Chaise en érable", + "block.middle-earth.maple_door": "Porte en érable", + "block.middle-earth.maple_fence": "Barrière en érable", + "block.middle-earth.maple_fence_gate": "Portillon en érable", + "block.middle-earth.maple_ladder": "Échelle en érable", + "block.middle-earth.maple_leaves": "Feuilles d'érable", + "block.middle-earth.maple_log": "Bûche d'érable", + "block.middle-earth.maple_planks": "Planches d'érable", + "block.middle-earth.maple_pressure_plate": "Plaque de pression en érable", + "block.middle-earth.maple_roofing": "Toiture en érable", + "block.middle-earth.maple_roofing_slab": "Dalle de toiture en érable", + "block.middle-earth.maple_roofing_stairs": "Escalier de toiture en érable", + "block.middle-earth.maple_roofing_vertical_slab": "Dalle verticale de toiture en érable", + "block.middle-earth.maple_roofing_wall": "Muret de toiture en érable", + "block.middle-earth.maple_sapling": "Pousse d'érable", + "block.middle-earth.maple_shingles": "Bardeaux d'érable", + "block.middle-earth.maple_shingles_slab": "Dalle en bardeaux d'érable", + "block.middle-earth.maple_shingles_stairs": "Escaliers en bardeaux d'érable", + "block.middle-earth.maple_shingles_vertical_slab": "Dalle verticale en bardeaux d'érable", + "block.middle-earth.maple_shingles_wall": "Muret en bardeaux d'érable", + "block.middle-earth.maple_slab": "Dalle en érable", + "block.middle-earth.maple_stairs": "Escaliers en érable", + "block.middle-earth.maple_stool": "Tabouret en érable", + "block.middle-earth.maple_table": "Table en érable", + "block.middle-earth.maple_trapdoor": "Trappe en érable", + "block.middle-earth.maple_vertical_slab": "Dalle verticale en érable", + "block.middle-earth.maple_wood": "Bois d'érable", + "block.middle-earth.maple_wood_fence": "Barrière en bois d'érable", + "block.middle-earth.maple_wood_slab": "Dalle en bois d'érable", + "block.middle-earth.maple_wood_stairs": "Escaliers en bois d'érable", + "block.middle-earth.maple_wood_vertical_slab": "Dalle verticale en bois d'érable", + "block.middle-earth.maple_wood_wall": "Muret en bois d'érable", + "block.middle-earth.medgon": "Medgon", + "block.middle-earth.medgon_bricks": "Briques en Medgon", + "block.middle-earth.medgon_brickwork": "Maçonnerie en Medgon", + "block.middle-earth.medgon_brickwork_slab": "Dalle de maçonnerie en Medgon", + "block.middle-earth.medgon_brickwork_stairs": "Escalier en maçonnerie de Medgon", + "block.middle-earth.medgon_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Medgon", + "block.middle-earth.medgon_brickwork_wall": "Muret en maçonnerie de Medgon", + "block.middle-earth.medgon_button": "Bouton en Medgon", + "block.middle-earth.medgon_carved_window": "Fenêtre sculptée en Medgon", + "block.middle-earth.medgon_chair": "Chaise en Medgon", + "block.middle-earth.medgon_gold_ore": "Minerai d'or de Medgon", + "block.middle-earth.medgon_iron_ore": "Minerai de fer de Medgon", + "block.middle-earth.medgon_lead_ore": "Minerai de plomb de Medgon", + "block.middle-earth.medgon_mithril_ore": "Minerai de mithril de Medgon", + "block.middle-earth.medgon_pillar": "Pilier en Medgon", + "block.middle-earth.medgon_pressure_plate": "Plaque de pression en Medgon", + "block.middle-earth.medgon_rocks": "Éboulis de Medgon", + "block.middle-earth.medgon_silver_ore": "Minerai d'argent de Medgon", + "block.middle-earth.medgon_slab": "Dalle en Medgon", + "block.middle-earth.medgon_stairs": "Escalier en Medgon", + "block.middle-earth.medgon_stool": "Tabouret en Medgon", + "block.middle-earth.medgon_table": "Table en Medgon", + "block.middle-earth.medgon_tiles": "Medgon carrelée", + "block.middle-earth.medgon_trapdoor": "Trappe en Medgon", + "block.middle-earth.medgon_vertical_slab": "Dalle verticale en Medgon", + "block.middle-earth.medgon_wall": "Muret en Medgon", + "block.middle-earth.medium_citrine_bud": "Cristal moyen de citrine", + "block.middle-earth.medium_glowstone_bud": "Cristal moyen de pierre lumineuse", + "block.middle-earth.medium_quartz_bud": "Cristal moyen de quartz", + "block.middle-earth.medium_red_agate_bud": "Cristal moyen d'agate rouge", + "block.middle-earth.mire": "Bourbier", + "block.middle-earth.mire_bricks": "Briques de bourbier", + "block.middle-earth.mire_slab": "Dalle de bourbier", + "block.middle-earth.mire_stairs": "Escaliers de bourbier", + "block.middle-earth.mirkwood_bench": "Banc de la Forêt noire", + "block.middle-earth.mirkwood_button": "Bouton de la Forêt noire", + "block.middle-earth.mirkwood_chair": "Chaise de la Forêt noire", + "block.middle-earth.mirkwood_door": "Porte de la Forêt noire", + "block.middle-earth.mirkwood_fence": "Barrière de la Forêt noire", + "block.middle-earth.mirkwood_fence_gate": "Portillon de la Forêt noire", + "block.middle-earth.mirkwood_hanging_roots": "Racines pendantes de la Forêt noire", + "block.middle-earth.mirkwood_ladder": "Échelle de la Forêt noire", + "block.middle-earth.mirkwood_leaves": "Feuilles de la Forêt noire", + "block.middle-earth.mirkwood_log": "Bûche de la Forêt noire", + "block.middle-earth.mirkwood_planks": "Planches de la Forêt noire", + "block.middle-earth.mirkwood_pressure_plate": "Plaque de pression de la Forêt noire", + "block.middle-earth.mirkwood_roofing": "Toiture de la Forêt noire", + "block.middle-earth.mirkwood_roofing_slab": "Dalle de toiture de la Forêt noire", + "block.middle-earth.mirkwood_roofing_stairs": "Escalier de toiture de la Forêt noire", + "block.middle-earth.mirkwood_roofing_vertical_slab": "Dalle verticale de toiture de la Forêt noire", + "block.middle-earth.mirkwood_roofing_wall": "Muret de toiture de la Forêt noire", + "block.middle-earth.mirkwood_roots": "Racines de la Forêt noire", + "block.middle-earth.mirkwood_sapling": "Pousse de la forêt noire", + "block.middle-earth.mirkwood_shingles": "Bardeaux de la Forêt noire", + "block.middle-earth.mirkwood_shingles_slab": "Dalle en bardeaux de la Forêt noire", + "block.middle-earth.mirkwood_shingles_stairs": "Escaliers en bardeaux de la Forêt noire", + "block.middle-earth.mirkwood_shingles_vertical_slab": "Dalle verticale en bardeaux de la Forêt noire", + "block.middle-earth.mirkwood_shingles_wall": "Muret en bardeaux de la Forêt noire", + "block.middle-earth.mirkwood_slab": "Dalle de la Forêt noire", + "block.middle-earth.mirkwood_stairs": "Escaliers de la Forêt noire", + "block.middle-earth.mirkwood_stool": "Tabouret de la Forêt noire", + "block.middle-earth.mirkwood_table": "Table de la Forêt noire", + "block.middle-earth.mirkwood_trapdoor": "Trappe de la Forêt noire", + "block.middle-earth.mirkwood_vertical_slab": "Dalle verticale de la Forêt noire", + "block.middle-earth.mirkwood_vines": "Lianes de la Forêt noire", + "block.middle-earth.mirkwood_wood": "Bois de la Forêt noire", + "block.middle-earth.mirkwood_wood_fence": "Barrière en bois de la Forêt noire", + "block.middle-earth.mirkwood_wood_slab": "Dalle en bois de la Forêt noire", + "block.middle-earth.mirkwood_wood_stairs": "Escaliers en bois de la Forêt noire", + "block.middle-earth.mirkwood_wood_vertical_slab": "Dalle verticale en bois de la Forêt noire", + "block.middle-earth.mirkwood_wood_wall": "Muret en bois de la Forêt noire", + "block.middle-earth.mithril_block": "Bloc de Mithril", + "block.middle-earth.mixed_stones": "Pierres mixtes", + "block.middle-earth.mixed_stones_brickwork": "Maçonnerie en pierres mixtes", + "block.middle-earth.mixed_stones_brickwork_slab": "Dalle de maçonnerie en pierres mixtes", + "block.middle-earth.mixed_stones_brickwork_stairs": "Escalier en maçonnerie de pierres mixtes", + "block.middle-earth.mixed_stones_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierres mixtes", + "block.middle-earth.mixed_stones_brickwork_wall": "Muret en maçonnerie de pierres mixtes", + "block.middle-earth.mixed_stones_slab": "Dalle en pierres mixtes", + "block.middle-earth.mixed_stones_stairs": "Escalier en pierres mixtes", + "block.middle-earth.mixed_stones_vertical_slab": "Dalle verticale en pierres mixtes", + "block.middle-earth.mixed_stones_wall": "Muret en pierres mixtes", + "block.middle-earth.morgul_ivy": "Lierre de Morgul", + "block.middle-earth.morsel": "Morsel", + "block.middle-earth.morsel_tiller": "Parterre de morsel", + "block.middle-earth.moss": "Mousse", + "block.middle-earth.moss_slab": "Dalle de mousse", + "block.middle-earth.moss_stairs": "Escaliers de mousse", + "block.middle-earth.mossy_andesite_bricks": "Briques d'andésite moussues", + "block.middle-earth.mossy_andesite_pillar": "Pilier en andésite moussue", + "block.middle-earth.mossy_andesite_tiles": "Andésite carrelée moussue", + "block.middle-earth.mossy_basalt_bricks": "Briques de basalte moussues", + "block.middle-earth.mossy_basalt_pillar": "Pilier en basalte moussu", + "block.middle-earth.mossy_basalt_tiles": "Basalte carrelé moussu", + "block.middle-earth.mossy_blackstone_pillar": "Pilier en pierre noire moussue", + "block.middle-earth.mossy_blackstone_tiles": "Roche noire carrelée moussue", + "block.middle-earth.mossy_blue_tuff_bricks": "Briques en tuf bleu moussues", + "block.middle-earth.mossy_blue_tuff_pillar": "Pilier en tuf bleu moussu", + "block.middle-earth.mossy_blue_tuff_tiles": "Tuf bleu carrelé moussu", + "block.middle-earth.mossy_calcite_bricks": "Briques en calcite moussues", + "block.middle-earth.mossy_calcite_pillar": "Pilier en calcite moussue", + "block.middle-earth.mossy_calcite_tiles": "Calcite carrelée moussue", + "block.middle-earth.mossy_cobbled_andesite": "Pierre d'andésite moussue", + "block.middle-earth.mossy_cobbled_andesite_slab": "Dalle en pierre d'andésite moussue", + "block.middle-earth.mossy_cobbled_andesite_stairs": "Escaliers en pierre d'andésite moussue", + "block.middle-earth.mossy_cobbled_andesite_vertical_slab": "Dalle verticale en pierre d'andésite moussue", + "block.middle-earth.mossy_cobbled_andesite_wall": "Muret en pierre d'andésite moussue", + "block.middle-earth.mossy_cobbled_basalt": "Pierre de basalte moussue", + "block.middle-earth.mossy_cobbled_basalt_slab": "Dalle en pierre de basalte moussue", + "block.middle-earth.mossy_cobbled_basalt_stairs": "Escalier en pierre de basalte moussue", + "block.middle-earth.mossy_cobbled_basalt_vertical_slab": "Dalle verticale en pierre de basalte moussue", + "block.middle-earth.mossy_cobbled_basalt_wall": "Muret en pierre de basalte moussue", + "block.middle-earth.mossy_cobbled_blackstone": "Pierre noire taillée moussue", + "block.middle-earth.mossy_cobbled_blackstone_slab": "Dalle en pierre noire taillée moussue", + "block.middle-earth.mossy_cobbled_blackstone_stairs": "Escalier en pierre noire taillée moussue", + "block.middle-earth.mossy_cobbled_blackstone_vertical_slab": "Dalle verticale en pierre noire taillée moussue", + "block.middle-earth.mossy_cobbled_blackstone_wall": "Muret en pierre noire taillée moussue", + "block.middle-earth.mossy_cobbled_blue_tuff": "Pierre de tuf bleu moussue", + "block.middle-earth.mossy_cobbled_blue_tuff_slab": "Dalle en pierre de tuf bleu moussue", + "block.middle-earth.mossy_cobbled_blue_tuff_stairs": "Escaliers en pierre de tuf bleu moussue", + "block.middle-earth.mossy_cobbled_blue_tuff_vertical_slab": "Dalle verticale en pierre de tuf bleu moussue", + "block.middle-earth.mossy_cobbled_blue_tuff_wall": "Muret en pierre de tuf bleu moussue", + "block.middle-earth.mossy_cobbled_calcite": "Pierre de calcite moussue", + "block.middle-earth.mossy_cobbled_calcite_slab": "Dalle en pierre de calcite moussue", + "block.middle-earth.mossy_cobbled_calcite_stairs": "Escaliers en pierres de calcite moussue", + "block.middle-earth.mossy_cobbled_calcite_vertical_slab": "Dalle verticale en pierre de calcite moussue", + "block.middle-earth.mossy_cobbled_calcite_wall": "Muret en pierre de calcite moussue", + "block.middle-earth.mossy_cobbled_deepslate": "Pierre des abîmes moussue", + "block.middle-earth.mossy_cobbled_deepslate_slab": "Dalle de pierre des abîmes moussue", + "block.middle-earth.mossy_cobbled_deepslate_stairs": "Escalier en pierre des abîmes moussue", + "block.middle-earth.mossy_cobbled_deepslate_vertical_slab": "Dalle verticale de pierre des abîmes moussue", + "block.middle-earth.mossy_cobbled_deepslate_wall": "Muret en pierre des abîmes moussue", + "block.middle-earth.mossy_cobbled_diorite": "Pierre de diorite moussue", + "block.middle-earth.mossy_cobbled_diorite_slab": "Dalle en pierre de diorite moussue", + "block.middle-earth.mossy_cobbled_diorite_stairs": "Escaliers en pierre de diorite moussue", + "block.middle-earth.mossy_cobbled_diorite_vertical_slab": "Dalle verticale en pierre de diorite moussue", + "block.middle-earth.mossy_cobbled_diorite_wall": "Muret en pierre de diorite moussue", + "block.middle-earth.mossy_cobbled_dolomite": "Pierre de dolomite moussue", + "block.middle-earth.mossy_cobbled_dolomite_slab": "Dalle en pierre de dolomite moussue", + "block.middle-earth.mossy_cobbled_dolomite_stairs": "Escaliers en pierre de dolomite moussue", + "block.middle-earth.mossy_cobbled_dolomite_vertical_slab": "Dalle verticale en pierre de dolomite moussue", + "block.middle-earth.mossy_cobbled_dolomite_wall": "Muret en pierre de dolomite moussue", + "block.middle-earth.mossy_cobbled_gabbro": "Pierre de gabbro moussue", + "block.middle-earth.mossy_cobbled_gabbro_slab": "Dalle en pierre de gabbro moussue", + "block.middle-earth.mossy_cobbled_gabbro_stairs": "Escalier en pierre de gabbro moussue", + "block.middle-earth.mossy_cobbled_gabbro_vertical_slab": "Dalle verticale en pierre de gabbro moussue", + "block.middle-earth.mossy_cobbled_gabbro_wall": "Muret en pierre de gabbro moussue", + "block.middle-earth.mossy_cobbled_galonn": "Pierre de Galonn moussue", + "block.middle-earth.mossy_cobbled_galonn_slab": "Dalle en pierre de Galonn moussue", + "block.middle-earth.mossy_cobbled_galonn_stairs": "Escalier en pierre de Galonn moussue", + "block.middle-earth.mossy_cobbled_galonn_vertical_slab": "Dalle verticale en pierre de Galonn moussue", + "block.middle-earth.mossy_cobbled_galonn_wall": "Muret en pierre de Galonn moussue", + "block.middle-earth.mossy_cobbled_gneiss": "Pierre de gneiss moussue", + "block.middle-earth.mossy_cobbled_gneiss_slab": "Dalle en pierre de gneiss moussue", + "block.middle-earth.mossy_cobbled_gneiss_stairs": "Escalier en pierre de gneiss moussue", + "block.middle-earth.mossy_cobbled_gneiss_vertical_slab": "Dalle verticale en pierre de gneiss moussue", + "block.middle-earth.mossy_cobbled_gneiss_wall": "Muret en pierre de gneiss moussue", + "block.middle-earth.mossy_cobbled_granite": "Pierre de granite moussue", + "block.middle-earth.mossy_cobbled_granite_slab": "Dalle en pierre de granite moussue", + "block.middle-earth.mossy_cobbled_granite_stairs": "Escaliers en pierre de granite moussue", + "block.middle-earth.mossy_cobbled_granite_vertical_slab": "Dalle verticale en pierre de granite moussue", + "block.middle-earth.mossy_cobbled_granite_wall": "Muret en pierre de granite moussue", + "block.middle-earth.mossy_cobbled_hematite": "Pierre d'hématite moussue", + "block.middle-earth.mossy_cobbled_hematite_slab": "Dalle en pierre d'hématite moussue", + "block.middle-earth.mossy_cobbled_hematite_stairs": "Escalier en pierre d'hématite moussue", + "block.middle-earth.mossy_cobbled_hematite_vertical_slab": "Dalle verticale en pierre d'hématite moussue", + "block.middle-earth.mossy_cobbled_hematite_wall": "Muret en pierre d'hématite moussue", + "block.middle-earth.mossy_cobbled_ironstone": "Pierre de fer taillée moussue", + "block.middle-earth.mossy_cobbled_ironstone_slab": "Dalle en pierre de fer taillée moussue", + "block.middle-earth.mossy_cobbled_ironstone_stairs": "Escalier en pierre de fer taillée moussue", + "block.middle-earth.mossy_cobbled_ironstone_vertical_slab": "Dalle verticale en pierre de fer taillée moussue", + "block.middle-earth.mossy_cobbled_ironstone_wall": "Muret en pierre de fer taillée moussue", + "block.middle-earth.mossy_cobbled_izheraban": "Pierre d'Izhêr'Aban moussue", + "block.middle-earth.mossy_cobbled_izheraban_slab": "Dalle en pierre d'Izhêr'Aban moussue", + "block.middle-earth.mossy_cobbled_izheraban_stairs": "Escalier en pierre d'Izhêr'Aban moussue", + "block.middle-earth.mossy_cobbled_izheraban_vertical_slab": "Dalle verticale en pierre d'Izhêr'Aban moussue", + "block.middle-earth.mossy_cobbled_izheraban_wall": "Muret en pierre d'Izhêr'Aban moussue", + "block.middle-earth.mossy_cobbled_limestone": "Pierre de calcaire moussue", + "block.middle-earth.mossy_cobbled_limestone_slab": "Dalle en pierre de calcaire moussue", + "block.middle-earth.mossy_cobbled_limestone_stairs": "Escaliers en pierre de calcaire moussue", + "block.middle-earth.mossy_cobbled_limestone_vertical_slab": "Dalle verticale en pierre de calcaire moussue", + "block.middle-earth.mossy_cobbled_limestone_wall": "Muret en pierre de calcaire moussue", + "block.middle-earth.mossy_cobbled_medgon": "Pierre de Medgon moussue", + "block.middle-earth.mossy_cobbled_medgon_slab": "Dalle en pierre de Medgon moussue", + "block.middle-earth.mossy_cobbled_medgon_stairs": "Escalier en pierre de Medgon moussue", + "block.middle-earth.mossy_cobbled_medgon_vertical_slab": "Dalle verticale en pierre de Medgon moussue", + "block.middle-earth.mossy_cobbled_medgon_wall": "Muret en pierre de Medgon moussue", + "block.middle-earth.mossy_cobbled_pumice": "Pierre ponce taillée moussue", + "block.middle-earth.mossy_cobbled_pumice_slab": "Dalle en pierre ponce taillée moussue", + "block.middle-earth.mossy_cobbled_pumice_stairs": "Escalier en pierre ponce taillée moussue", + "block.middle-earth.mossy_cobbled_pumice_vertical_slab": "Dalle verticale en pierre ponce taillée moussue", + "block.middle-earth.mossy_cobbled_pumice_wall": "Muret en pierre ponce taillée moussue", + "block.middle-earth.mossy_cobbled_slate": "Pierre d'ardoise moussue", + "block.middle-earth.mossy_cobbled_slate_slab": "Dalle en pierre d'ardoise moussue", + "block.middle-earth.mossy_cobbled_slate_stairs": "Escalier en pierre d'ardoise moussue", + "block.middle-earth.mossy_cobbled_slate_vertical_slab": "Dalle verticale en pierre d'ardoise moussue", + "block.middle-earth.mossy_cobbled_slate_wall": "Muret en pierre d'ardoise moussue", + "block.middle-earth.mossy_cobbled_tuff": "Pierre de tuf moussue", + "block.middle-earth.mossy_cobbled_tuff_slab": "Dalle en pierre de tuf moussue", + "block.middle-earth.mossy_cobbled_tuff_stairs": "Escalier en pierre de tuf moussue", + "block.middle-earth.mossy_cobbled_tuff_vertical_slab": "Dalle verticale en pierre de tuf moussue", + "block.middle-earth.mossy_cobbled_tuff_wall": "Muret en pierre de tuf moussue", + "block.middle-earth.mossy_cobbled_zigilaban": "Pierre de Zigil'Aban moussue", + "block.middle-earth.mossy_cobbled_zigilaban_slab": "Dalle en pierre de Zigil'Aban moussue", + "block.middle-earth.mossy_cobbled_zigilaban_stairs": "Escalier en pierre de Zigil'Aban moussue", + "block.middle-earth.mossy_cobbled_zigilaban_vertical_slab": "Dalle verticale en pierre de Zigil'Aban moussue", + "block.middle-earth.mossy_cobbled_zigilaban_wall": "Muret en pierre de Zigil'Aban moussue", + "block.middle-earth.mossy_cobblestone_vertical_slab": "Dalle verticale en pierre moussue", + "block.middle-earth.mossy_deepslate_bricks": "Ardoise des abîmes taillée moussue", + "block.middle-earth.mossy_deepslate_pillar": "Pilier d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_tiles": "Ardoise des abîmes carrelée moussue", + "block.middle-earth.mossy_diorite_bricks": "Briques de diorite moussues", + "block.middle-earth.mossy_diorite_pillar": "Pilier en diorite moussue", + "block.middle-earth.mossy_diorite_tiles": "Diorite carrelée moussue", + "block.middle-earth.mossy_dolomite_bricks": "Briques de dolomite moussues", + "block.middle-earth.mossy_dolomite_pillar": "Pilier en dolomite moussue", + "block.middle-earth.mossy_dolomite_tiles": "Dolomite carrelée moussue", + "block.middle-earth.mossy_gabbro_bricks": "Briques en gabbro moussues", + "block.middle-earth.mossy_gabbro_pillar": "Pilier en gabbro moussu", + "block.middle-earth.mossy_gabbro_tiles": "Gabbro carrelé moussu", + "block.middle-earth.mossy_galonn_bricks": "Briques en Galonn moussues", + "block.middle-earth.mossy_galonn_pillar": "Pilier en Galonn moussue", + "block.middle-earth.mossy_galonn_tiles": "Galonn carrelée moussue", + "block.middle-earth.mossy_gneiss_bricks": "Briques en gneiss moussues", + "block.middle-earth.mossy_gneiss_pillar": "Pilier en gneiss moussu", + "block.middle-earth.mossy_gneiss_tiles": "Gneiss carrelé moussu", + "block.middle-earth.mossy_granite_bricks": "Briques de granite moussues", + "block.middle-earth.mossy_granite_pillar": "Pilier en granite moussu", + "block.middle-earth.mossy_granite_tiles": "Granite carrelé moussu", + "block.middle-earth.mossy_hematite_bricks": "Briques en hématite moussues", + "block.middle-earth.mossy_hematite_pillar": "Pilier en hématite moussue", + "block.middle-earth.mossy_hematite_tiles": "Hématite carrelée moussue", + "block.middle-earth.mossy_ironstone_bricks": "Briques en pierre de fer moussues", + "block.middle-earth.mossy_ironstone_pillar": "Pilier en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_tiles": "Pierre de fer carrelée moussue", + "block.middle-earth.mossy_izheraban_bricks": "Briques en Izhêr'Aban moussues", + "block.middle-earth.mossy_izheraban_pillar": "Pilier en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_tiles": "Izhêr'Aban carrelée moussue", + "block.middle-earth.mossy_limestone_bricks": "Briques de calcaire moussues", + "block.middle-earth.mossy_limestone_pillar": "Pilier en calcaire moussu", + "block.middle-earth.mossy_limestone_tiles": "Calcaire carrelé moussu", + "block.middle-earth.mossy_medgon_bricks": "Briques en Medgon moussues", + "block.middle-earth.mossy_medgon_pillar": "Pilier en Medgon moussue", + "block.middle-earth.mossy_medgon_tiles": "Medgon carrelée moussue", + "block.middle-earth.mossy_mixed_stones": "Pierres mixtes moussues", + "block.middle-earth.mossy_mixed_stones_slab": "Dalle en pierres mixtes moussues", + "block.middle-earth.mossy_mixed_stones_stairs": "Escalier en pierres mixtes moussues", + "block.middle-earth.mossy_mixed_stones_vertical_slab": "Dalle verticale en pierres mixtes moussues", + "block.middle-earth.mossy_mixed_stones_wall": "Muret en pierres mixtes moussues", + "block.middle-earth.mossy_nurgon_bricks": "Briques en Núrgon moussues", + "block.middle-earth.mossy_nurgon_pillar": "Pilier en Núrgon moussue", + "block.middle-earth.mossy_nurgon_tiles": "Núrgon carrelée moussue", + "block.middle-earth.mossy_polished_andesite": "Andésite polie moussue", + "block.middle-earth.mossy_polished_andesite_slab": "Dalle en andésite polie moussue", + "block.middle-earth.mossy_polished_andesite_stairs": "Escaliers en andésite polie moussue", + "block.middle-earth.mossy_polished_andesite_vertical_slab": "Dalle verticale en andésite polie moussue", + "block.middle-earth.mossy_polished_andesite_wall": "Muret en andésite polie moussue", + "block.middle-earth.mossy_polished_basalt": "Basalte poli moussu", + "block.middle-earth.mossy_polished_basalt_slab": "Dalle en basalte poli moussu", + "block.middle-earth.mossy_polished_basalt_stairs": "Escaliers en basalte poli moussu", + "block.middle-earth.mossy_polished_basalt_vertical_slab": "Dalle verticale en basalte poli moussu", + "block.middle-earth.mossy_polished_basalt_wall": "Muret en basalte poli moussu", + "block.middle-earth.mossy_polished_blackstone": "Pierre noire polie moussue", + "block.middle-earth.mossy_polished_blackstone_bricks": "Briques en pierre noire polie moussues", + "block.middle-earth.mossy_polished_blackstone_slab": "Dalle en pierre noire polie moussue", + "block.middle-earth.mossy_polished_blackstone_stairs": "Escalier en pierre noire polie moussue", + "block.middle-earth.mossy_polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie moussue", + "block.middle-earth.mossy_polished_blackstone_wall": "Muret en pierre noire polie moussue", + "block.middle-earth.mossy_polished_blue_tuff": "Tuf bleu poli moussu", + "block.middle-earth.mossy_polished_blue_tuff_slab": "Dalle en tuf bleu poli moussu", + "block.middle-earth.mossy_polished_blue_tuff_stairs": "Escaliers en tuf bleu poli moussu", + "block.middle-earth.mossy_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli moussu", + "block.middle-earth.mossy_polished_blue_tuff_wall": "Muret en tuf bleu poli moussu", + "block.middle-earth.mossy_polished_calcite": "Calcite polie moussue", + "block.middle-earth.mossy_polished_calcite_slab": "Dalle en calcite polie moussue", + "block.middle-earth.mossy_polished_calcite_stairs": "Escaliers en calcite polie moussue", + "block.middle-earth.mossy_polished_calcite_vertical_slab": "Dalle verticale en calcite polie moussue", + "block.middle-earth.mossy_polished_calcite_wall": "Muret en calcite polie moussue", + "block.middle-earth.mossy_polished_deepslate": "Ardoise des abîmes polie moussue", + "block.middle-earth.mossy_polished_deepslate_slab": "Dalle en ardoise des abîmes polie moussue", + "block.middle-earth.mossy_polished_deepslate_stairs": "Escaliers en ardoise des abîmes polie moussue", + "block.middle-earth.mossy_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie moussue", + "block.middle-earth.mossy_polished_deepslate_wall": "Muret en ardoise des abîmes polie moussue", + "block.middle-earth.mossy_polished_diorite": "Diorite polie moussue", + "block.middle-earth.mossy_polished_diorite_slab": "Dalle en diorite polie moussue", + "block.middle-earth.mossy_polished_diorite_stairs": "Escaliers en diorite polie moussue", + "block.middle-earth.mossy_polished_diorite_vertical_slab": "Dalle verticale en diorite polie moussue", + "block.middle-earth.mossy_polished_diorite_wall": "Muret en diorite polie moussue", + "block.middle-earth.mossy_polished_dolomite": "Dolomite polie moussue", + "block.middle-earth.mossy_polished_dolomite_slab": "Dalle en dolomite polie moussue", + "block.middle-earth.mossy_polished_dolomite_stairs": "Escaliers en dolomite polie moussue", + "block.middle-earth.mossy_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie moussue", + "block.middle-earth.mossy_polished_dolomite_wall": "Muret en dolomite polie moussue", + "block.middle-earth.mossy_polished_gabbro": "Gabbro poli moussu", + "block.middle-earth.mossy_polished_gabbro_slab": "Dalle en gabbro poli moussu", + "block.middle-earth.mossy_polished_gabbro_stairs": "Escalier en gabbro poli moussu", + "block.middle-earth.mossy_polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli moussu", + "block.middle-earth.mossy_polished_gabbro_wall": "Muret en gabbro poli moussu", + "block.middle-earth.mossy_polished_galonn": "Galonn polie moussue", + "block.middle-earth.mossy_polished_galonn_slab": "Dalle en Galonn polie moussue", + "block.middle-earth.mossy_polished_galonn_stairs": "Escalier en Galonn polie moussue", + "block.middle-earth.mossy_polished_galonn_vertical_slab": "Dalle verticale en Galonn polie moussue", + "block.middle-earth.mossy_polished_galonn_wall": "Muret en Galonn polie moussue", + "block.middle-earth.mossy_polished_gneiss": "Gneiss poli moussu", + "block.middle-earth.mossy_polished_gneiss_slab": "Dalle en gneiss poli moussu", + "block.middle-earth.mossy_polished_gneiss_stairs": "Escalier en gneiss poli moussu", + "block.middle-earth.mossy_polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli moussu", + "block.middle-earth.mossy_polished_gneiss_wall": "Muret en gneiss poli moussu", + "block.middle-earth.mossy_polished_granite": "Granite poli moussu", + "block.middle-earth.mossy_polished_granite_slab": "Dalle en granite poli moussu", + "block.middle-earth.mossy_polished_granite_stairs": "Escaliers en granite poli moussu", + "block.middle-earth.mossy_polished_granite_vertical_slab": "Dalle verticale en granite poli moussu", + "block.middle-earth.mossy_polished_granite_wall": "Muret en granite poli moussu", + "block.middle-earth.mossy_polished_hematite": "Hématite polie moussue", + "block.middle-earth.mossy_polished_hematite_slab": "Dalle en hématite polie moussue", + "block.middle-earth.mossy_polished_hematite_stairs": "Escalier en hématite polie moussue", + "block.middle-earth.mossy_polished_hematite_vertical_slab": "Dalle verticale en hématite polie moussue", + "block.middle-earth.mossy_polished_hematite_wall": "Muret en hématite polie moussue", + "block.middle-earth.mossy_polished_ironstone": "Pierre de fer polie moussue", + "block.middle-earth.mossy_polished_ironstone_slab": "Dalle en pierre de fer polie moussue", + "block.middle-earth.mossy_polished_ironstone_stairs": "Escalier en pierre de fer polie moussue", + "block.middle-earth.mossy_polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie moussue", + "block.middle-earth.mossy_polished_ironstone_wall": "Muret en pierre de fer polie moussue", + "block.middle-earth.mossy_polished_izheraban": "Izhêr'Aban polie moussue", + "block.middle-earth.mossy_polished_izheraban_slab": "Dalle en Izhêr'Aban polie moussue", + "block.middle-earth.mossy_polished_izheraban_stairs": "Escalier en Izhêr'Aban polie moussue", + "block.middle-earth.mossy_polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie moussue", + "block.middle-earth.mossy_polished_izheraban_wall": "Muret en Izhêr'Aban polie moussue", + "block.middle-earth.mossy_polished_limestone": "Calcaire poli moussu", + "block.middle-earth.mossy_polished_limestone_slab": "Dalle en calcaire poli moussu", + "block.middle-earth.mossy_polished_limestone_stairs": "Escaliers en calcaire poli moussu", + "block.middle-earth.mossy_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli moussu", + "block.middle-earth.mossy_polished_limestone_wall": "Muret en calcaire poli moussu", + "block.middle-earth.mossy_polished_medgon": "Medgon polie moussue", + "block.middle-earth.mossy_polished_medgon_slab": "Dalle en Medgon polie moussue", + "block.middle-earth.mossy_polished_medgon_stairs": "Escalier en Medgon polie moussue", + "block.middle-earth.mossy_polished_medgon_vertical_slab": "Dalle verticale en Medgon polie moussue", + "block.middle-earth.mossy_polished_medgon_wall": "Muret en Medgon polie moussue", + "block.middle-earth.mossy_polished_nurgon": "Núrgon polie moussue", + "block.middle-earth.mossy_polished_nurgon_slab": "Dalle en Núrgon polie moussue", + "block.middle-earth.mossy_polished_nurgon_stairs": "Escalier en Núrgon polie moussue", + "block.middle-earth.mossy_polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie moussue", + "block.middle-earth.mossy_polished_nurgon_wall": "Muret en Núrgon polie moussue", + "block.middle-earth.mossy_polished_pumice": "Pierre ponce polie moussue", + "block.middle-earth.mossy_polished_pumice_slab": "Dalle en pierre ponce polie moussue", + "block.middle-earth.mossy_polished_pumice_stairs": "Escalier en pierre ponce polie moussue", + "block.middle-earth.mossy_polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie moussue", + "block.middle-earth.mossy_polished_pumice_wall": "Muret en pierre ponce polie moussue", + "block.middle-earth.mossy_polished_slate": "Ardoise polie moussue", + "block.middle-earth.mossy_polished_slate_slab": "Dalle en ardoise polie moussue", + "block.middle-earth.mossy_polished_slate_stairs": "Escalier en ardoise polie moussue", + "block.middle-earth.mossy_polished_slate_vertical_slab": "Dalle verticale en ardoise polie moussue", + "block.middle-earth.mossy_polished_slate_wall": "Muret en ardoise polie moussue", + "block.middle-earth.mossy_polished_stone": "Roche polie moussue", + "block.middle-earth.mossy_polished_stone_slab": "Dalle en roche polie moussue", + "block.middle-earth.mossy_polished_stone_stairs": "Escalier en roche polie moussue", + "block.middle-earth.mossy_polished_stone_vertical_slab": "Dalle verticale en roche polie moussue", + "block.middle-earth.mossy_polished_stone_wall": "Muret en roche polie moussue", + "block.middle-earth.mossy_polished_tuff": "Tuf poli moussu", + "block.middle-earth.mossy_polished_tuff_slab": "Dalle en tuf poli moussu", + "block.middle-earth.mossy_polished_tuff_stairs": "Escalier en tuf poli moussu", + "block.middle-earth.mossy_polished_tuff_vertical_slab": "Dalle verticale en tuf poli moussu", + "block.middle-earth.mossy_polished_tuff_wall": "Muret en tuf poli moussu", + "block.middle-earth.mossy_polished_zigilaban": "Zigil'Aban polie moussue", + "block.middle-earth.mossy_polished_zigilaban_slab": "Dalle en Zigil'Aban polie moussue", + "block.middle-earth.mossy_polished_zigilaban_stairs": "Escalier en Zigil'Aban polie moussue", + "block.middle-earth.mossy_polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie moussue", + "block.middle-earth.mossy_polished_zigilaban_wall": "Muret en Zigil'Aban polie moussue", + "block.middle-earth.mossy_pumice_bricks": "Briques en pierre ponce moussues", + "block.middle-earth.mossy_pumice_pillar": "Pilier en pierre ponce moussue", + "block.middle-earth.mossy_pumice_tiles": "Pierre ponce carrelée moussue", + "block.middle-earth.mossy_slate_bricks": "Briques en ardoise moussues", + "block.middle-earth.mossy_slate_pillar": "Pilier en ardoise moussue", + "block.middle-earth.mossy_slate_tiles": "Ardoise carrelée moussue", + "block.middle-earth.mossy_smooth_andesite": "Andésite lisse moussue", + "block.middle-earth.mossy_smooth_andesite_slab": "Dalle en andésite lisse moussue", + "block.middle-earth.mossy_smooth_andesite_stairs": "Escalier en andésite lisse moussue", + "block.middle-earth.mossy_smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse moussue", + "block.middle-earth.mossy_smooth_andesite_wall": "Muret en andésite lisse moussue", + "block.middle-earth.mossy_smooth_basalt": "Basalte lisse moussu", + "block.middle-earth.mossy_smooth_basalt_slab": "Dalle en basalte lisse moussu", + "block.middle-earth.mossy_smooth_basalt_stairs": "Escalier en basalte lisse moussu", + "block.middle-earth.mossy_smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse moussu", + "block.middle-earth.mossy_smooth_basalt_wall": "Muret en basalte lisse moussu", + "block.middle-earth.mossy_smooth_blackstone": "Roche noire lisse moussue", + "block.middle-earth.mossy_smooth_blackstone_slab": "Dalle en roche noire lisse moussue", + "block.middle-earth.mossy_smooth_blackstone_stairs": "Escalier en roche noire lisse moussue", + "block.middle-earth.mossy_smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse moussue", + "block.middle-earth.mossy_smooth_blackstone_wall": "Muret en roche noire lisse moussue", + "block.middle-earth.mossy_smooth_calcite": "Calcite lisse moussue", + "block.middle-earth.mossy_smooth_calcite_slab": "Dalle en calcite lisse moussue", + "block.middle-earth.mossy_smooth_calcite_stairs": "Escalier en calcite lisse moussue", + "block.middle-earth.mossy_smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse moussue", + "block.middle-earth.mossy_smooth_calcite_wall": "Muret en calcite lisse moussue", + "block.middle-earth.mossy_smooth_deepslate": "Ardoise des abîmes lisse moussue", + "block.middle-earth.mossy_smooth_deepslate_slab": "Dalle en ardoise des abîmes lisse moussue", + "block.middle-earth.mossy_smooth_deepslate_stairs": "Escalier en ardoise des abîmes lisse moussue", + "block.middle-earth.mossy_smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse moussue", + "block.middle-earth.mossy_smooth_deepslate_wall": "Muret en ardoise des abîmes lisse moussue", + "block.middle-earth.mossy_smooth_diorite": "Diorite lisse moussue", + "block.middle-earth.mossy_smooth_diorite_slab": "Dalle en diorite lisse moussue", + "block.middle-earth.mossy_smooth_diorite_stairs": "Escalier en diorite lisse moussue", + "block.middle-earth.mossy_smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse moussue", + "block.middle-earth.mossy_smooth_diorite_wall": "Muret en diorite lisse moussue", + "block.middle-earth.mossy_smooth_dolomite": "Dolomite lisse moussue", + "block.middle-earth.mossy_smooth_dolomite_slab": "Dalle en dolomite lisse moussue", + "block.middle-earth.mossy_smooth_dolomite_stairs": "Escalier en dolomite lisse moussue", + "block.middle-earth.mossy_smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse moussue", + "block.middle-earth.mossy_smooth_dolomite_wall": "Muret en dolomite lisse moussue", + "block.middle-earth.mossy_smooth_galonn": "Galonn lisse moussue", + "block.middle-earth.mossy_smooth_galonn_slab": "Dalle en Galonn lisse moussue", + "block.middle-earth.mossy_smooth_galonn_stairs": "Escalier en Galonn lisse moussue", + "block.middle-earth.mossy_smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse moussue", + "block.middle-earth.mossy_smooth_galonn_wall": "Muret en Galonn lisse moussue", + "block.middle-earth.mossy_smooth_granite": "Granite lisse moussu", + "block.middle-earth.mossy_smooth_granite_slab": "Dalle en granite lisse moussu", + "block.middle-earth.mossy_smooth_granite_stairs": "Escalier en granite lisse moussu", + "block.middle-earth.mossy_smooth_granite_vertical_slab": "Dalle verticale en granite lisse moussu", + "block.middle-earth.mossy_smooth_granite_wall": "Muret en granite lisse moussu", + "block.middle-earth.mossy_smooth_izheraban": "Izhêr'Aban lisse moussue", + "block.middle-earth.mossy_smooth_izheraban_slab": "Dalle en Izhêr'Aban lisse moussue", + "block.middle-earth.mossy_smooth_izheraban_stairs": "Escalier en Izhêr'Aban lisse moussue", + "block.middle-earth.mossy_smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse moussue", + "block.middle-earth.mossy_smooth_izheraban_wall": "Muret en Izhêr'Aban lisse moussue", + "block.middle-earth.mossy_smooth_limestone": "Calcaire lisse moussu", + "block.middle-earth.mossy_smooth_limestone_slab": "Dalle en calcaire lisse moussu", + "block.middle-earth.mossy_smooth_limestone_stairs": "Escalier en calcaire lisse moussu", + "block.middle-earth.mossy_smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse moussu", + "block.middle-earth.mossy_smooth_limestone_wall": "Muret en calcaire lisse moussu", + "block.middle-earth.mossy_smooth_medgon": "Medgon lisse moussue", + "block.middle-earth.mossy_smooth_medgon_slab": "Dalle en Medgon lisse moussue", + "block.middle-earth.mossy_smooth_medgon_stairs": "Escalier en Medgon lisse moussue", + "block.middle-earth.mossy_smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse moussue", + "block.middle-earth.mossy_smooth_medgon_wall": "Muret en Medgon lisse moussue", + "block.middle-earth.mossy_smooth_stone": "Roche lisse moussue", + "block.middle-earth.mossy_smooth_stone_slab": "Dalle de roche lisse moussue", + "block.middle-earth.mossy_smooth_stone_stairs": "Escalier en roche lisse moussue", + "block.middle-earth.mossy_smooth_stone_vertical_slab": "Dalle verticale de roche lisse moussue", + "block.middle-earth.mossy_smooth_stone_wall": "Muret en roche lisse moussue", + "block.middle-earth.mossy_smooth_tuff": "Tuf lisse moussu", + "block.middle-earth.mossy_smooth_tuff_slab": "Dalle en tuf lisse moussu", + "block.middle-earth.mossy_smooth_tuff_stairs": "Escalier en tuf lisse moussu", + "block.middle-earth.mossy_smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse moussu", + "block.middle-earth.mossy_smooth_tuff_wall": "Muret en tuf lisse moussu", + "block.middle-earth.mossy_stone_brick_vertical_slab": "Dalle verticale en pierre taillée moussue", + "block.middle-earth.mossy_stone_pillar": "Pilier en roche moussue", + "block.middle-earth.mossy_stone_tiles": "Roche carrelée moussue", + "block.middle-earth.mossy_tuff_bricks": "Briques en tuf moussues", + "block.middle-earth.mossy_tuff_pillar": "Pilier en tuf moussu", + "block.middle-earth.mossy_tuff_tiles": "Tuf carrelé moussu", + "block.middle-earth.mossy_zigilaban_bricks": "Briques en Zigil'Aban moussues", + "block.middle-earth.mossy_zigilaban_pillar": "Pilier en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_tiles": "Zigil'Aban carrelée moussue", + "block.middle-earth.mud_brick_round_window": "Fenêtre ronde en brique de terre", + "block.middle-earth.mud_brick_round_window_pane": "Vitre ronde en brique de terre", + "block.middle-earth.mud_brick_vertical_slab": "Dalle verticale en brique de terre", + "block.middle-earth.mud_slab": "Dalle de boue", + "block.middle-earth.mud_stairs": "Escaliers de boue", + "block.middle-earth.mushroom_bench": "Banc en champignon", + "block.middle-earth.mushroom_button": "Bouton en champignon", + "block.middle-earth.mushroom_chair": "Chaise en champignon", + "block.middle-earth.mushroom_door": "Porte en champignon", + "block.middle-earth.mushroom_fence": "Barrière en champignon", + "block.middle-earth.mushroom_fence_gate": "Portillon en champignon", + "block.middle-earth.mushroom_ladder": "Échelle en champignon", + "block.middle-earth.mushroom_planks": "Planches de champignon", + "block.middle-earth.mushroom_pressure_plate": "Plaque de pression en champignon", + "block.middle-earth.mushroom_shingles": "Bardeaux de champignon", + "block.middle-earth.mushroom_shingles_slab": "Dalle en bardeaux de champignon", + "block.middle-earth.mushroom_shingles_stairs": "Escaliers en bardeaux de champignon", + "block.middle-earth.mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon", + "block.middle-earth.mushroom_shingles_wall": "Muret en bardeaux de champignon", + "block.middle-earth.mushroom_slab": "Dalle en champignon", + "block.middle-earth.mushroom_stairs": "Escalier en champignon", + "block.middle-earth.mushroom_stem_fence": "Barrière en tige de champignon", + "block.middle-earth.mushroom_stem_wall": "Muret en tige de champignon", + "block.middle-earth.mushroom_stool": "Tabouret en champignon", + "block.middle-earth.mushroom_table": "Table en champignon", + "block.middle-earth.mushroom_trapdoor": "Trappe en champignon", + "block.middle-earth.mushroom_vertical_slab": "Dalle verticale en champignon", + "block.middle-earth.net": "Filet", + "block.middle-earth.nether_brick_vertical_slab": "Dalle verticale en brique du nether", + "block.middle-earth.nurgon": "Núrgon", + "block.middle-earth.nurgon_bricks": "Briques en Núrgon", + "block.middle-earth.nurgon_button": "Bouton en Núrgon", + "block.middle-earth.nurgon_chair": "Chaise en Núrgon", + "block.middle-earth.nurgon_gold_ore": "Minerai d'or de Núrgon", + "block.middle-earth.nurgon_iron_ore": "Minerai de fer de Núrgon", + "block.middle-earth.nurgon_lead_ore": "Minerai de plomb de Núrgon", + "block.middle-earth.nurgon_pillar": "Pilier en Núrgon", + "block.middle-earth.nurgon_pressure_plate": "Plaque de pression en Núrgon", + "block.middle-earth.nurgon_rocks": "Éboulis de Núrgon", + "block.middle-earth.nurgon_silver_ore": "Minerai d'argent de Núrgon", + "block.middle-earth.nurgon_slab": "Dalle en Núrgon", + "block.middle-earth.nurgon_stairs": "Escalier en Núrgon", + "block.middle-earth.nurgon_stool": "Tabouret en Núrgon", + "block.middle-earth.nurgon_table": "Table en Núrgon", + "block.middle-earth.nurgon_tiles": "Núrgon carrelée", + "block.middle-earth.nurgon_tin_ore": "Minerai d'étain de Núrgon", + "block.middle-earth.nurgon_trapdoor": "Trappe en Núrgon", + "block.middle-earth.nurgon_vertical_slab": "Dalle verticale en Núrgon", + "block.middle-earth.nurgon_wall": "Muret en Núrgon", + "block.middle-earth.oak_bench": "Banc en chêne", + "block.middle-earth.oak_chair": "Chaise en chêne", + "block.middle-earth.oak_ladder": "Échelle en chêne", + "block.middle-earth.oak_shingles": "Bardeaux de chêne", + "block.middle-earth.oak_shingles_slab": "Dalle en bardeaux de chêne", + "block.middle-earth.oak_shingles_stairs": "Escaliers en bardeaux de chêne", + "block.middle-earth.oak_shingles_vertical_slab": "Dalle verticale en bardeaux de chêne", + "block.middle-earth.oak_shingles_wall": "Muret en bardeaux de chêne", + "block.middle-earth.oak_stable_door": "Porte d'écurie en chêne", + "block.middle-earth.oak_stool": "Tabouret en chêne", + "block.middle-earth.oak_table": "Table en chêne", + "block.middle-earth.oak_vertical_slab": "Dalle verticale en chêne", + "block.middle-earth.oak_wood_fence": "Barrière en bois de chêne", + "block.middle-earth.oak_wood_slab": "Dalle en bois de chêne", + "block.middle-earth.oak_wood_stairs": "Escalier en bois de chêne", + "block.middle-earth.oak_wood_vertical_slab": "Dalle verticale en bois de chêne", + "block.middle-earth.oak_wood_wall": "Muret en bois de chêne", + "block.middle-earth.off_blue_roof_tiles": "Tuiles de toit bleu délavé", + "block.middle-earth.off_brown_roof_tiles": "Tuiles de toit marron délavé", + "block.middle-earth.off_cyan_roof_tiles": "Tuiles de toit cyan délavé", + "block.middle-earth.off_gray_roof_tiles": "Tuiles de toit gris délavé", + "block.middle-earth.off_green_roof_tiles": "Tuiles de toit vert délavé", + "block.middle-earth.off_red_roof_tiles": "Tuiles de toit rouge délavé", + "block.middle-earth.off_yellow_roof_tiles": "Tuiles de toit jaune délavé", + "block.middle-earth.old_andesite": "Vieille andésite", + "block.middle-earth.old_andesite_slab": "Dalle de vieille andésite", + "block.middle-earth.old_andesite_stairs": "Escalier en vieille andésite", + "block.middle-earth.old_andesite_vertical_slab": "Dalle verticale de vieille andésite", + "block.middle-earth.old_andesite_wall": "Muret en vieille andésite", + "block.middle-earth.old_basalt": "Vieux basalte", + "block.middle-earth.old_basalt_slab": "Dalle de vieux basalte", + "block.middle-earth.old_basalt_stairs": "Escalier en vieux basalte", + "block.middle-earth.old_basalt_vertical_slab": "Dalle verticale de vieux basalte", + "block.middle-earth.old_basalt_wall": "Muret en vieux basalte", + "block.middle-earth.old_blackstone": "Vieille roche noire", + "block.middle-earth.old_blackstone_slab": "Dalle de vieille roche noire", + "block.middle-earth.old_blackstone_stairs": "Escalier en vieille roche noire", + "block.middle-earth.old_blackstone_vertical_slab": "Dalle verticale de vieille roche noire", + "block.middle-earth.old_blackstone_wall": "Muret en vieille roche noire", + "block.middle-earth.old_bricks": "Briques anciennes", + "block.middle-earth.old_calcite": "Vieille calcite", + "block.middle-earth.old_calcite_slab": "Dalle de vieille calcite", + "block.middle-earth.old_calcite_stairs": "Escalier en vieille calcite", + "block.middle-earth.old_calcite_vertical_slab": "Dalle verticale de vieille calcite", + "block.middle-earth.old_calcite_wall": "Muret en vieille calcite", + "block.middle-earth.old_deepslate": "Vieille ardoise des abîmes", + "block.middle-earth.old_deepslate_slab": "Dalle de vieille ardoise des abîmes", + "block.middle-earth.old_deepslate_stairs": "Escalier en vieille ardoise des abîmes", + "block.middle-earth.old_deepslate_vertical_slab": "Dalle verticale de vieille ardoise des abîmes", + "block.middle-earth.old_deepslate_wall": "Muret en vieille ardoise des abîmes", + "block.middle-earth.old_diorite": "Vieille diorite", + "block.middle-earth.old_diorite_slab": "Dalle de vieille diorite", + "block.middle-earth.old_diorite_stairs": "Escalier en vieille diorite", + "block.middle-earth.old_diorite_vertical_slab": "Dalle verticale de vieille diorite", + "block.middle-earth.old_diorite_wall": "Muret en vieille diorite", + "block.middle-earth.old_dolomite": "Vieille dolomite", + "block.middle-earth.old_dolomite_slab": "Dalle de vieille dolomite", + "block.middle-earth.old_dolomite_stairs": "Escalier en vieille dolomite", + "block.middle-earth.old_dolomite_vertical_slab": "Dalle verticale de vieille dolomite", + "block.middle-earth.old_dolomite_wall": "Muret en vieille dolomite", + "block.middle-earth.old_galonn": "Vieille Galonn", + "block.middle-earth.old_galonn_slab": "Dalle de vieille Galonn", + "block.middle-earth.old_galonn_stairs": "Escalier en vieille Galonn", + "block.middle-earth.old_galonn_vertical_slab": "Dalle verticale de vieille Galonn", + "block.middle-earth.old_galonn_wall": "Muret en vieille Galonn", + "block.middle-earth.old_granite": "Vieux granite", + "block.middle-earth.old_granite_slab": "Dalle de vieux granite", + "block.middle-earth.old_granite_stairs": "Escalier en vieux granite", + "block.middle-earth.old_granite_vertical_slab": "Dalle verticale de vieux granite", + "block.middle-earth.old_granite_wall": "Muret en vieux granite", + "block.middle-earth.old_izheraban": "Vieille Izhêr'Aban", + "block.middle-earth.old_izheraban_slab": "Dalle de vieille Izhêr'Aban", + "block.middle-earth.old_izheraban_stairs": "Escalier en vieille Izhêr'Aban", + "block.middle-earth.old_izheraban_vertical_slab": "Dalle verticale de vieille Izhêr'Aban", + "block.middle-earth.old_izheraban_wall": "Muret en vieille Izhêr'Aban", + "block.middle-earth.old_limestone": "Vieux calcaire", + "block.middle-earth.old_limestone_slab": "Dalle de vieux calcaire", + "block.middle-earth.old_limestone_stairs": "Escalier en vieux calcaire", + "block.middle-earth.old_limestone_vertical_slab": "Dalle verticale de vieux calcaire", + "block.middle-earth.old_limestone_wall": "Muret en vieux calcaire", + "block.middle-earth.old_medgon": "Vieille Medgon", + "block.middle-earth.old_medgon_slab": "Dalle de vieille Medgon", + "block.middle-earth.old_medgon_stairs": "Escalier en vieille Medgon", + "block.middle-earth.old_medgon_vertical_slab": "Dalle verticale de vieille Medgon", + "block.middle-earth.old_medgon_wall": "Muret en vieille Medgon", + "block.middle-earth.old_podzol": "Vieux podzol", + "block.middle-earth.old_stone": "Vieille roche", + "block.middle-earth.old_stone_slab": "Dalle de vieille roche", + "block.middle-earth.old_stone_stairs": "Escalier en vieille roche", + "block.middle-earth.old_stone_vertical_slab": "Dalle verticale de vieille roche", + "block.middle-earth.old_stone_wall": "Muret en vieille roche", + "block.middle-earth.old_thatch": "Chaume ancien", + "block.middle-earth.old_thatch_slab": "Dalle en chaume ancien", + "block.middle-earth.old_thatch_stairs": "Escaliers en chaume ancien", + "block.middle-earth.old_thatch_vertical_slab": "Dalle verticale en chaume ancien", + "block.middle-earth.old_thatch_wall": "Muret en chaume ancien", + "block.middle-earth.old_tuff": "Vieux tuf", + "block.middle-earth.old_tuff_slab": "Dalle de vieux tuf", + "block.middle-earth.old_tuff_stairs": "Escalier en vieux tuf", + "block.middle-earth.old_tuff_vertical_slab": "Dalle verticale de vieux tuf", + "block.middle-earth.old_tuff_wall": "Muret en vieux tuf", + "block.middle-earth.orange_clay_tiling": "Tuile d'argile orange", + "block.middle-earth.orange_clay_tiling_slab": "Dalle en tuile d'argile orange", + "block.middle-earth.orange_clay_tiling_stairs": "Escaliers en tuile d'argile orange", + "block.middle-earth.orange_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile orange", + "block.middle-earth.orange_clay_tiling_wall": "Muret en tuile d'argile orange", + "block.middle-earth.orange_flowers": "Fleurs orange", + "block.middle-earth.orange_maple_leaves": "Feuilles d'érable orange", + "block.middle-earth.orange_stained_lead_glass": "Verre plombé orange", + "block.middle-earth.orange_stained_lead_glass_pane": "Vitre plombée orange", + "block.middle-earth.orange_wool_slab": "Dalle en laine orange", + "block.middle-earth.orange_wool_stairs": "Escaliers en laine orange", + "block.middle-earth.orange_wool_vertical_slab": "Dalle verticale en laine orange", + "block.middle-earth.orcish_sconce": "Applique murale orque", + "block.middle-earth.orcish_treated_anvil": "Enclume orque traitée", + "block.middle-earth.oxidized_copper_bars": "Barreaux en cuivre oxydé", + "block.middle-earth.oxidized_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé oxydé", + "block.middle-earth.oxidized_cut_copper_wall": "Muret en cuivre taillé oxydé", + "block.middle-earth.packed_mire": "Bourbier tassé", + "block.middle-earth.packed_mire_slab": "Dalle de bourbier tassé", + "block.middle-earth.packed_mire_stairs": "Escaliers de bourbier tassé", + "block.middle-earth.packed_mire_vertical_slab": "Dalle verticale de bourbier tassé", + "block.middle-earth.packed_mire_wall": "Muret de bourbier tassé", + "block.middle-earth.packed_mud_slab": "Dalle de boue compactée", + "block.middle-earth.packed_mud_stairs": "Escalier de boue compactée", + "block.middle-earth.packed_mud_vertical_slab": "Dalle verticale de boue compactée", + "block.middle-earth.packed_mud_wall": "Muret de boue compactée", + "block.middle-earth.palm_bench": "Banc en palmier", + "block.middle-earth.palm_button": "Bouton en palmier", + "block.middle-earth.palm_chair": "Chaise en palmier", + "block.middle-earth.palm_door": "Porte en palmier", + "block.middle-earth.palm_fence": "Barrière en palmier", + "block.middle-earth.palm_fence_gate": "Portillon en palmier", + "block.middle-earth.palm_ladder": "Échelle en palmier", + "block.middle-earth.palm_leaves": "Feuilles de palmier", + "block.middle-earth.palm_log": "Bûche de palmier", + "block.middle-earth.palm_planks": "Planches de palmier", + "block.middle-earth.palm_pressure_plate": "Plaque de pression en palmier", + "block.middle-earth.palm_roofing": "Toiture en palmier", + "block.middle-earth.palm_roofing_slab": "Dalle de toiture en palmier", + "block.middle-earth.palm_roofing_stairs": "Escalier de toiture en palmier", + "block.middle-earth.palm_roofing_vertical_slab": "Dalle verticale de toiture en palmier", + "block.middle-earth.palm_roofing_wall": "Muret de toiture en palmier", + "block.middle-earth.palm_sapling": "Pousse de palmier", + "block.middle-earth.palm_shingles": "Bardeaux de palmier", + "block.middle-earth.palm_shingles_slab": "Dalle en bardeaux de palmier", + "block.middle-earth.palm_shingles_stairs": "Escaliers en bardeaux de palmier", + "block.middle-earth.palm_shingles_vertical_slab": "Dalle verticale en bardeaux de palmier", + "block.middle-earth.palm_shingles_wall": "Muret en bardeaux de palmier", + "block.middle-earth.palm_slab": "Dalle en palmier", + "block.middle-earth.palm_stairs": "Escaliers en palmier", + "block.middle-earth.palm_stool": "Tabouret en palmier", + "block.middle-earth.palm_table": "Table en palmier", + "block.middle-earth.palm_trapdoor": "Trappe en palmier", + "block.middle-earth.palm_vertical_slab": "Dalle verticale en palmier", + "block.middle-earth.palm_wood": "Bois de palmier", + "block.middle-earth.palm_wood_fence": "Barrière en bois de palmier", + "block.middle-earth.palm_wood_slab": "Dalle en bois de palmier", + "block.middle-earth.palm_wood_stairs": "Escaliers en bois de palmier", + "block.middle-earth.palm_wood_vertical_slab": "Dalle verticale en bois de palmier", + "block.middle-earth.palm_wood_wall": "Muret en bois de palmier", + "block.middle-earth.pine_bench": "Banc en pin", + "block.middle-earth.pine_branches": "Branches de pin", + "block.middle-earth.pine_button": "Bouton en pin", + "block.middle-earth.pine_chair": "Chaise en pin", + "block.middle-earth.pine_door": "Porte en pin", + "block.middle-earth.pine_fence": "Barrière en pin", + "block.middle-earth.pine_fence_gate": "Portillon en pin", + "block.middle-earth.pine_ladder": "Échelle en pin", + "block.middle-earth.pine_leaves": "Feuilles de pin", + "block.middle-earth.pine_log": "Bûche de pin", + "block.middle-earth.pine_planks": "Planches de pin", + "block.middle-earth.pine_pressure_plate": "Plaque de pression en pin", + "block.middle-earth.pine_roofing": "Toiture en pin", + "block.middle-earth.pine_roofing_slab": "Dalle de toiture en pin", + "block.middle-earth.pine_roofing_stairs": "Escalier de toiture en pin", + "block.middle-earth.pine_roofing_vertical_slab": "Dalle verticale de toiture en pin", + "block.middle-earth.pine_roofing_wall": "Muret de toiture en pin", + "block.middle-earth.pine_sapling": "Pousse de pin", + "block.middle-earth.pine_shingles": "Bardeaux de pin", + "block.middle-earth.pine_shingles_slab": "Dalle en bardeaux de pin", + "block.middle-earth.pine_shingles_stairs": "Escaliers en bardeaux de pin", + "block.middle-earth.pine_shingles_vertical_slab": "Dalle verticale en bardeaux de pin", + "block.middle-earth.pine_shingles_wall": "Muret en bardeaux de pin", + "block.middle-earth.pine_slab": "Dalle en pin", + "block.middle-earth.pine_stairs": "Escaliers en pin", + "block.middle-earth.pine_stool": "Tabouret en pin", + "block.middle-earth.pine_table": "Table en pin", + "block.middle-earth.pine_trapdoor": "Trappe en pin", + "block.middle-earth.pine_vertical_slab": "Dalle verticale en pin", + "block.middle-earth.pine_wood": "Bois de pin", + "block.middle-earth.pine_wood_fence": "Barrière en bois de pin", + "block.middle-earth.pine_wood_slab": "Dalle en bois de pin", + "block.middle-earth.pine_wood_stairs": "Escaliers en bois de pin", + "block.middle-earth.pine_wood_vertical_slab": "Dalle verticale en bois de pin", + "block.middle-earth.pine_wood_wall": "Muret en bois de pin", + "block.middle-earth.pink_clay_tiling": "Tuile d'argile rose", + "block.middle-earth.pink_clay_tiling_slab": "Dalle en tuile d'argile rose", + "block.middle-earth.pink_clay_tiling_stairs": "Escaliers en tuile d'argile rose", + "block.middle-earth.pink_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile rose", + "block.middle-earth.pink_clay_tiling_wall": "Muret en tuile d'argile rose", + "block.middle-earth.pink_flower_growth": "Pousse de fleurs roses", + "block.middle-earth.pink_flowers": "Fleurs roses", + "block.middle-earth.pink_stained_lead_glass": "Verre plombé rose", + "block.middle-earth.pink_stained_lead_glass_pane": "Vitre plombée rose", + "block.middle-earth.pink_wool_slab": "Dalle en laine rose", + "block.middle-earth.pink_wool_stairs": "Escaliers en laine rose", + "block.middle-earth.pink_wool_vertical_slab": "Dalle verticale en laine rose", + "block.middle-earth.plaster": "Plâtre", + "block.middle-earth.plaster_hobbit_window": "Fenêtre Hobbit en plâtre", + "block.middle-earth.plaster_hobbit_window_pane": "Vitre Hobbit en plâtre", + "block.middle-earth.plaster_round_window": "Fenêtre ronde en plâtre", + "block.middle-earth.plaster_round_window_pane": "Vitre ronde en plâtre", + "block.middle-earth.plaster_slab": "Dalle en plâtre", + "block.middle-earth.plaster_stairs": "Escalier en plâtre", + "block.middle-earth.plaster_vertical_slab": "Dalle verticale en plâtre", + "block.middle-earth.plaster_wall": "Muret en plâtre", + "block.middle-earth.pointed_dolomite": "Dolomite pointue", + "block.middle-earth.pointed_galonn": "Galonn pointue", + "block.middle-earth.pointed_izheraban": "Izhêr'Aban pointue", + "block.middle-earth.pointed_limestone": "Calcaire pointu", + "block.middle-earth.polished_andesite_vertical_slab": "Dalle verticale en andésite polie", + "block.middle-earth.polished_basalt_slab": "Dalle en basalte poli", + "block.middle-earth.polished_basalt_stairs": "Escalier en basalte poli", + "block.middle-earth.polished_basalt_vertical_slab": "Dalle verticale en basalte poli", + "block.middle-earth.polished_basalt_wall": "Muret en basalte poli", + "block.middle-earth.polished_blackstone_brick_vertical_slab": "Dalle verticale en brique de pierre noire polie", + "block.middle-earth.polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie", + "block.middle-earth.polished_blue_tuff": "Tuf bleu poli", + "block.middle-earth.polished_blue_tuff_slab": "Dalle en tuf bleu poli", + "block.middle-earth.polished_blue_tuff_stairs": "Escaliers en tuf bleu poli", + "block.middle-earth.polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli", + "block.middle-earth.polished_blue_tuff_wall": "Muret en tuf bleu poli", + "block.middle-earth.polished_calcite": "Calcite polie", + "block.middle-earth.polished_calcite_slab": "Dalle en calcite polie", + "block.middle-earth.polished_calcite_stairs": "Escaliers en calcite polie", + "block.middle-earth.polished_calcite_vertical_slab": "Dalle verticale en calcite polie", + "block.middle-earth.polished_calcite_wall": "Muret en calcite polie", + "block.middle-earth.polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie", + "block.middle-earth.polished_diorite_vertical_slab": "Dalle verticale en diorite polie", + "block.middle-earth.polished_dolomite": "Dolomite polie", + "block.middle-earth.polished_dolomite_slab": "Dalle en dolomite polie", + "block.middle-earth.polished_dolomite_stairs": "Escaliers en dolomite polie", + "block.middle-earth.polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie", + "block.middle-earth.polished_dolomite_wall": "Muret en dolomite polie", + "block.middle-earth.polished_gabbro": "Gabbro poli", + "block.middle-earth.polished_gabbro_slab": "Dalle en gabbro poli", + "block.middle-earth.polished_gabbro_stairs": "Escalier en gabbro poli", + "block.middle-earth.polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli", + "block.middle-earth.polished_gabbro_wall": "Muret en gabbro poli", + "block.middle-earth.polished_galonn": "Galonn polie", + "block.middle-earth.polished_galonn_slab": "Dalle en Galonn polie", + "block.middle-earth.polished_galonn_stairs": "Escalier en Galonn polie", + "block.middle-earth.polished_galonn_vertical_slab": "Dalle verticale en Galonn polie", + "block.middle-earth.polished_galonn_wall": "Muret en Galonn polie", + "block.middle-earth.polished_gneiss": "Gneiss poli", + "block.middle-earth.polished_gneiss_slab": "Dalle en gneiss poli", + "block.middle-earth.polished_gneiss_stairs": "Escalier en gneiss poli", + "block.middle-earth.polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli", + "block.middle-earth.polished_gneiss_wall": "Muret en gneiss poli", + "block.middle-earth.polished_granite_vertical_slab": "Dalle verticale en granite poli", + "block.middle-earth.polished_green_tuff": "Tuf vert poli", + "block.middle-earth.polished_green_tuff_slab": "Dalle en tuf vert poli", + "block.middle-earth.polished_green_tuff_stairs": "Escaliers en tuf vert poli", + "block.middle-earth.polished_green_tuff_vertical_slab": "Dalle verticale en tuf vert poli", + "block.middle-earth.polished_green_tuff_wall": "Muret en tuf vert poli", + "block.middle-earth.polished_hematite": "Hématite polie", + "block.middle-earth.polished_hematite_slab": "Dalle en hématite polie", + "block.middle-earth.polished_hematite_stairs": "Escalier en hématite polie", + "block.middle-earth.polished_hematite_vertical_slab": "Dalle verticale en hématite polie", + "block.middle-earth.polished_hematite_wall": "Muret en hématite polie", + "block.middle-earth.polished_ironstone": "Pierre de fer polie", + "block.middle-earth.polished_ironstone_slab": "Dalle en pierre de fer polie", + "block.middle-earth.polished_ironstone_stairs": "Escalier en pierre de fer polie", + "block.middle-earth.polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie", + "block.middle-earth.polished_ironstone_wall": "Muret en pierre de fer polie", + "block.middle-earth.polished_izheraban": "Izhêr'Aban polie", + "block.middle-earth.polished_izheraban_slab": "Dalle en Izhêr'Aban polie", + "block.middle-earth.polished_izheraban_stairs": "Escalier en Izhêr'Aban polie", + "block.middle-earth.polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie", + "block.middle-earth.polished_izheraban_wall": "Muret en Izhêr'Aban polie", + "block.middle-earth.polished_jadeite": "Jadéite polie", + "block.middle-earth.polished_jadeite_slab": "Dalle en jadéite polie", + "block.middle-earth.polished_jadeite_stairs": "Escaliers en jadéite polie", + "block.middle-earth.polished_jadeite_vertical_slab": "Dalle verticale en jadéite polie", + "block.middle-earth.polished_jadeite_wall": "Muret en jadéite polie", + "block.middle-earth.polished_limestone": "Calcaire poli", + "block.middle-earth.polished_limestone_slab": "Dalle en calcaire poli", + "block.middle-earth.polished_limestone_stairs": "Escaliers en calcaire poli", + "block.middle-earth.polished_limestone_vertical_slab": "Dalle verticale en calcaire poli", + "block.middle-earth.polished_limestone_wall": "Muret en calcaire poli", + "block.middle-earth.polished_medgon": "Medgon polie", + "block.middle-earth.polished_medgon_slab": "Dalle en Medgon polie", + "block.middle-earth.polished_medgon_stairs": "Escalier en Medgon polie", + "block.middle-earth.polished_medgon_vertical_slab": "Dalle verticale en Medgon polie", + "block.middle-earth.polished_medgon_wall": "Muret en Medgon polie", + "block.middle-earth.polished_nurgon": "Núrgon polie", + "block.middle-earth.polished_nurgon_slab": "Dalle en Núrgon polie", + "block.middle-earth.polished_nurgon_stairs": "Escalier en Núrgon polie", + "block.middle-earth.polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie", + "block.middle-earth.polished_nurgon_wall": "Muret en Núrgon polie", + "block.middle-earth.polished_pumice": "Pierre ponce polie", + "block.middle-earth.polished_pumice_slab": "Dalle en pierre ponce polie", + "block.middle-earth.polished_pumice_stairs": "Escalier en pierre ponce polie", + "block.middle-earth.polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie", + "block.middle-earth.polished_pumice_wall": "Muret en pierre ponce polie", + "block.middle-earth.polished_quartzite": "Quartzite polie", + "block.middle-earth.polished_quartzite_slab": "Dalle en quartzite polie", + "block.middle-earth.polished_quartzite_stairs": "Escaliers en quartzite polie", + "block.middle-earth.polished_quartzite_vertical_slab": "Dalle verticale en quartzite polie", + "block.middle-earth.polished_quartzite_wall": "Muret en quartzite polie", + "block.middle-earth.polished_schist": "Schiste poli", + "block.middle-earth.polished_schist_slab": "Dalle en schiste poli", + "block.middle-earth.polished_schist_stairs": "Escalier en schiste poli", + "block.middle-earth.polished_schist_vertical_slab": "Dalle verticale en schiste poli", + "block.middle-earth.polished_schist_wall": "Muret en schiste poli", + "block.middle-earth.polished_slate": "Ardoise polie", + "block.middle-earth.polished_slate_slab": "Dalle en ardoise polie", + "block.middle-earth.polished_slate_stairs": "Escalier en ardoise polie", + "block.middle-earth.polished_slate_vertical_slab": "Dalle verticale en ardoise polie", + "block.middle-earth.polished_slate_wall": "Muret en ardoise polie", + "block.middle-earth.polished_stone": "Roche polie", + "block.middle-earth.polished_stone_slab": "Dalle en roche polie", + "block.middle-earth.polished_stone_stairs": "Escalier en roche polie", + "block.middle-earth.polished_stone_vertical_slab": "Dalle verticale en roche polie", + "block.middle-earth.polished_stone_wall": "Muret en roche polie", + "block.middle-earth.polished_tuff_vertical_slab": "Dalle verticale en tuf poli", + "block.middle-earth.polished_zigilaban": "Zigil'Aban polie", + "block.middle-earth.polished_zigilaban_slab": "Dalle en Zigil'Aban polie", + "block.middle-earth.polished_zigilaban_stairs": "Escalier en Zigil'Aban polie", + "block.middle-earth.polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie", + "block.middle-earth.polished_zigilaban_wall": "Muret en Zigil'Aban polie", + "block.middle-earth.prismarine_brick_vertical_slab": "Dalle verticale en brique de prismarine", + "block.middle-earth.prismarine_vertical_slab": "Dalle verticale en prismarine", + "block.middle-earth.pumice": "Pierre ponce", + "block.middle-earth.pumice_bricks": "Briques en pierre ponce", + "block.middle-earth.pumice_button": "Bouton en pierre ponce", + "block.middle-earth.pumice_chair": "Chaise en pierre ponce", + "block.middle-earth.pumice_pillar": "Pilier en pierre ponce", + "block.middle-earth.pumice_pressure_plate": "Plaque de pression en pierre ponce", + "block.middle-earth.pumice_rocks": "Éboulis de pierre ponce", + "block.middle-earth.pumice_slab": "Dalle en pierre ponce", + "block.middle-earth.pumice_stairs": "Escalier en pierre ponce", + "block.middle-earth.pumice_stool": "Tabouret en pierre ponce", + "block.middle-earth.pumice_table": "Table en pierre ponce", + "block.middle-earth.pumice_tiles": "Pierre ponce carrelée", + "block.middle-earth.pumice_trapdoor": "Trappe en pierre ponce", + "block.middle-earth.pumice_vertical_slab": "Dalle verticale en pierre ponce", + "block.middle-earth.pumice_wall": "Muret en pierre ponce", + "block.middle-earth.purple_clay_tiling": "Tuile d'argile violette", + "block.middle-earth.purple_clay_tiling_slab": "Dalle en tuile d'argile violette", + "block.middle-earth.purple_clay_tiling_stairs": "Escaliers en tuile d'argile violette", + "block.middle-earth.purple_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile violette", + "block.middle-earth.purple_clay_tiling_wall": "Muret en tuile d'argile violette", + "block.middle-earth.purple_flowers": "Fleurs violettes", + "block.middle-earth.purple_stained_lead_glass": "Verre plombé violet", + "block.middle-earth.purple_stained_lead_glass_pane": "Vitre plombée violette", + "block.middle-earth.purple_wool_slab": "Dalle en laine violette", + "block.middle-earth.purple_wool_stairs": "Escaliers en laine violette", + "block.middle-earth.purple_wool_vertical_slab": "Dalle verticale en laine violette", + "block.middle-earth.purpur_vertical_slab": "Dalle verticale en purpur", + "block.middle-earth.quartz_block": "Bloc de quartz", + "block.middle-earth.quartz_cluster": "Amas de quartz", + "block.middle-earth.quartz_vertical_slab": "Dalle verticale en quartz", + "block.middle-earth.quartzite": "Quartzite", + "block.middle-earth.quartzite_bricks": "Briques de quartzite", + "block.middle-earth.quartzite_button": "Bouton en quartzite", + "block.middle-earth.quartzite_chair": "Chaise en quartzite", + "block.middle-earth.quartzite_pressure_plate": "Plaque de pression en quartzite", + "block.middle-earth.quartzite_rocks": "Éboulis de quartzite", + "block.middle-earth.quartzite_slab": "Dalle en quartzite", + "block.middle-earth.quartzite_stairs": "Escaliers en quartzite", + "block.middle-earth.quartzite_stool": "Tabouret en quartzite", + "block.middle-earth.quartzite_table": "Table en quartzite", + "block.middle-earth.quartzite_tiles": "Quartzite carrelée", + "block.middle-earth.quartzite_trapdoor": "Trappe en quartzite", + "block.middle-earth.quartzite_vertical_slab": "Dalle verticale en quartzite", + "block.middle-earth.quartzite_wall": "Muret en quartzite", + "block.middle-earth.raw_lead_block": "Bloc de plomb brut", + "block.middle-earth.raw_mithril_block": "Bloc de mithril brut", + "block.middle-earth.raw_silver_block": "Bloc d'argent brut", + "block.middle-earth.raw_tin_block": "Bloc d'étain brut", + "block.middle-earth.red_agate_block": "Bloc d'agate rouge", + "block.middle-earth.red_agate_cluster": "Amas d'agate rouge", + "block.middle-earth.red_clay_tiling": "Tuile d'argile rouge", + "block.middle-earth.red_clay_tiling_slab": "Dalle en tuile d'argile rouge", + "block.middle-earth.red_clay_tiling_stairs": "Escaliers en tuile d'argile rouge", + "block.middle-earth.red_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile rouge", + "block.middle-earth.red_clay_tiling_wall": "Muret en tuile d'argile rouge", + "block.middle-earth.red_cushion": "Coussin rouge", + "block.middle-earth.red_flower_growth": "Pousse de fleurs rouges", + "block.middle-earth.red_flowers": "Fleurs rouges", + "block.middle-earth.red_heather": "Bruyère rouge", + "block.middle-earth.red_hobbit_door": "Porte Hobbit rouge", + "block.middle-earth.red_maple_leaves": "Feuilles d'érable rouges", + "block.middle-earth.red_nether_brick_vertical_slab": "Dalle verticale en brique rouge du nether", + "block.middle-earth.red_roof_tiles": "Tuiles de toit rouges", + "block.middle-earth.red_sandstone_vertical_slab": "Dalle verticale en grès rouge", + "block.middle-earth.red_stained_lead_glass": "Verre plombé rouge", + "block.middle-earth.red_stained_lead_glass_pane": "Vitre plombée rouge", + "block.middle-earth.red_wattle_and_white_daub": "Clayonnage rouge et torchis blanc", + "block.middle-earth.red_wattle_and_white_daub_cross": "Clayonnage rouge et torchis blanc en croix", + "block.middle-earth.red_wattle_and_white_daub_diamond": "Clayonnage rouge et torchis blanc en losange", + "block.middle-earth.red_wattle_and_white_daub_left": "Clayonnage rouge et torchis blanc à gauche", + "block.middle-earth.red_wattle_and_white_daub_pillar": "Pilier de clayonnage rouge et torchis blanc", + "block.middle-earth.red_wattle_and_white_daub_right": "Clayonnage rouge et torchis blanc à droite", + "block.middle-earth.red_wattle_framed_window": "Fenêtre à clayonnage rouge", + "block.middle-earth.red_wattle_framed_window_pane": "Fenêtre plate à clayonnage rouge", + "block.middle-earth.red_wattle_trapdoor": "Trappe en clayonnage rouge", + "block.middle-earth.red_wool_slab": "Dalle en laine rouge", + "block.middle-earth.red_wool_stairs": "Escaliers en laine rouge", + "block.middle-earth.red_wool_vertical_slab": "Dalle verticale en laine rouge", + "block.middle-earth.reed_block": "Bloc de roseaux", + "block.middle-earth.reed_slab": "Dalle en roseau", + "block.middle-earth.reed_stairs": "Escalier en roseau", + "block.middle-earth.reed_vertical_slab": "Dalle verticale en roseau", + "block.middle-earth.reed_wall": "Muret en roseaux", + "block.middle-earth.reeds": "Roseaux", + "block.middle-earth.reinforced_black_pine_door": "Porte renforcée en pin noir", + "block.middle-earth.reinforced_chest": "Coffre renforcé", + "block.middle-earth.reinforced_spruce_door": "Porte renforcée en sapin", + "block.middle-earth.rickety_simple_larch_door": "Porte simple branlante en mélèze", + "block.middle-earth.river_sand": "Sable de rivière", + "block.middle-earth.rooted_dirt_slab": "Dalle de terre racineuse", + "block.middle-earth.rooted_dirt_stairs": "Escaliers de terre racineuse", + "block.middle-earth.rope": "Corde", + "block.middle-earth.rope_ladder": "Échelle de corde", + "block.middle-earth.rotten_thatch": "Chaume pourri", + "block.middle-earth.rotten_thatch_slab": "Dalle en chaume pourri", + "block.middle-earth.rotten_thatch_stairs": "Escaliers en chaume pourri", + "block.middle-earth.rotten_thatch_vertical_slab": "Dalle verticale en chaume pourri", + "block.middle-earth.rotten_thatch_wall": "Muret en chaume pourri", + "block.middle-earth.ruined_dwarven_door": "Porte naine en ruine", + "block.middle-earth.sand_layer": "Couche de sable", + "block.middle-earth.sandstone_vertical_slab": "Dalle verticale en grès", + "block.middle-earth.schist": "Schiste", + "block.middle-earth.schist_bricks": "Briques en schiste", + "block.middle-earth.schist_button": "Bouton en schiste", + "block.middle-earth.schist_chair": "Chaise en schiste", + "block.middle-earth.schist_pillar": "Pilier en schiste", + "block.middle-earth.schist_pressure_plate": "Plaque de pression en schiste", + "block.middle-earth.schist_rocks": "Éboulis de schiste", + "block.middle-earth.schist_slab": "Dalle en schiste", + "block.middle-earth.schist_stairs": "Escalier en schiste", + "block.middle-earth.schist_stool": "Tabouret en schiste", + "block.middle-earth.schist_table": "Table en schiste", + "block.middle-earth.schist_tiles": "Schiste carrelé", + "block.middle-earth.schist_trapdoor": "Trappe en schiste", + "block.middle-earth.schist_vertical_slab": "Dalle verticale en schiste", + "block.middle-earth.schist_wall": "Muret en schiste", + "block.middle-earth.sconce": "Applique murale", + "block.middle-earth.scorched_bench": "Banc en bois calciné", + "block.middle-earth.scorched_button": "Bouton en bois calciné", + "block.middle-earth.scorched_chair": "Chaise en bois calciné", + "block.middle-earth.scorched_door": "Porte en bois calciné", + "block.middle-earth.scorched_fence": "Barrière en bois calciné", + "block.middle-earth.scorched_fence_gate": "Portillon en bois calciné", + "block.middle-earth.scorched_grass": "Herbe calcinée", + "block.middle-earth.scorched_ladder": "Échelle en bois calciné", + "block.middle-earth.scorched_log": "Bûche calcinée", + "block.middle-earth.scorched_planks": "Planches calcinées", + "block.middle-earth.scorched_pressure_plate": "Plaque de pression en bois calciné", + "block.middle-earth.scorched_roofing": "Toiture en bois calciné", + "block.middle-earth.scorched_roofing_slab": "Dalle de toiture en bois calciné", + "block.middle-earth.scorched_roofing_stairs": "Escalier de toiture en bois calciné", + "block.middle-earth.scorched_roofing_vertical_slab": "Dalle verticale de toiture en bois calciné", + "block.middle-earth.scorched_roofing_wall": "Muret de toiture en bois calciné", + "block.middle-earth.scorched_shingles": "Bardeaux en bois calciné", + "block.middle-earth.scorched_shingles_slab": "Dalle en bardeaux de bois calciné", + "block.middle-earth.scorched_shingles_stairs": "Escaliers en bardeaux de bois calciné", + "block.middle-earth.scorched_shingles_vertical_slab": "Dalle verticale en bardeaux de bois calciné", + "block.middle-earth.scorched_shingles_wall": "Muret en bardeaux de bois calciné", + "block.middle-earth.scorched_shrub": "Arbuste calciné", + "block.middle-earth.scorched_slab": "Dalle en bois calciné", + "block.middle-earth.scorched_stairs": "Escaliers en bois calciné", + "block.middle-earth.scorched_stool": "Tabouret en bois calciné", + "block.middle-earth.scorched_table": "Table en bois calciné", + "block.middle-earth.scorched_trapdoor": "Trappe en bois calciné", + "block.middle-earth.scorched_tuft": "Touffe calcinée", + "block.middle-earth.scorched_vertical_slab": "Dalle verticale en bois calciné", + "block.middle-earth.scorched_wood": "Planches calcinées", + "block.middle-earth.scorched_wood_fence": "Barrière en bois calciné", + "block.middle-earth.scorched_wood_slab": "Dalle en bois calciné", + "block.middle-earth.scorched_wood_stairs": "Escaliers en bois calciné", + "block.middle-earth.scorched_wood_vertical_slab": "Dalle verticale en bois calciné", + "block.middle-earth.scorched_wood_wall": "Muret en bois calciné", + "block.middle-earth.sedum": "Orpin", + "block.middle-earth.short_bulrush": "Petit jonc", + "block.middle-earth.short_cattails": "Petites quenouilles", + "block.middle-earth.short_icicles": "Petits glaçons", + "block.middle-earth.shriveled_shrub": "Arbuste ratatiné", + "block.middle-earth.silver_bars": "Barreaux d'argent", + "block.middle-earth.silver_block": "Bloc d'argent", + "block.middle-earth.silver_lantern": "Lanterne en argent", + "block.middle-earth.silver_maple_bench": "Banc en érable argenté", + "block.middle-earth.silver_maple_button": "Bouton en érable argenté", + "block.middle-earth.silver_maple_chair": "Chaise en érable argenté", + "block.middle-earth.silver_maple_door": "Porte en érable argenté", + "block.middle-earth.silver_maple_fence": "Barrière en érable argenté", + "block.middle-earth.silver_maple_fence_gate": "Portillon en érable argenté", + "block.middle-earth.silver_maple_ladder": "Échelle en érable argenté", + "block.middle-earth.silver_maple_log": "Bûche d'érable argenté", + "block.middle-earth.silver_maple_planks": "Planches d'érable argenté", + "block.middle-earth.silver_maple_pressure_plate": "Plaque de pression en érable argenté", + "block.middle-earth.silver_maple_roofing": "Toiture en érable argenté", + "block.middle-earth.silver_maple_roofing_slab": "Dalle de toiture en érable argenté", + "block.middle-earth.silver_maple_roofing_stairs": "Escalier de toiture en érable argenté", + "block.middle-earth.silver_maple_roofing_vertical_slab": "Dalle verticale de toiture en érable argenté", + "block.middle-earth.silver_maple_roofing_wall": "Muret de toiture en érable argenté", + "block.middle-earth.silver_maple_sapling": "Pousse d'érable argenté", + "block.middle-earth.silver_maple_shingles": "Bardeaux d'érable argenté", + "block.middle-earth.silver_maple_shingles_slab": "Dalle en bardeaux d'érable argenté", + "block.middle-earth.silver_maple_shingles_stairs": "Escaliers en bardeaux d'érable argenté", + "block.middle-earth.silver_maple_shingles_vertical_slab": "Dalle verticale en bardeaux d'érable argenté", + "block.middle-earth.silver_maple_shingles_wall": "Muret en bardeaux d'érable argenté", + "block.middle-earth.silver_maple_slab": "Dalle en érable argenté", + "block.middle-earth.silver_maple_stairs": "Escaliers en érable argenté", + "block.middle-earth.silver_maple_stool": "Tabouret en érable argenté", + "block.middle-earth.silver_maple_table": "Table en érable argenté", + "block.middle-earth.silver_maple_trapdoor": "Trappe en érable argenté", + "block.middle-earth.silver_maple_vertical_slab": "Dalle verticale en érable argenté", + "block.middle-earth.silver_maple_wood": "Bois d'érable argenté", + "block.middle-earth.silver_maple_wood_fence": "Barrière en bois d'érable argenté", + "block.middle-earth.silver_maple_wood_slab": "Dalle en bois d'érable argenté", + "block.middle-earth.silver_maple_wood_stairs": "Escaliers en bois d'érable argenté", + "block.middle-earth.silver_maple_wood_vertical_slab": "Dalle verticale en bois d'érable argenté", + "block.middle-earth.silver_maple_wood_wall": "Muret en bois d'érable argenté", + "block.middle-earth.simple_larch_gate": "Portail simple en mélèze", + "block.middle-earth.sky_firecap": "Champi-feu de surface", + "block.middle-earth.sky_firecap_block": "Bloc de champi-feu de surface", + "block.middle-earth.sky_firecap_tiller": "Talle de champi-feu de surface", + "block.middle-earth.slate": "Ardoise", + "block.middle-earth.slate_bricks": "Briques en ardoise", + "block.middle-earth.slate_button": "Bouton en ardoise", + "block.middle-earth.slate_chair": "Chaise en ardoise", + "block.middle-earth.slate_coal_ore": "Minerai de charbon d'ardoise", + "block.middle-earth.slate_copper_ore": "Minerai de cuivre d'ardoise", + "block.middle-earth.slate_pillar": "Pilier en ardoise", + "block.middle-earth.slate_pressure_plate": "Plaque de pression en ardoise", + "block.middle-earth.slate_rocks": "Éboulis d'ardoise", + "block.middle-earth.slate_slab": "Dalle en ardoise", + "block.middle-earth.slate_stairs": "Escalier en ardoise", + "block.middle-earth.slate_stool": "Tabouret en ardoise", + "block.middle-earth.slate_table": "Table en ardoise", + "block.middle-earth.slate_tiles": "Ardoise carrelée", + "block.middle-earth.slate_tin_ore": "Minerai d'étain d'ardoise", + "block.middle-earth.slate_trapdoor": "Trappe en ardoise", + "block.middle-earth.slate_vertical_slab": "Dalle verticale en ardoise", + "block.middle-earth.slate_wall": "Muret en ardoise", + "block.middle-earth.small_brazier": "Petit brasero", + "block.middle-earth.small_citrine_bud": "Petit cristal de citrine", + "block.middle-earth.small_crate": "Petite caisse", + "block.middle-earth.small_dry_shrub": "Petit arbuste sec", + "block.middle-earth.small_flowering_lily_pads": "Petits nénuphars en fleurs", + "block.middle-earth.small_glowstone_bud": "Petit cristal de pierre lumineuse", + "block.middle-earth.small_lily_pads": "Petits nénuphars", + "block.middle-earth.small_quartz_bud": "Petit cristal de quartz", + "block.middle-earth.small_red_agate_bud": "Petit cristal d'agate rouge", + "block.middle-earth.smooth_andesite": "Andésite lisse", + "block.middle-earth.smooth_andesite_slab": "Dalle en andésite lisse", + "block.middle-earth.smooth_andesite_stairs": "Escalier en andésite lisse", + "block.middle-earth.smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse", + "block.middle-earth.smooth_andesite_wall": "Muret en andésite lisse", + "block.middle-earth.smooth_basalt_slab": "Dalle en basalte lisse", + "block.middle-earth.smooth_basalt_stairs": "Escalier en basalte lisse", + "block.middle-earth.smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse", + "block.middle-earth.smooth_basalt_wall": "Muret en basalte lisse", + "block.middle-earth.smooth_blackstone": "Roche noire lisse", + "block.middle-earth.smooth_blackstone_slab": "Dalle en roche noire lisse", + "block.middle-earth.smooth_blackstone_stairs": "Escalier en roche noire lisse", + "block.middle-earth.smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse", + "block.middle-earth.smooth_blackstone_wall": "Muret en roche noire lisse", + "block.middle-earth.smooth_calcite": "Calcite lisse", + "block.middle-earth.smooth_calcite_slab": "Dalle en calcite lisse", + "block.middle-earth.smooth_calcite_stairs": "Escalier en calcite lisse", + "block.middle-earth.smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse", + "block.middle-earth.smooth_calcite_wall": "Muret en calcite lisse", + "block.middle-earth.smooth_deepslate": "Ardoise des abîmes lisse", + "block.middle-earth.smooth_deepslate_slab": "Dalle en ardoise des abîmes lisse", + "block.middle-earth.smooth_deepslate_stairs": "Escalier en ardoise des abîmes lisse", + "block.middle-earth.smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse", + "block.middle-earth.smooth_deepslate_wall": "Muret en ardoise des abîmes lisse", + "block.middle-earth.smooth_diorite": "Diorite lisse", + "block.middle-earth.smooth_diorite_slab": "Dalle en diorite lisse", + "block.middle-earth.smooth_diorite_stairs": "Escaliers en diorite lisse", + "block.middle-earth.smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse", + "block.middle-earth.smooth_diorite_wall": "Muret en diorite lisse", + "block.middle-earth.smooth_dolomite": "Dolomite lisse", + "block.middle-earth.smooth_dolomite_slab": "Dalle en dolomite lisse", + "block.middle-earth.smooth_dolomite_stairs": "Escalier en dolomite lisse", + "block.middle-earth.smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse", + "block.middle-earth.smooth_dolomite_wall": "Muret en dolomite lisse", + "block.middle-earth.smooth_galonn": "Galonn lisse", + "block.middle-earth.smooth_galonn_slab": "Dalle en Galonn lisse", + "block.middle-earth.smooth_galonn_stairs": "Escalier en Galonn lisse", + "block.middle-earth.smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse", + "block.middle-earth.smooth_galonn_wall": "Muret en Galonn lisse", + "block.middle-earth.smooth_gneiss": "Gneiss lisse", + "block.middle-earth.smooth_gneiss_slab": "Dalle en gneiss lisse", + "block.middle-earth.smooth_gneiss_stairs": "Escalier en gneiss lisse", + "block.middle-earth.smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse", + "block.middle-earth.smooth_gneiss_wall": "Muret en gneiss lisse", + "block.middle-earth.smooth_granite": "Granite lisse", + "block.middle-earth.smooth_granite_slab": "Dalle en granite lisse", + "block.middle-earth.smooth_granite_stairs": "Escalier en granite lisse", + "block.middle-earth.smooth_granite_vertical_slab": "Dalle verticale en granite lisse", + "block.middle-earth.smooth_granite_wall": "Muret en granite lisse", + "block.middle-earth.smooth_green_tuff": "Tuf vert lisse", + "block.middle-earth.smooth_green_tuff_slab": "Dalle en tuf vert lisse", + "block.middle-earth.smooth_green_tuff_stairs": "Escaliers en tuf vert lisse", + "block.middle-earth.smooth_green_tuff_vertical_slab": "Dalle verticale en tuf vert lisse", + "block.middle-earth.smooth_green_tuff_wall": "Muret en tuf vert lisse", + "block.middle-earth.smooth_hematite": "Hématite lisse", + "block.middle-earth.smooth_hematite_slab": "Dalle en hématite lisse", + "block.middle-earth.smooth_hematite_stairs": "Escalier en hématite lisse", + "block.middle-earth.smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse", + "block.middle-earth.smooth_hematite_wall": "Muret en hématite lisse", + "block.middle-earth.smooth_ironstone": "Pierre de fer lisse", + "block.middle-earth.smooth_ironstone_slab": "Dalle en pierre de fer lisse", + "block.middle-earth.smooth_ironstone_stairs": "Escalier en pierre de fer lisse", + "block.middle-earth.smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse", + "block.middle-earth.smooth_ironstone_wall": "Muret en pierre de fer lisse", + "block.middle-earth.smooth_izheraban": "Izhêr'Aban lisse", + "block.middle-earth.smooth_izheraban_slab": "Dalle en Izhêr'Aban lisse", + "block.middle-earth.smooth_izheraban_stairs": "Escalier en Izhêr'Aban lisse", + "block.middle-earth.smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse", + "block.middle-earth.smooth_izheraban_wall": "Muret en Izhêr'Aban lisse", + "block.middle-earth.smooth_limestone": "Calcaire lisse", + "block.middle-earth.smooth_limestone_slab": "Dalle en calcaire lisse", + "block.middle-earth.smooth_limestone_stairs": "Escalier en calcaire lisse", + "block.middle-earth.smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse", + "block.middle-earth.smooth_limestone_wall": "Muret en calcaire lisse", + "block.middle-earth.smooth_medgon": "Medgon lisse", + "block.middle-earth.smooth_medgon_slab": "Dalle en Medgon lisse", + "block.middle-earth.smooth_medgon_stairs": "Escalier en Medgon lisse", + "block.middle-earth.smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse", + "block.middle-earth.smooth_medgon_wall": "Muret en Medgon lisse", + "block.middle-earth.smooth_quartz_vertical_slab": "Dalle verticale en quartz lisse", + "block.middle-earth.smooth_red_sandstone_vertical_slab": "Dalle verticale en grès rouge lisse", + "block.middle-earth.smooth_sandstone_vertical_slab": "Dalle verticale en grès lisse", + "block.middle-earth.smooth_stone_vertical_slab": "Dalle verticale en roche lisse", + "block.middle-earth.smooth_tuff": "Tuf lisse", + "block.middle-earth.smooth_tuff_slab": "Dalle en tuf lisse", + "block.middle-earth.smooth_tuff_stairs": "Escalier en tuf lisse", + "block.middle-earth.smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse", + "block.middle-earth.smooth_tuff_wall": "Muret en tuf lisse", + "block.middle-earth.smooth_zigilaban": "Zigil'Aban lisse", + "block.middle-earth.smooth_zigilaban_slab": "Dalle en Zigil'Aban lisse", + "block.middle-earth.smooth_zigilaban_stairs": "Escalier en Zigil'Aban lisse", + "block.middle-earth.smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse", + "block.middle-earth.smooth_zigilaban_wall": "Muret en Zigil'Aban lisse", + "block.middle-earth.snowy_dirt": "Terre enneigée", + "block.middle-earth.snowy_dirt_slab": "Dalle de terre enneigée", + "block.middle-earth.snowy_dirt_stairs": "Escaliers de terre enneigée", + "block.middle-earth.snowy_grass_block": "Bloc d'herbe enneigée", + "block.middle-earth.spiky_chain": "Chaîne à pointes", + "block.middle-earth.spruce_bench": "Banc en sapin", + "block.middle-earth.spruce_chair": "Chaise en sapin", + "block.middle-earth.spruce_hobbit_door": "Porte Hobbit en sapin", + "block.middle-earth.spruce_ladder": "Échelle en sapin", + "block.middle-earth.spruce_shingles": "Bardeaux de sapin", + "block.middle-earth.spruce_shingles_slab": "Dalle en bardeaux de sapin", + "block.middle-earth.spruce_shingles_stairs": "Escaliers en bardeaux de sapin", + "block.middle-earth.spruce_shingles_vertical_slab": "Dalle verticale en bardeaux de sapin", + "block.middle-earth.spruce_shingles_wall": "Muret en bardeaux de sapin", + "block.middle-earth.spruce_stable_door": "Porte d'écurie en sapin", + "block.middle-earth.spruce_stool": "Tabouret en sapin", + "block.middle-earth.spruce_table": "Table en sapin", + "block.middle-earth.spruce_vertical_slab": "Dalle verticale en sapin", + "block.middle-earth.spruce_wood_fence": "Barrière en bois de sapin", + "block.middle-earth.spruce_wood_slab": "Dalle en bois de sapin", + "block.middle-earth.spruce_wood_stairs": "Escalier en bois de sapin", + "block.middle-earth.spruce_wood_vertical_slab": "Dalle verticale en bois de sapin", + "block.middle-earth.spruce_wood_wall": "Muret en bois de sapin", + "block.middle-earth.steel_block": "Bloc d'acier", + "block.middle-earth.sticky_ice": "Glace collante", + "block.middle-earth.sticky_snow": "Neige collante", + "block.middle-earth.stone_brick_vertical_slab": "Dalle verticale en pierre taillée", + "block.middle-earth.stone_brickwork": "Maçonnerie en roche", + "block.middle-earth.stone_brickwork_slab": "Dalle de maçonnerie en roche", + "block.middle-earth.stone_brickwork_stairs": "Escalier en maçonnerie de roche", + "block.middle-earth.stone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en roche", + "block.middle-earth.stone_brickwork_wall": "Muret en maçonnerie de roche", + "block.middle-earth.stone_chair": "Chaise en pierre", + "block.middle-earth.stone_mycelium": "Mycélium pierreux", + "block.middle-earth.stone_pillar": "Pilier en roche", + "block.middle-earth.stone_rocks": "Éboulis de roche", + "block.middle-earth.stone_stool": "Tabouret en pierre", + "block.middle-earth.stone_table": "Table en pierre", + "block.middle-earth.stone_tiles": "Roche carrelée", + "block.middle-earth.stone_trapdoor": "Trappe en pierre", + "block.middle-earth.stone_vertical_slab": "Dalle verticale en roche", + "block.middle-earth.straw_bed": "Lit de paille", + "block.middle-earth.straw_block": "Bloc de paille", + "block.middle-earth.straw_slab": "Dalle en paille", + "block.middle-earth.straw_stairs": "Escaliers en paille", + "block.middle-earth.straw_vertical_slab": "Dalle verticale en paille", + "block.middle-earth.straw_wall": "Muret en paille", + "block.middle-earth.strawberry_bush": "Buisson de fraises", + "block.middle-earth.stripped_acacia_wood_fence": "Barrière en bois d'acacia écorcé", + "block.middle-earth.stripped_acacia_wood_slab": "Dalle en bois d'acacia écorcée", + "block.middle-earth.stripped_acacia_wood_stairs": "Escaliers en bois d'acacia écorcé", + "block.middle-earth.stripped_acacia_wood_vertical_slab": "Dalle verticale en bois d'acacia écorcé", + "block.middle-earth.stripped_acacia_wood_wall": "Muret en bois d'acacia écorcé", + "block.middle-earth.stripped_beech_log": "Bûche de hêtre écorcée", + "block.middle-earth.stripped_beech_wood": "Bois de hêtre écorcé", + "block.middle-earth.stripped_beech_wood_fence": "Clôture en bois de hêtre écorcé", + "block.middle-earth.stripped_beech_wood_slab": "Dalle en bois de hêtre écorcée", + "block.middle-earth.stripped_beech_wood_stairs": "Escaliers en bois de hêtre écorcée", + "block.middle-earth.stripped_beech_wood_vertical_slab": "Dalle verticale en bois de hêtre écorcée", + "block.middle-earth.stripped_beech_wood_wall": "Muret en hêtre écorcé", + "block.middle-earth.stripped_birch_wood_fence": "Barrière en bois de bouleau écorcé", + "block.middle-earth.stripped_birch_wood_slab": "Dalle en bois de bouleau écorcée", + "block.middle-earth.stripped_birch_wood_stairs": "Escaliers en bois de bouleau écorcé", + "block.middle-earth.stripped_birch_wood_vertical_slab": "Dalle verticale en bois de bouleau écorcé", + "block.middle-earth.stripped_birch_wood_wall": "Muret en bois de bouleau écorcé", + "block.middle-earth.stripped_black_lebethron_log": "Bûche de Lebethron noir écorcée", + "block.middle-earth.stripped_black_lebethron_wood": "Bois de Lebethron noir écorcé", + "block.middle-earth.stripped_black_lebethron_wood_fence": "Barrière en bois de Lebethron noir écorcé", + "block.middle-earth.stripped_black_lebethron_wood_slab": "Dalle en bois de Lebethron noir écorcé", + "block.middle-earth.stripped_black_lebethron_wood_stairs": "Escaliers en bois de Lebethron noir écorcé", + "block.middle-earth.stripped_black_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron noir écorcé", + "block.middle-earth.stripped_black_lebethron_wood_wall": "Muret en bois de Lebethron noir écorcé", + "block.middle-earth.stripped_black_pine_log": "Bûche de pin noir écorcée", + "block.middle-earth.stripped_black_pine_wood": "Bois de pin noir écorcé", + "block.middle-earth.stripped_black_pine_wood_fence": "Barrière en bois de pin noir écorcé", + "block.middle-earth.stripped_black_pine_wood_slab": "Dalle en bois de pin noir écorcé", + "block.middle-earth.stripped_black_pine_wood_stairs": "Escaliers en bois de pin noir écorcé", + "block.middle-earth.stripped_black_pine_wood_vertical_slab": "Dalle verticale en bois de pin noir écorcé", + "block.middle-earth.stripped_black_pine_wood_wall": "Muret en pin noir écorcé", + "block.middle-earth.stripped_cherry_wood_fence": "Barrière en bois de cerisier écorcé", + "block.middle-earth.stripped_cherry_wood_slab": "Dalle en bois de cerisier écorcé", + "block.middle-earth.stripped_cherry_wood_stairs": "Escaliers en bois de cerisier écorcé", + "block.middle-earth.stripped_cherry_wood_vertical_slab": "Dalle verticale en bois de cerisier écorcé", + "block.middle-earth.stripped_cherry_wood_wall": "Muret en bois de cerisier écorcé", + "block.middle-earth.stripped_chestnut_log": "Bûche de châtaignier écorcée", + "block.middle-earth.stripped_chestnut_wood": "Bois de châtaignier écorcé", + "block.middle-earth.stripped_chestnut_wood_fence": "Barrière en bois de châtaignier écorcé", + "block.middle-earth.stripped_chestnut_wood_slab": "Dalle en bois de châtaignier écorcé", + "block.middle-earth.stripped_chestnut_wood_stairs": "Escaliers en bois de châtaignier écorcé", + "block.middle-earth.stripped_chestnut_wood_vertical_slab": "Dalle verticale en bois de châtaignier écorcé", + "block.middle-earth.stripped_chestnut_wood_wall": "Muret en châtaignier écorcé", + "block.middle-earth.stripped_dark_oak_wood_fence": "Barrière en bois de chêne noir écorcé", + "block.middle-earth.stripped_dark_oak_wood_slab": "Dalle en bois de chêne noir écorcée", + "block.middle-earth.stripped_dark_oak_wood_stairs": "Escaliers en bois de chêne noir écorcé", + "block.middle-earth.stripped_dark_oak_wood_vertical_slab": "Dalle verticale en bois de chêne noir écorcé", + "block.middle-earth.stripped_dark_oak_wood_wall": "Muret en bois de chêne noir écorcé", + "block.middle-earth.stripped_holly_log": "Bûche de houx écorcée", + "block.middle-earth.stripped_holly_wood": "Bois de houx écorcé", + "block.middle-earth.stripped_holly_wood_fence": "Barrière en bois de houx écorcé", + "block.middle-earth.stripped_holly_wood_slab": "Dalle en bois de houx écorcé", + "block.middle-earth.stripped_holly_wood_stairs": "Escaliers en bois de houx écorcé", + "block.middle-earth.stripped_holly_wood_vertical_slab": "Dalle verticale en bois de houx écorcé", + "block.middle-earth.stripped_holly_wood_wall": "Muret en houx écorcé", + "block.middle-earth.stripped_jungle_wood_fence": "Barrière en bois d'acajou écorcé", + "block.middle-earth.stripped_jungle_wood_slab": "Dalle en bois d'acajou écorcée", + "block.middle-earth.stripped_jungle_wood_stairs": "Escaliers en bois d'acajou écorcé", + "block.middle-earth.stripped_jungle_wood_vertical_slab": "Dalle verticale en bois d'acajou écorcé", + "block.middle-earth.stripped_jungle_wood_wall": "Muret en bois d'acajou écorcé", + "block.middle-earth.stripped_larch_log": "Bûche de mélèze écorcée", + "block.middle-earth.stripped_larch_wood": "Bois de mélèze écorcé", + "block.middle-earth.stripped_larch_wood_fence": "Barrière en bois de mélèze écorcé", + "block.middle-earth.stripped_larch_wood_slab": "Dalle en bois de mélèze écorcé", + "block.middle-earth.stripped_larch_wood_stairs": "Escaliers en bois de mélèze écorcé", + "block.middle-earth.stripped_larch_wood_vertical_slab": "Dalle verticale en bois de mélèze écorcé", + "block.middle-earth.stripped_larch_wood_wall": "Muret en mélèze écorcé", + "block.middle-earth.stripped_mallorn_log": "Bûche de Mallorn écorcée", + "block.middle-earth.stripped_mallorn_wood": "Bois de Mallorn écorcé", + "block.middle-earth.stripped_mallorn_wood_fence": "Barrière en bois de Mallorn écorcé", + "block.middle-earth.stripped_mallorn_wood_slab": "Dalle en bois de Mallorn écorcé", + "block.middle-earth.stripped_mallorn_wood_stairs": "Escaliers en bois de Mallorn écorcé", + "block.middle-earth.stripped_mallorn_wood_vertical_slab": "Dalle verticale en bois de Mallorn écorcé", + "block.middle-earth.stripped_mallorn_wood_wall": "Muret en bois de Mallorn écorcé", + "block.middle-earth.stripped_mangrove_wood_fence": "Barrière en bois de palétuvier écorcé", + "block.middle-earth.stripped_mangrove_wood_slab": "Dalle en bois de palétuvier écorcé", + "block.middle-earth.stripped_mangrove_wood_stairs": "Escaliers en bois de palétuvier écorcé", + "block.middle-earth.stripped_mangrove_wood_vertical_slab": "Dalle verticale en bois de palétuvier écorcé", + "block.middle-earth.stripped_mangrove_wood_wall": "Muret en bois de palétuvier écorcé", + "block.middle-earth.stripped_maple_log": "Bûche d'érable écorcée", + "block.middle-earth.stripped_maple_wood": "Bois d'érable écorcé", + "block.middle-earth.stripped_maple_wood_fence": "Barrière en bois d'érable écorcé", + "block.middle-earth.stripped_maple_wood_slab": "Dalle en bois d'érable écorcé", + "block.middle-earth.stripped_maple_wood_stairs": "Escaliers en bois d'érable écorcé", + "block.middle-earth.stripped_maple_wood_vertical_slab": "Dalle verticale en bois d'érable écorcé", + "block.middle-earth.stripped_maple_wood_wall": "Muret en bois d'érable écorcé", + "block.middle-earth.stripped_mirkwood_log": "Bûche écorcée de la Forêt noire", + "block.middle-earth.stripped_mirkwood_wood": "Bois de la Forêt noire écorcé", + "block.middle-earth.stripped_mirkwood_wood_fence": "Barrière en bois de la Forêt noire écorcé", + "block.middle-earth.stripped_mirkwood_wood_slab": "Dalle en bois de la Forêt noire écorcé", + "block.middle-earth.stripped_mirkwood_wood_stairs": "Escaliers en bois de la Forêt noire écorcé", + "block.middle-earth.stripped_mirkwood_wood_vertical_slab": "Dalle verticale en bois de la Forêt noire écorcé", + "block.middle-earth.stripped_mirkwood_wood_wall": "Muret en bois de la Forêt noire écorcé", + "block.middle-earth.stripped_oak_wood_fence": "Barrière en bois de chêne écorcé", + "block.middle-earth.stripped_oak_wood_slab": "Dalle en bois de chêne écorcée", + "block.middle-earth.stripped_oak_wood_stairs": "Escaliers en bois de chêne écorcé", + "block.middle-earth.stripped_oak_wood_vertical_slab": "Dalle verticale en bois de chêne écorcé", + "block.middle-earth.stripped_oak_wood_wall": "Muret en bois de chêne écorcé", + "block.middle-earth.stripped_palm_log": "Bûche de palmier écorcée", + "block.middle-earth.stripped_palm_wood": "Bois de palmier écorcé", + "block.middle-earth.stripped_palm_wood_fence": "Barrière en bois de palmier écorcé", + "block.middle-earth.stripped_palm_wood_slab": "Dalle en bois de palmier écorcé", + "block.middle-earth.stripped_palm_wood_stairs": "Escaliers en bois de palmier écorcé", + "block.middle-earth.stripped_palm_wood_vertical_slab": "Dalle verticale en bois de palmier écorcé", + "block.middle-earth.stripped_palm_wood_wall": "Muret en bois de palmier écorcé", + "block.middle-earth.stripped_pine_log": "Bûche de pin écorcée", + "block.middle-earth.stripped_pine_wood": "Bois de pin écorcé", + "block.middle-earth.stripped_pine_wood_fence": "Barrière en bois de pin écorcé", + "block.middle-earth.stripped_pine_wood_slab": "Dalle en bois de pin écorcé", + "block.middle-earth.stripped_pine_wood_stairs": "Escaliers en bois de pin écorcé", + "block.middle-earth.stripped_pine_wood_vertical_slab": "Dalle verticale en bois de pin écorcé", + "block.middle-earth.stripped_pine_wood_wall": "Muret en pin écorcé", + "block.middle-earth.stripped_scorched_log": "Bûche calcinée écorcée", + "block.middle-earth.stripped_scorched_wood": "Bois calciné écorcé", + "block.middle-earth.stripped_scorched_wood_fence": "Barrière en bois calciné écorcé", + "block.middle-earth.stripped_scorched_wood_slab": "Dalle en bois calciné écorcé", + "block.middle-earth.stripped_scorched_wood_stairs": "Escaliers en bois calciné écorcé", + "block.middle-earth.stripped_scorched_wood_vertical_slab": "Dalle verticale en bois calciné écorcé", + "block.middle-earth.stripped_scorched_wood_wall": "Muret en bois calciné écorcé", + "block.middle-earth.stripped_silver_maple_log": "Bûche d'érable argenté écorcée", + "block.middle-earth.stripped_silver_maple_wood": "Bois d'érable argenté écorcé", + "block.middle-earth.stripped_silver_maple_wood_fence": "Barrière en bois d'érable argenté écorcé", + "block.middle-earth.stripped_silver_maple_wood_slab": "Dalle en bois d'érable argenté écorcé", + "block.middle-earth.stripped_silver_maple_wood_stairs": "Escaliers en bois d'érable argenté écorcé", + "block.middle-earth.stripped_silver_maple_wood_vertical_slab": "Dalle verticale en bois d'érable argenté écorcé", + "block.middle-earth.stripped_silver_maple_wood_wall": "Muret en bois d'érable argenté écorcé", + "block.middle-earth.stripped_spruce_wood_fence": "Barrière en bois de sapin écorcé", + "block.middle-earth.stripped_spruce_wood_slab": "Dalle en bois de sapin écorcée", + "block.middle-earth.stripped_spruce_wood_stairs": "Escaliers en bois de sapin écorcé", + "block.middle-earth.stripped_spruce_wood_vertical_slab": "Dalle verticale en bois de sapin écorcé", + "block.middle-earth.stripped_spruce_wood_wall": "Muret en bois de sapin écorcé", + "block.middle-earth.stripped_white_lebethron_log": "Bûche de Lebethron blanc écorcée", + "block.middle-earth.stripped_white_lebethron_wood": "Bois de Lebethron blanc écorcé", + "block.middle-earth.stripped_white_lebethron_wood_fence": "Barrière en bois de Lebethron blanc écorcé", + "block.middle-earth.stripped_white_lebethron_wood_slab": "Dalle en bois de Lebethron blanc écorcé", + "block.middle-earth.stripped_white_lebethron_wood_stairs": "Escaliers en bois de Lebethron blanc écorcé", + "block.middle-earth.stripped_white_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron blanc écorcé", + "block.middle-earth.stripped_white_lebethron_wood_wall": "Muret en bois de Lebethron blanc écorcé", + "block.middle-earth.stripped_white_palm_log": "Bûche de palmier blanc écorcée", + "block.middle-earth.stripped_white_palm_wood": "Bois de palmier blanc écorcé", + "block.middle-earth.stripped_white_palm_wood_fence": "Barrière en bois de palmier blanc écorcé", + "block.middle-earth.stripped_white_palm_wood_slab": "Dalle en bois de palmier blanc écorcé", + "block.middle-earth.stripped_white_palm_wood_stairs": "Escaliers en bois de palmier blanc écorcé", + "block.middle-earth.stripped_white_palm_wood_vertical_slab": "Dalle verticale en bois de palmier blanc écorcé", + "block.middle-earth.stripped_white_palm_wood_wall": "Muret en bois de palmier blanc écorcé", + "block.middle-earth.stripped_willow_log": "Bûche de saule écorcée", + "block.middle-earth.stripped_willow_wood": "Bois de saule écorcé", + "block.middle-earth.stripped_willow_wood_fence": "Barrière en bois de saule écorcé", + "block.middle-earth.stripped_willow_wood_slab": "Dalle en bois de saule écorcé", + "block.middle-earth.stripped_willow_wood_stairs": "Escalier en bois de saule écorcé", + "block.middle-earth.stripped_willow_wood_vertical_slab": "Dalle verticale en bois de saule écorcé", + "block.middle-earth.stripped_willow_wood_wall": "Muret en bois de saule écorcé", + "block.middle-earth.stucco": "Stuc", + "block.middle-earth.stucco_slab": "Dalle en stuc", + "block.middle-earth.stucco_stairs": "Escaliers en stuc", + "block.middle-earth.stucco_vertical_slab": "Dalle verticale en stuc", + "block.middle-earth.stucco_wall": "Muret en stuc", + "block.middle-earth.tall_black_pine_door": "Grande porte en pin noir", + "block.middle-earth.tall_bulrush": "Grand jonc", + "block.middle-earth.tall_cattails": "Grandes quenouilles", + "block.middle-earth.tall_trumpet_shroom": "Grande champi-trompette", + "block.middle-earth.tall_tubeshroom": "Grand champi-tube", + "block.middle-earth.tan_clay_bricks": "Briques d'argile fauve", + "block.middle-earth.tan_clay_brickwork": "Maçonnerie en argile fauve", + "block.middle-earth.tan_clay_brickwork_slab": "Dalle de maçonnerie en argile fauve", + "block.middle-earth.tan_clay_brickwork_stairs": "Escalier en maçonnerie d'argile fauve", + "block.middle-earth.tan_clay_brickwork_vertical_slab": "Dalle verticale de maçonnerie en argile fauve", + "block.middle-earth.tan_clay_brickwork_wall": "Muret en maçonnerie d'argile fauve", + "block.middle-earth.tan_clay_tiles": "Tuile d'argile fauve", + "block.middle-earth.tan_shrub": "Arbuste bruni", + "block.middle-earth.temperate_grass": "Herbe tempérée", + "block.middle-earth.thatch": "Chaume", + "block.middle-earth.thatch_slab": "Dalle en chaume", + "block.middle-earth.thatch_stairs": "Escaliers en chaume", + "block.middle-earth.thatch_vertical_slab": "Dalle verticale en chaume", + "block.middle-earth.thatch_wall": "Muret en chaume", + "block.middle-earth.thin_barrel": "Tonneau fin", + "block.middle-earth.tin_block": "Bloc d'étain", + "block.middle-earth.tin_ore": "Minerai d'étain", + "block.middle-earth.torch_of_orthanc": "Torche d'Orthanc", + "block.middle-earth.tough_berry_bush": "Buisson de baies robuste", + "block.middle-earth.treated_anvil": "Enclume traitée", + "block.middle-earth.treated_steel_bars": "Barreaux en acier traité", + "block.middle-earth.treated_steel_door": "Porte en acier traité", + "block.middle-earth.treated_steel_rod": "Baguette en acier traité", + "block.middle-earth.treated_steel_trapdoor": "Trappe en acier traité", + "block.middle-earth.treated_wood": "Bois traité", + "block.middle-earth.treated_wood_beam": "Poutre en bois traité", + "block.middle-earth.treated_wood_beam_slab": "Dalle de poutre en bois traité", + "block.middle-earth.treated_wood_beam_stairs": "Escalier de poutre en bois traité", + "block.middle-earth.treated_wood_beam_vertical_slab": "Dalle verticale de poutre en bois traité", + "block.middle-earth.treated_wood_beam_wall": "Muret de poutre en bois traité", + "block.middle-earth.treated_wood_bench": "Banc en bois traité", + "block.middle-earth.treated_wood_carved_beam": "Poutre sculptée en bois traité", + "block.middle-earth.treated_wood_carved_beam_slab": "Dalle de poutre sculptée en bois traité", + "block.middle-earth.treated_wood_carved_beam_stairs": "Escalier de poutre sculptée en bois traité", + "block.middle-earth.treated_wood_carved_beam_vertical_slab": "Dalle verticale de poutre sculptée en bois traité", + "block.middle-earth.treated_wood_carved_beam_wall": "Muret de poutre sculptée en bois traité", + "block.middle-earth.treated_wood_chair": "Chaise en bois traité", + "block.middle-earth.treated_wood_ladder": "Échelle en bois traité", + "block.middle-earth.treated_wood_panels": "Panneaux en bois traité", + "block.middle-earth.treated_wood_panels_slab": "Dalle en panneaux de bois traité", + "block.middle-earth.treated_wood_panels_stairs": "Escalier en panneaux de bois traité", + "block.middle-earth.treated_wood_panels_vertical_slab": "Dalle verticale en panneaux de bois traité", + "block.middle-earth.treated_wood_panels_wall": "Muret en panneaux de bois traité", + "block.middle-earth.treated_wood_planks": "Planches de bois traité", + "block.middle-earth.treated_wood_planks_slab": "Dalle en planches de bois traité", + "block.middle-earth.treated_wood_planks_stairs": "Escalier en planches de bois traité", + "block.middle-earth.treated_wood_planks_vertical_slab": "Dalle verticale en planches de bois traité", + "block.middle-earth.treated_wood_planks_wall": "Muret en planches de bois traité", + "block.middle-earth.treated_wood_slab": "Dalle en bois traité", + "block.middle-earth.treated_wood_stairs": "Escalier en bois traité", + "block.middle-earth.treated_wood_stool": "Tabouret en bois traité", + "block.middle-earth.treated_wood_table": "Table en bois traité", + "block.middle-earth.treated_wood_tiling": "Carrelage en bois traité", + "block.middle-earth.treated_wood_tiling_slab": "Dalle de carrelage en bois traité", + "block.middle-earth.treated_wood_tiling_stairs": "Escalier de carrelage en bois traité", + "block.middle-earth.treated_wood_tiling_vertical_slab": "Dalle verticale de carrelage en bois traité", + "block.middle-earth.treated_wood_tiling_wall": "Muret de carrelage en bois traité", + "block.middle-earth.treated_wood_vertical_slab": "Dalle verticale en bois traité", + "block.middle-earth.treated_wood_wall": "Muret en bois traité", + "block.middle-earth.trumpet_shroom": "Champi-trompette", + "block.middle-earth.tubeshroom": "Champi-tube", + "block.middle-earth.tuff_brick_vertical_slab": "Dalle verticale en briques de tuf", + "block.middle-earth.tuff_brickwork": "Maçonnerie en tuf", + "block.middle-earth.tuff_brickwork_slab": "Dalle de maçonnerie en tuf", + "block.middle-earth.tuff_brickwork_stairs": "Escalier en maçonnerie de tuf", + "block.middle-earth.tuff_brickwork_vertical_slab": "Dalle verticale de maçonnerie en tuf", + "block.middle-earth.tuff_brickwork_wall": "Muret en maçonnerie de tuf", + "block.middle-earth.tuff_carved_window": "Fenêtre sculptée en tuf", + "block.middle-earth.tuff_chair": "Chaise en tuf", + "block.middle-earth.tuff_pillar": "Pilier en tuf", + "block.middle-earth.tuff_rocks": "Éboulis de tuf", + "block.middle-earth.tuff_stool": "Tabouret en tuf", + "block.middle-earth.tuff_table": "Table en tuf", + "block.middle-earth.tuff_tiles": "Tuf carrelé", + "block.middle-earth.tuff_trapdoor": "Trappe en tuf", + "block.middle-earth.tuff_vertical_slab": "Dalle verticale en tuf", + "block.middle-earth.turf": "Gazon", + "block.middle-earth.turf_slab": "Dalle de gazon", + "block.middle-earth.turf_stairs": "Escaliers de gazon", + "block.middle-earth.turf_vertical_slab": "Dalle verticale de gazon", + "block.middle-earth.varnished_dwarven_door": "Porte naine vernie", + "block.middle-earth.violet_caps": "Champignon violet", + "block.middle-earth.violet_caps_tiller": "Talle de champignon violet", + "block.middle-earth.warped_bench": "Banc biscornu", + "block.middle-earth.warped_chair": "Chaise biscornue", + "block.middle-earth.warped_ladder": "Échelle biscornue", + "block.middle-earth.warped_shingles": "Bardeaux biscornus", + "block.middle-earth.warped_shingles_slab": "Dalle en bardeaux biscornus", + "block.middle-earth.warped_shingles_stairs": "Escaliers en bardeaux biscornus", + "block.middle-earth.warped_shingles_vertical_slab": "Dalle verticale en bardeaux biscornus", + "block.middle-earth.warped_shingles_wall": "Muret en bardeaux biscornus", + "block.middle-earth.warped_stool": "Tabouret biscornu", + "block.middle-earth.warped_table": "Table biscornue", + "block.middle-earth.warped_vertical_slab": "Dalle verticale biscornue", + "block.middle-earth.wattle_and_brick": "Clayonnage et brique", + "block.middle-earth.wattle_and_brick_cross": "Clayonnage et brique en croix", + "block.middle-earth.wattle_and_brick_diamond": "Clayonnage et brique en losange", + "block.middle-earth.wattle_and_brick_left": "Clayonnage et brique à gauche", + "block.middle-earth.wattle_and_brick_pillar": "Pilier de clayonnage et brique", + "block.middle-earth.wattle_and_brick_right": "Clayonnage et brique à droite", + "block.middle-earth.wattle_and_brick_window": "Fenêtre à clayonnage et brique", + "block.middle-earth.wattle_and_brick_window_pane": "Vitre à clayonnage et brique", + "block.middle-earth.wattle_and_white_daub": "Clayonnage et torchis blanc", + "block.middle-earth.wattle_and_white_daub_cross": "Clayonnage et torchis blanc en croix", + "block.middle-earth.wattle_and_white_daub_diamond": "Clayonnage et torchis blanc en losange", + "block.middle-earth.wattle_and_white_daub_left": "Clayonnage et torchis blanc à gauche", + "block.middle-earth.wattle_and_white_daub_pillar": "Pilier de clayonnage et torchis blanc", + "block.middle-earth.wattle_and_white_daub_right": "Clayonnage et torchis blanc à droite", + "block.middle-earth.wattle_and_yellow_daub": "Clayonnage et torchis jaune", + "block.middle-earth.wattle_and_yellow_daub_cross": "Clayonnage et torchis jaune en croix", + "block.middle-earth.wattle_and_yellow_daub_diamond": "Clayonnage et torchis jaune en losange", + "block.middle-earth.wattle_and_yellow_daub_left": "Clayonnage et torchis jaune à gauche", + "block.middle-earth.wattle_and_yellow_daub_pillar": "Pilier de clayonnage et torchis jaune", + "block.middle-earth.wattle_and_yellow_daub_right": "Clayonnage et torchis jaune à droite", + "block.middle-earth.wattle_framed_window": "Fenêtre à clayonnage", + "block.middle-earth.wattle_framed_window_pane": "Fenêtre plate à clayonnage", + "block.middle-earth.wattle_trapdoor": "Trappe en clayonnage", + "block.middle-earth.waxed_aged_thatch": "Chaume vieilli ciré", + "block.middle-earth.waxed_aged_thatch_slab": "Dalle en chaume vieilli ciré", + "block.middle-earth.waxed_aged_thatch_stairs": "Escaliers en chaume vieilli ciré", + "block.middle-earth.waxed_aged_thatch_vertical_slab": "Dalle verticale en chaume vieilli ciré", + "block.middle-earth.waxed_aged_thatch_wall": "Muret en chaume vieilli ciré", + "block.middle-earth.waxed_copper_bars": "Barreaux en cuivre ciré", + "block.middle-earth.waxed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé ciré", + "block.middle-earth.waxed_cut_copper_wall": "Muret en cuivre taillé ciré", + "block.middle-earth.waxed_exposed_copper_bars": "Barreaux en cuivre exposé ciré", + "block.middle-earth.waxed_exposed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé exposé ciré", + "block.middle-earth.waxed_exposed_cut_copper_wall": "Muret en cuivre taillé exposé ciré", + "block.middle-earth.waxed_old_thatch": "Chaume ancien ciré", + "block.middle-earth.waxed_old_thatch_slab": "Dalle en chaume ancien ciré", + "block.middle-earth.waxed_old_thatch_stairs": "Escaliers en chaume ancien ciré", + "block.middle-earth.waxed_old_thatch_vertical_slab": "Dalle verticale en chaume ancien ciré", + "block.middle-earth.waxed_old_thatch_wall": "Muret en chaume ancien ciré", + "block.middle-earth.waxed_oxidized_copper_bars": "Barreaux en cuivre oxydé ciré", + "block.middle-earth.waxed_oxidized_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé oxydé ciré", + "block.middle-earth.waxed_oxidized_cut_copper_wall": "Muret en cuivre taillé oxydé ciré", + "block.middle-earth.waxed_rotten_thatch": "Chaume pourri ciré", + "block.middle-earth.waxed_rotten_thatch_slab": "Dalle en chaume pourri ciré", + "block.middle-earth.waxed_rotten_thatch_stairs": "Escaliers en chaume pourri ciré", + "block.middle-earth.waxed_rotten_thatch_vertical_slab": "Dalle verticale en chaume pourri ciré", + "block.middle-earth.waxed_rotten_thatch_wall": "Muret en chaume pourri ciré", + "block.middle-earth.waxed_thatch": "Chaume ciré", + "block.middle-earth.waxed_thatch_slab": "Dalle en chaume ciré", + "block.middle-earth.waxed_thatch_stairs": "Escaliers en chaume ciré", + "block.middle-earth.waxed_thatch_vertical_slab": "Dalle verticale en chaume ciré", + "block.middle-earth.waxed_thatch_wall": "Muret en chaume ciré", + "block.middle-earth.waxed_weathered_copper_bars": "Barreaux en cuivre érodé ciré", + "block.middle-earth.waxed_weathered_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé érodé ciré", + "block.middle-earth.waxed_weathered_cut_copper_wall": "Muret en cuivre taillé érodé ciré", + "block.middle-earth.waxed_weathered_thatch": "Chaume altéré ciré", + "block.middle-earth.waxed_weathered_thatch_slab": "Dalle en chaume altéré ciré", + "block.middle-earth.waxed_weathered_thatch_stairs": "Escaliers en chaume altéré ciré", + "block.middle-earth.waxed_weathered_thatch_vertical_slab": "Dalle verticale en chaume altéré ciré", + "block.middle-earth.waxed_weathered_thatch_wall": "Muret en chaume altéré ciré", + "block.middle-earth.weathered_copper_bars": "Barreaux en cuivre érodé", + "block.middle-earth.weathered_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé érodé", + "block.middle-earth.weathered_cut_copper_wall": "Muret en cuivre taillé érodé", + "block.middle-earth.weathered_shingles": "Bardeaux usés", + "block.middle-earth.weathered_shingles_slab": "Dalle en bardeaux usés", + "block.middle-earth.weathered_shingles_stairs": "Escaliers en bardeaux usés", + "block.middle-earth.weathered_shingles_vertical_slab": "Dalle verticale en bardeaux usés", + "block.middle-earth.weathered_shingles_wall": "Muret en bardeaux usés", + "block.middle-earth.weathered_thatch": "Chaume altéré", + "block.middle-earth.weathered_thatch_slab": "Dalle en chaume altéré", + "block.middle-earth.weathered_thatch_stairs": "Escaliers en chaume altéré", + "block.middle-earth.weathered_thatch_vertical_slab": "Dalle verticale en chaume altéré", + "block.middle-earth.weathered_thatch_wall": "Muret en chaume altéré", + "block.middle-earth.wheatgrass": "Blé en herbe", + "block.middle-earth.white_clay_tiling": "Tuile d'argile blanche", + "block.middle-earth.white_clay_tiling_slab": "Dalle en tuile d'argile blanche", + "block.middle-earth.white_clay_tiling_stairs": "Escaliers en tuile d'argile blanche", + "block.middle-earth.white_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile blanche", + "block.middle-earth.white_clay_tiling_wall": "Muret en tuile d'argile blanche", + "block.middle-earth.white_daub": "Torchis blanc", + "block.middle-earth.white_daub_hobbit_window": "Torchis blanc et fenêtre Hobbit", + "block.middle-earth.white_daub_hobbit_window_pane": "Torchis blanc et fenêtre plate Hobbit", + "block.middle-earth.white_daub_round_window": "Fenêtre ronde en torchis blanc", + "block.middle-earth.white_daub_round_window_pane": "Vitre ronde en torchis blanc", + "block.middle-earth.white_daub_slab": "Dalle en torchis blanc", + "block.middle-earth.white_daub_stairs": "Escalier en torchis blanc", + "block.middle-earth.white_daub_vertical_slab": "Dalle verticale en torchis blanc", + "block.middle-earth.white_daub_wall": "Muret en torchis blanc", + "block.middle-earth.white_flower_growth": "Pousse de fleurs blanches", + "block.middle-earth.white_flowers": "Fleurs blanches", + "block.middle-earth.white_lebethron_bench": "Banc en Lebethron blanc", + "block.middle-earth.white_lebethron_button": "Bouton en Lebethron blanc", + "block.middle-earth.white_lebethron_chair": "Chaise en Lebethron blanc", + "block.middle-earth.white_lebethron_door": "Porte en Lebethron blanc", + "block.middle-earth.white_lebethron_fence": "Barrière en Lebethron blanc", + "block.middle-earth.white_lebethron_fence_gate": "Portillon en Lebethron blanc", + "block.middle-earth.white_lebethron_ladder": "Échelle en Lebethron blanc", + "block.middle-earth.white_lebethron_log": "Bûche de Lebethron blanc", + "block.middle-earth.white_lebethron_planks": "Planches de Lebethron blanc", + "block.middle-earth.white_lebethron_pressure_plate": "Plaque de pression en Lebethron blanc", + "block.middle-earth.white_lebethron_roofing": "Toiture en Lebethron blanc", + "block.middle-earth.white_lebethron_roofing_slab": "Dalle de toiture en Lebethron blanc", + "block.middle-earth.white_lebethron_roofing_stairs": "Escalier de toiture en Lebethron blanc", + "block.middle-earth.white_lebethron_roofing_vertical_slab": "Dalle verticale de toiture en Lebethron blanc", + "block.middle-earth.white_lebethron_roofing_wall": "Muret de toiture en Lebethron blanc", + "block.middle-earth.white_lebethron_sapling": "Pousse de Lebethron blanc", + "block.middle-earth.white_lebethron_shingles": "Bardeaux en Lebethron blanc", + "block.middle-earth.white_lebethron_shingles_slab": "Dalle en bardeaux de Lebethron blanc", + "block.middle-earth.white_lebethron_shingles_stairs": "Escaliers en bardeaux de Lebethron blanc", + "block.middle-earth.white_lebethron_shingles_vertical_slab": "Dalle verticale en bardeaux de Lebethron blanc", + "block.middle-earth.white_lebethron_shingles_wall": "Muret en bardeaux de Lebethron blanc", + "block.middle-earth.white_lebethron_slab": "Dalle en Lebethron blanc", + "block.middle-earth.white_lebethron_stairs": "Escaliers en Lebethron blanc", + "block.middle-earth.white_lebethron_stool": "Tabouret en Lebethron blanc", + "block.middle-earth.white_lebethron_table": "Table en Lebethron blanc", + "block.middle-earth.white_lebethron_trapdoor": "Trappe en Lebethron blanc", + "block.middle-earth.white_lebethron_vertical_slab": "Dalle verticale en Lebethron blanc", + "block.middle-earth.white_lebethron_wood": "Bois de Lebethron blanc", + "block.middle-earth.white_lebethron_wood_fence": "Barrière en bois de Lebethron blanc", + "block.middle-earth.white_lebethron_wood_slab": "Dalle en bois de Lebethron blanc", + "block.middle-earth.white_lebethron_wood_stairs": "Escaliers en bois de Lebethron blanc", + "block.middle-earth.white_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron blanc", + "block.middle-earth.white_lebethron_wood_wall": "Muret en bois de Lebethron blanc", + "block.middle-earth.white_mushroom": "Champignon blanc", + "block.middle-earth.white_mushroom_tiller": "Talle de champignon blanc", + "block.middle-earth.white_palm_bench": "Banc en palmier blanc", + "block.middle-earth.white_palm_button": "Bouton en palmier blanc", + "block.middle-earth.white_palm_chair": "Chaise en palmier blanc", + "block.middle-earth.white_palm_door": "Porte en palmier blanc", + "block.middle-earth.white_palm_fence": "Barrière en palmier blanc", + "block.middle-earth.white_palm_fence_gate": "Portillon en palmier blanc", + "block.middle-earth.white_palm_ladder": "Échelle en palmier blanc", + "block.middle-earth.white_palm_log": "Bûche de palmier blanc", + "block.middle-earth.white_palm_planks": "Planches de palmier blanc", + "block.middle-earth.white_palm_pressure_plate": "Plaque de pression en palmier blanc", + "block.middle-earth.white_palm_roofing": "Toiture en palmier blanc", + "block.middle-earth.white_palm_roofing_slab": "Dalle de toiture en palmier blanc", + "block.middle-earth.white_palm_roofing_stairs": "Escalier de toiture en palmier blanc", + "block.middle-earth.white_palm_roofing_vertical_slab": "Dalle verticale de toiture en palmier blanc", + "block.middle-earth.white_palm_roofing_wall": "Muret de toiture en palmier blanc", + "block.middle-earth.white_palm_sapling": "Pousse de palmier blanc", + "block.middle-earth.white_palm_shingles": "Bardeaux de palmier blanc", + "block.middle-earth.white_palm_shingles_slab": "Dalle en bardeaux de palmier blanc", + "block.middle-earth.white_palm_shingles_stairs": "Escaliers en bardeaux de palmier blanc", + "block.middle-earth.white_palm_shingles_vertical_slab": "Dalle verticale en bardeaux de palmier blanc", + "block.middle-earth.white_palm_shingles_wall": "Muret en bardeaux de palmier blanc", + "block.middle-earth.white_palm_slab": "Dalle en palmier blanc", + "block.middle-earth.white_palm_stairs": "Escaliers en palmier blanc", + "block.middle-earth.white_palm_stool": "Tabouret en palmier blanc", + "block.middle-earth.white_palm_table": "Table en palmier blanc", + "block.middle-earth.white_palm_trapdoor": "Trappe en palmier blanc", + "block.middle-earth.white_palm_vertical_slab": "Dalle verticale en palmier blanc", + "block.middle-earth.white_palm_wood": "Bois de palmier blanc", + "block.middle-earth.white_palm_wood_fence": "Barrière en bois de palmier blanc", + "block.middle-earth.white_palm_wood_slab": "Dalle en bois de palmier blanc", + "block.middle-earth.white_palm_wood_stairs": "Escaliers en bois de palmier blanc", + "block.middle-earth.white_palm_wood_vertical_slab": "Dalle verticale en bois de palmier blanc", + "block.middle-earth.white_palm_wood_wall": "Muret en bois de palmier blanc", + "block.middle-earth.white_sand": "Sable blanc", + "block.middle-earth.white_sand_layer": "Couche de sable blanc", + "block.middle-earth.white_stained_lead_glass": "Verre plombé blanc", + "block.middle-earth.white_stained_lead_glass_pane": "Vitre plombée blanche", + "block.middle-earth.white_wattle_framed_window": "Fenêtre à clayonnage blanc", + "block.middle-earth.white_wattle_framed_window_pane": "Fenêtre plate à clayonnage blanc", + "block.middle-earth.white_wool_slab": "Dalle en laine blanche", + "block.middle-earth.white_wool_stairs": "Escaliers en laine blanche", + "block.middle-earth.white_wool_vertical_slab": "Dalle verticale en laine blanche", + "block.middle-earth.wild_beetroot": "Betterave sauvage", + "block.middle-earth.wild_bell_pepper": "Poivron sauvage", + "block.middle-earth.wild_carrot": "Carotte sauvage", + "block.middle-earth.wild_cucumber": "Concombre sauvage", + "block.middle-earth.wild_flax": "Lin sauvage", + "block.middle-earth.wild_garlic": "Ail sauvage", + "block.middle-earth.wild_grass": "Herbe sauvage", + "block.middle-earth.wild_leek": "Poireau sauvage", + "block.middle-earth.wild_lettuce": "Laitue sauvage", + "block.middle-earth.wild_onion": "Oignon sauvage", + "block.middle-earth.wild_pipeweed": "Herbe à fumer sauvage", + "block.middle-earth.wild_potato": "Patate sauvage", + "block.middle-earth.wild_tomato": "Tomate sauvage", + "block.middle-earth.wildergrass": "Herbe folle", + "block.middle-earth.willow_bench": "Banc en saule", + "block.middle-earth.willow_button": "Bouton en saule", + "block.middle-earth.willow_chair": "Chaise en saule", + "block.middle-earth.willow_door": "Porte en saule", + "block.middle-earth.willow_fence": "Barrière en saule", + "block.middle-earth.willow_fence_gate": "Portillon en saule", + "block.middle-earth.willow_ladder": "Échelle en saule", + "block.middle-earth.willow_leaves": "Feuilles de saule", + "block.middle-earth.willow_log": "Bûche de saule", + "block.middle-earth.willow_planks": "Planches de saule", + "block.middle-earth.willow_pressure_plate": "Plaque de pression en saule", + "block.middle-earth.willow_roofing": "Toiture en saule", + "block.middle-earth.willow_roofing_slab": "Dalle de toiture en saule", + "block.middle-earth.willow_roofing_stairs": "Escalier de toiture en saule", + "block.middle-earth.willow_roofing_vertical_slab": "Dalle verticale de toiture en saule", + "block.middle-earth.willow_roofing_wall": "Muret de toiture en saule", + "block.middle-earth.willow_sapling": "Pousse de saule", + "block.middle-earth.willow_shingles": "Bardeaux de saule", + "block.middle-earth.willow_shingles_slab": "Dalle en bardeaux de saule", + "block.middle-earth.willow_shingles_stairs": "Escalier en bardeaux de saule", + "block.middle-earth.willow_shingles_vertical_slab": "Dalle verticale en bardeaux de saule", + "block.middle-earth.willow_shingles_wall": "Muret en bardeaux de saule", + "block.middle-earth.willow_slab": "Dalle en saule", + "block.middle-earth.willow_stairs": "Escaliers en saule", + "block.middle-earth.willow_stool": "Tabouret en saule", + "block.middle-earth.willow_table": "Table en saule", + "block.middle-earth.willow_trapdoor": "Trappe en saule", + "block.middle-earth.willow_vertical_slab": "Dalle verticale en saule", + "block.middle-earth.willow_wood": "Bois de saule", + "block.middle-earth.willow_wood_fence": "Barrière en bois de saule", + "block.middle-earth.willow_wood_slab": "Dalle en bois de saule", + "block.middle-earth.willow_wood_stairs": "Escalier en bois de saule", + "block.middle-earth.willow_wood_vertical_slab": "Dalle verticale en bois de saule", + "block.middle-earth.willow_wood_wall": "Muret en bois de saule", + "block.middle-earth.wood_framed_window": "Fenêtre encadrée en bois", + "block.middle-earth.wood_framed_window_pane": "Fenêtre plate encadrée en bois", + "block.middle-earth.wood_pile": "Tas de bois", + "block.middle-earth.wooden_bucket": "Seau en bois", + "block.middle-earth.yellow_amanita": "Amanite jaune", + "block.middle-earth.yellow_amanita_block": "Bloc d'amanite jaune", + "block.middle-earth.yellow_amanita_tiller": "Talle d'amanite jaune", + "block.middle-earth.yellow_clay_tiling": "Tuile d'argile jaune", + "block.middle-earth.yellow_clay_tiling_slab": "Dalle en tuile d'argile jaune", + "block.middle-earth.yellow_clay_tiling_stairs": "Escaliers en tuile d'argile jaune", + "block.middle-earth.yellow_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile jaune", + "block.middle-earth.yellow_clay_tiling_wall": "Muret en tuile d'argile jaune", + "block.middle-earth.yellow_daub": "Torchis jaune", + "block.middle-earth.yellow_daub_hobbit_window": "Torchis jaune et fenêtre Hobbit", + "block.middle-earth.yellow_daub_hobbit_window_pane": "Torchis jaune et fenêtre plate Hobbit", + "block.middle-earth.yellow_daub_round_window": "Fenêtre ronde en torchis jaune", + "block.middle-earth.yellow_daub_round_window_pane": "Vitre ronde en torchis jaune", + "block.middle-earth.yellow_daub_slab": "Dalle en torchis jaune", + "block.middle-earth.yellow_daub_stairs": "Escaliers en torchis jaune", + "block.middle-earth.yellow_daub_vertical_slab": "Dalle verticale en torchis jaune", + "block.middle-earth.yellow_daub_wall": "Muret en torchis jaune", + "block.middle-earth.yellow_flower": "Fleur jaune", + "block.middle-earth.yellow_flower_growth": "Pousse de fleurs jaunes", + "block.middle-earth.yellow_flowers": "Fleurs jaunes", + "block.middle-earth.yellow_hobbit_door": "Porte Hobbit jaune", + "block.middle-earth.yellow_maple_leaves": "Feuilles d'érable jaunes", + "block.middle-earth.yellow_roof_tiles": "Tuiles de toit jaunes", + "block.middle-earth.yellow_sedum": "Orpin jaune", + "block.middle-earth.yellow_stained_lead_glass": "Verre plombé jaune", + "block.middle-earth.yellow_stained_lead_glass_pane": "Vitre plombée jaune", + "block.middle-earth.yellow_wool_slab": "Dalle en laine jaune", + "block.middle-earth.yellow_wool_stairs": "Escaliers en laine jaune", + "block.middle-earth.yellow_wool_vertical_slab": "Dalle verticale en laine jaune", + "block.middle-earth.zigilaban": "Zigil'Aban", + "block.middle-earth.zigilaban_bricks": "Briques en Zigil'Aban", + "block.middle-earth.zigilaban_brickwork": "Maçonnerie en Zigil'Aban", + "block.middle-earth.zigilaban_brickwork_slab": "Dalle de maçonnerie en Zigil'Aban", + "block.middle-earth.zigilaban_brickwork_stairs": "Escalier en maçonnerie de Zigil'Aban", + "block.middle-earth.zigilaban_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Zigil'Aban", + "block.middle-earth.zigilaban_brickwork_wall": "Muret en maçonnerie de Zigil'Aban", + "block.middle-earth.zigilaban_button": "Bouton en Zigil'Aban", + "block.middle-earth.zigilaban_chair": "Chaise en Zigil'Aban", + "block.middle-earth.zigilaban_pillar": "Pilier en Zigil'Aban", + "block.middle-earth.zigilaban_pressure_plate": "Plaque de pression en Zigil'Aban", + "block.middle-earth.zigilaban_rocks": "Éboulis de Zigil'Aban", + "block.middle-earth.zigilaban_slab": "Dalle en Zigil'Aban", + "block.middle-earth.zigilaban_stairs": "Escalier en Zigil'Aban", + "block.middle-earth.zigilaban_stool": "Tabouret en Zigil'Aban", + "block.middle-earth.zigilaban_table": "Table en Zigil'Aban", + "block.middle-earth.zigilaban_tiles": "Zigil'Aban carrelée", + "block.middle-earth.zigilaban_trapdoor": "Trappe en Zigil'Aban", + "block.middle-earth.zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban", + "block.middle-earth.zigilaban_wall": "Muret en Zigil'Aban", + "command.middle-earth.clear.faction.success": "Vos données de faction ont été réinitialisées avec succès", + "command.middle-earth.clear.player.faction.success": "Les données de faction de %s ont été réinitialisées avec succès", + "command.middle-earth.fail": "La commande n'a pas pu être envoyée correctement", + "command.middle-earth.get.faction.no_faction": "Vous n'avez pas de faction initiale", + "command.middle-earth.get.faction.success": "Votre faction initiale est %s", + "command.middle-earth.get.player.faction.no_faction": "%s n'a pas de faction initiale", + "command.middle-earth.get.player.faction.success": "La faction initiale de %s est %s", + "command.middle-earth.get.player.spawn.middle_earth.no_spawn": "Aucun point d'apparition en Terre du Milieu n'est assigné à %s", + "command.middle-earth.get.player.spawn.middle_earth.success": "Le point d'apparition de %s en Terre du Milieu est <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.get.player.spawn.overworld.no_spawn": "Aucun point d'apparition dans le monde principal n'est assigné à %s, celui par défaut se trouve à [%s, %s, %s](xyz)", + "command.middle-earth.get.player.spawn.overworld.success": "Le point d'apparition de %s dans le monde principal est [%s, %s, %s](xyz)", + "command.middle-earth.get.spawn.middle_earth.no_spawn": "Aucun point d'apparition en Terre du Milieu assigné", + "command.middle-earth.get.spawn.middle_earth.success": "Votre point d'apparition en Terre du Milieu est <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.get.spawn.overworld.no_spawn": "Aucun point d'apparition dans le monde principal ne vous est assigné, celui par défaut se trouve à [%s, %s, %s](xyz)", + "command.middle-earth.get.spawn.overworld.success": "Votre point d'apparition dans le monde principal est [%s, %s, %s](xyz)", + "command.middle-earth.join.faction.join.success": "%s a rejoint la Faction %s avec succès", + "command.middle-earth.race.get.fail": "Vous n'avez pas de race", + "command.middle-earth.race.get.success": "Votre race est %s", + "command.middle-earth.race.get.target.fail": "%s n'a pas de race", + "command.middle-earth.race.get.target.success": "La race de %s est %s", + "command.middle-earth.race.reset.fail": "Échec de la réinitialisation de votre race", + "command.middle-earth.race.reset.success": "Votre race a été réinitialisée", + "command.middle-earth.race.reset.target.fail": "Échec de la réinitialisation de la race de %s", + "command.middle-earth.race.reset.target.success": "La race de %s a été réinitialisée", + "command.middle-earth.race.set.fail": "Échec de la définition de la race sur %s", + "command.middle-earth.race.set.success": "Votre race a été définie sur %s", + "command.middle-earth.race.set.target.fail": "Échec de la définition de la race sur %s", + "command.middle-earth.race.set.target.success": "La race de %s a été définie sur %s", + "command.middle-earth.reset.player.spawn.middle_earth.no_faction": "Vous ne pouvez pas réinitialiser le point d'apparition en Terre du Milieu de %s tant qu'il n'a pas rejoint de faction initiale", + "command.middle-earth.reset.player.spawn.middle_earth.success": "Le point d'apparition de %s en Terre du Milieu a été réinitialisé sur <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.reset.player.spawn.overworld.success": "Le point de retour de %s dans le monde principal a été réinitialisé à [%s, %s, %s](xyz)", + "command.middle-earth.reset.spawn.middle_earth.no_faction": "Vous ne pouvez pas réinitialiser votre point d'apparition en Terre du Milieu tant que vous n'avez pas rejoint de faction initiale", + "command.middle-earth.reset.spawn.middle_earth.success": "Votre point d'apparition en Terre du Milieu a été réinitialisé sur <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.reset.spawn.overworld.success": "Votre point de retour dans le monde principal a été réinitialisé à [%s, %s, %s](xyz)", + "command.middle-earth.set.player.spawn.middle_earth.no_faction": "Vous ne pouvez pas assigner de point d'apparition en Terre du Milieu à %s tant qu'il n'a pas rejoint de faction initiale", + "command.middle-earth.set.player.spawn.middle_earth.success": "Le point d'apparition de %s en Terre du Milieu a été défini sur <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.set.player.spawn.overworld.success": "Le nouveau point de retour de %s dans le monde principal se trouve à [%s, %s, %s](xyz)", + "command.middle-earth.set.spawn.middle_earth.no_faction": "Vous ne pouvez pas vous assigner de point d'apparition en Terre du Milieu sans avoir rejoint une faction initiale", + "command.middle-earth.set.spawn.middle_earth.no_spawn_found": "Impossible de trouver le point d'apparition <%s>", + "command.middle-earth.set.spawn.middle_earth.success": "Votre point d'apparition en Terre du Milieu a été défini sur <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.set.spawn.overworld.success": "Votre nouveau point de retour dans le monde principal se trouve à [%s, %s, %s](xyz)", + "command.middle-earth.teleport.player.spawn.middle_earth.no_spawn": "Aucun point d'apparition en Terre du Milieu n'est assigné à %s", + "command.middle-earth.teleport.player.spawn.middle_earth.success": "%s a été téléporté à son point d'apparition en Terre du Milieu <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.teleport.player.spawn.overworld.no_spawn": "Une erreur est survenue lors de la téléportation de %s vers son point de retour dans le monde principal", + "command.middle-earth.teleport.player.spawn.overworld.success": "%s a été téléporté à son point de retour dans le monde principal à [%s, %s, %s](xyz)", + "command.middle-earth.teleport.player.to.spawn.middle_earth.error": "%s n'a pas pu être téléporté à <%s>", + "command.middle-earth.teleport.player.to.spawn.middle_earth.success": "%s a été téléporté à <%s> à [%s, %s, %s](xyz)", + "command.middle-earth.teleport.spawn.middle_earth.no_spawn": "Aucun point d'apparition en Terre du Milieu ne vous est assigné", + "command.middle-earth.teleport.spawn.middle_earth.success": "Vous avez été téléporté à votre point d'apparition en Terre du Milieu <%s>", + "command.middle-earth.teleport.spawn.overworld.error": "Une erreur est survenue lors de votre téléportation vers le point de retour dans le monde principal", + "command.middle-earth.teleport.spawn.overworld.success": "Vous avez été téléporté à votre point de retour dans le monde principal", + "command.middle-earth.teleport.to.spawn.middle_earth.error": "Vous n'avez pas pu être téléporté à <%s>", + "command.middle-earth.teleport.to.spawn.middle_earth.success": "Vous avez été téléporté à <%s> à [%s, %s, %s](xyz)", + "container.middle-earth.artisan_table": "Table d'artisan", + "container.middle-earth.small_crate": "Petite caisse", + "container.middle-earth.thin_barrel": "Tonneau fin", + "description.middle-earth.dale.description_0": "Dale est un royaume florissant des Hommes situé près d'Erebor, reconstruit après sa destruction par Smaug. Réputé pour ses archers habiles et son commerce, il est gouverné par les descendants de Bard et entretient des liens étroits avec les Nains d'Erebor.", + "description.middle-earth.gondor.description_0": "Dernier bastion des Hommes de l'Ouest, les Rois du Gondor ont longtemps veillé sur les ténèbres environnantes. Bien que leur lignée soit brisée, les valeureux Gondoriens tiennent bon et luttent pour contenir le Mordor.", + "description.middle-earth.isengard.description_0": "Autrefois forteresse de Númenor, les clés de la tour noire d'Orthanc échurent au Magicien Blanc Saruman au Troisième Âge. Tenté par le pouvoir des ténèbres, il tisse la duperie et complote la guerre depuis son siège d'Isengard contre les peuples libres voisins.", + "description.middle-earth.longbeards.description_0": "Les Longues-Barbes, descendants de Durin l'Immortel, sont le plus noble des clans nains. Réputés pour leur maîtrise de la pierre et du métal, leurs royaumes comprennent Erebor et Khazad-dûm. Ils sont d'une loyauté sans faille envers les leurs et leurs traditions.", + "description.middle-earth.longbeards.erebor.description_0": "Erebor, ou la Montagne solitaire, est le royaume nain du Peuple de Durin. Repris à Smaug par Thorin Écu-de-Chêne, c'est aujourd'hui un centre prospère de richesse et d'artisanat, gouverné par le Roi Dáin Pied-de-Fer. Il forme une alliance cruciale avec le royaume voisin de Dale.", + "description.middle-earth.lothlorien.description_0": "Lothlórien, la Forêt d'Or, est un royaume elfique enchanté gouverné par Galadriel et Celeborn. Protégé par de puissants enchantements et niché parmi les arbres de Mallorn dorés, c'est l'un des derniers bastions des Elfes en Terre du Milieu, réputé pour sa beauté et sa sérénité.", + "description.middle-earth.mordor.description_0": "Au pays de Mordor, où gisent les ombres. Une étendue aride de cendre et de poussière s'étend autour de la Montagne du Destin. Les Légions Noires attendent les ordres du Seigneur des Ténèbres à Barad-dûr, sous le regard vigilant du Grand Œil. Les Nazgûls traquent l'Anneau Unique, prêts pour la guerre à venir.", + "description.middle-earth.rohan.description_0": "Le Rohan, aussi appelé la Marche des Cavaliers, est un royaume des Hommes réputé pour ses habiles seigneurs des chevaux et sa cavalerie. Situé au nord du Gondor, il est gouverné par la lignée d'Eorl. Bien que jadis fervents alliés du Gondor, les Rohirrim font aujourd'hui face à des menaces internes et externes grandissantes.", + "description.middle-earth.shire.description_0": "La Comté est une terre paisible habitée par les Hobbits, située au nord-ouest de la Terre du Milieu. Réputée pour sa beauté pastorale et la vie simple et tranquille de ses habitants, elle reste largement épargnée par les troubles du monde extérieur.", + "disposition.middle-earth.evil": "Mauvaise", + "disposition.middle-earth.good": "Bonne", + "disposition.middle-earth.neutral": "Neutre", + "effect.middle-earth.hallucination": "Hallucination", + "emi.category.middle-earth.anvil_shaping": "Enclume de mise en forme", + "emi.category.middle-earth.artisan_table": "Table d'artisan", + "emi.category.middle-earth.forge": "Forge", + "entity.middle-earth.broadhoof_goat": "Bouc à Sabots larges", + "entity.middle-earth.petrified_troll": "Troll pétrifié", + "entity.middle-earth.snow_troll": "Troll des neiges", + "entity.middle-earth.stone_troll": "Troll de pierre", + "entity.middle-earth.warg": "Warg", + "event.middle-earth.join.faction.success": "Vous avez rejoint %s", + "event.middle-earth.leave.faction.success": "Vous avez quitté %s", + "exception.middle-earth.faction_identifier": "%s n'est pas un identifiant de faction valide", + "exception.middle-earth.identical_faction.source": "Vous avez déjà rejoint %s", + "exception.middle-earth.identical_faction.target": "%s a déjà rejoint %s", + "exception.middle-earth.no_faction.source": "Vous n'avez pas de faction", + "exception.middle-earth.no_faction.target": "%s n'a pas de faction", + "exception.middle-earth.spawn_identifier": "%s n'est pas un identifiant de point d'apparition valide", + "faction.middle-earth.dale": "Val", + "faction.middle-earth.example.fallback": "Exemple…", + "faction.middle-earth.gondor": "Gondor", + "faction.middle-earth.isengard": "Isengard", + "faction.middle-earth.longbeards": "Longues-Barbes", + "faction.middle-earth.longbeards.erebor": "Erebor", + "faction.middle-earth.lothlorien": "Lothlórien", + "faction.middle-earth.misty_mountains_goblins.fallback": "Gobelins des Monts Br.", + "faction.middle-earth.mordor": "Mordor", + "faction.middle-earth.rohan": "Rohan", + "faction.middle-earth.shire": "Comté", + "item.middle-earth.acacia_bench": "Banc en acacia", + "item.middle-earth.acacia_chair": "Chaise en acacia", + "item.middle-earth.acacia_ladder": "Échelle en acacia", + "item.middle-earth.acacia_shingles": "Bardeaux d'acacia", + "item.middle-earth.acacia_shingles_slab": "Dalle en bardeaux d'acacia", + "item.middle-earth.acacia_shingles_stairs": "Escaliers en bardeaux d'acacia", + "item.middle-earth.acacia_shingles_vertical_slab": "Dalle verticale en bardeaux d'acacia", + "item.middle-earth.acacia_shingles_wall": "Muret en bardeaux d'acacia", + "item.middle-earth.acacia_stool": "Tabouret en acacia", + "item.middle-earth.acacia_table": "Table en acacia", + "item.middle-earth.acacia_vertical_slab": "Dalle verticale en acacia", + "item.middle-earth.acacia_wood_fence": "Barrière en bois d'acacia", + "item.middle-earth.acacia_wood_slab": "Dalle en bois d'acacia", + "item.middle-earth.acacia_wood_stairs": "Escalier en bois d'acacia", + "item.middle-earth.acacia_wood_vertical_slab": "Dalle verticale en bois d'acacia", + "item.middle-earth.acacia_wood_wall": "Muret en bois d'acacia", + "item.middle-earth.aeglos": "Aeglos", + "item.middle-earth.aged_thatch": "Chaume vieilli", + "item.middle-earth.aged_thatch_slab": "Dalle en chaume vieilli", + "item.middle-earth.aged_thatch_stairs": "Escaliers en chaume vieilli", + "item.middle-earth.aged_thatch_vertical_slab": "Dalle verticale en chaume vieilli", + "item.middle-earth.aged_thatch_wall": "Muret en chaume vieilli", + "item.middle-earth.andesite_bricks": "Briques d'andésite", + "item.middle-earth.andesite_brickwork": "Maçonnerie en andésite", + "item.middle-earth.andesite_brickwork_slab": "Dalle de maçonnerie en andésite", + "item.middle-earth.andesite_brickwork_stairs": "Escalier en maçonnerie d'andésite", + "item.middle-earth.andesite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en andésite", + "item.middle-earth.andesite_brickwork_wall": "Muret en maçonnerie d'andésite", + "item.middle-earth.andesite_chair": "Chaise en andésite", + "item.middle-earth.andesite_pillar": "Pilier en andésite", + "item.middle-earth.andesite_rocks": "Éboulis d'andésite", + "item.middle-earth.andesite_stool": "Tabouret en andésite", + "item.middle-earth.andesite_table": "Table en andésite", + "item.middle-earth.andesite_tiles": "Andésite carrelée", + "item.middle-earth.andesite_trapdoor": "Trappe en andésite", + "item.middle-earth.andesite_vertical_slab": "Dalle verticale en andésite", + "item.middle-earth.anguirel": "Anguirel", + "item.middle-earth.anorthann": "Anorthann", + "item.middle-earth.anvil_banner_pattern": "Motif de bannière à l'enclume", + "item.middle-earth.anvil_banner_pattern.desc": "Icônes d'enclume", + "item.middle-earth.arming_coat": "Manteau matelassé", + "item.middle-earth.arming_skirt": "Jupe matelassée", + "item.middle-earth.armor_plate": "Plaque d'armure", + "item.middle-earth.artisan_table": "Table d'artisan", + "item.middle-earth.ash": "Cendre", + "item.middle-earth.ash_block": "Bloc de cendre", + "item.middle-earth.ashen_coal_ore": "Minerai de charbon cendré", + "item.middle-earth.ashen_copper_ore": "Minerai de cuivre cendré", + "item.middle-earth.ashen_dirt": "Terre cendrée", + "item.middle-earth.ashen_dirt_slab": "Dalle de terre cendrée", + "item.middle-earth.ashen_dirt_stairs": "Escaliers de terre cendrée", + "item.middle-earth.ashen_gravel": "Gravier cendré", + "item.middle-earth.ashen_gravel_layer": "Couche de gravier cendré", + "item.middle-earth.ashen_sand": "Sable cendré", + "item.middle-earth.ashen_sand_layer": "Couche de sable cendré", + "item.middle-earth.ashen_tin_ore": "Minerai d'étain cendré", + "item.middle-earth.axe_head": "Tête de hache", + "item.middle-earth.azalea_flower_growth": "Pousse de fleurs d'azalée", + "item.middle-earth.bamboo_bench": "Banc en bambou", + "item.middle-earth.bamboo_chair": "Chaise en bambou", + "item.middle-earth.bamboo_ladder": "Échelle en bambou", + "item.middle-earth.bamboo_shingles": "Bardeaux de bambou", + "item.middle-earth.bamboo_shingles_slab": "Dalle en bardeaux de bambou", + "item.middle-earth.bamboo_shingles_stairs": "Escaliers en bardeaux de bambou", + "item.middle-earth.bamboo_shingles_vertical_slab": "Dalle verticale en bardeaux de bambou", + "item.middle-earth.bamboo_shingles_wall": "Muret en bardeaux de bambou", + "item.middle-earth.bamboo_stool": "Tabouret en bambou", + "item.middle-earth.bamboo_table": "Table en bambou", + "item.middle-earth.bamboo_vertical_slab": "Dalle verticale en bambou", + "item.middle-earth.barding_mail_skirt": "Jupe de maille bardaine", + "item.middle-earth.barding_plated_boots": "Bottes à plaques bardaines", + "item.middle-earth.barding_sergeant_cape": "Cape de sergent bardain", + "item.middle-earth.barding_sergeant_chestplate": "Plastron de sergent bardain", + "item.middle-earth.barding_sergeant_helmet": "Casque de sergent bardain", + "item.middle-earth.barding_soldier_chestplate": "Plastron de soldat bardain", + "item.middle-earth.barding_soldier_helmet": "Casque de soldat bardain", + "item.middle-earth.barding_surcoat": "Surcot bardain", + "item.middle-earth.barrow_blade": "Lame des Galgals", + "item.middle-earth.basalt_bricks": "Briques de basalte", + "item.middle-earth.basalt_brickwork": "Maçonnerie en basalte", + "item.middle-earth.basalt_brickwork_slab": "Dalle de maçonnerie en basalte", + "item.middle-earth.basalt_brickwork_stairs": "Escalier en maçonnerie de basalte", + "item.middle-earth.basalt_brickwork_vertical_slab": "Dalle verticale de maçonnerie en basalte", + "item.middle-earth.basalt_brickwork_wall": "Muret en maçonnerie de basalte", + "item.middle-earth.basalt_button": "Bouton en basalte", + "item.middle-earth.basalt_chair": "Chaise en basalte", + "item.middle-earth.basalt_pillar": "Pilier en basalte", + "item.middle-earth.basalt_pressure_plate": "Plaque de pression en basalte", + "item.middle-earth.basalt_rocks": "Éboulis de basalte", + "item.middle-earth.basalt_stool": "Tabouret en basalte", + "item.middle-earth.basalt_table": "Table en basalte", + "item.middle-earth.basalt_tiles": "Basalte carrelé", + "item.middle-earth.basalt_trapdoor": "Trappe en basalte", + "item.middle-earth.beach_grass": "Herbe de plage", + "item.middle-earth.beech_bench": "Banc en hêtre", + "item.middle-earth.beech_button": "Bouton en hêtre", + "item.middle-earth.beech_chair": "Chaise en hêtre", + "item.middle-earth.beech_door": "Porte en hêtre", + "item.middle-earth.beech_fence": "Clôture en hêtre", + "item.middle-earth.beech_fence_gate": "Portillon en hêtre", + "item.middle-earth.beech_ladder": "Échelle en hêtre", + "item.middle-earth.beech_leaves": "Feuilles de hêtre", + "item.middle-earth.beech_log": "Bûche de hêtre", + "item.middle-earth.beech_planks": "Planches de hêtre", + "item.middle-earth.beech_pressure_plate": "Plaque de pression en hêtre", + "item.middle-earth.beech_roofing": "Toiture en hêtre", + "item.middle-earth.beech_roofing_slab": "Dalle de toiture en hêtre", + "item.middle-earth.beech_roofing_stairs": "Escalier de toiture en hêtre", + "item.middle-earth.beech_roofing_vertical_slab": "Dalle verticale de toiture en hêtre", + "item.middle-earth.beech_roofing_wall": "Muret de toiture en hêtre", + "item.middle-earth.beech_sapling": "Pousse de hêtre", + "item.middle-earth.beech_shingles": "Bardeaux en hêtre", + "item.middle-earth.beech_shingles_slab": "Dalle de bardeaux en hêtre", + "item.middle-earth.beech_shingles_stairs": "Escalier de bardeaux en hêtre", + "item.middle-earth.beech_shingles_vertical_slab": "Dalle verticale de bardeaux en hêtre", + "item.middle-earth.beech_shingles_wall": "Muret de bardeaux en hêtre", + "item.middle-earth.beech_slab": "Dalle en hêtre", + "item.middle-earth.beech_stairs": "Escaliers en hêtre", + "item.middle-earth.beech_stool": "Tabouret en hêtre", + "item.middle-earth.beech_table": "Table en hêtre", + "item.middle-earth.beech_trapdoor": "Trappe en hêtre", + "item.middle-earth.beech_vertical_slab": "Dalle verticale en hêtre", + "item.middle-earth.beech_wood": "Planches de hêtre", + "item.middle-earth.beech_wood_fence": "Barrière en hêtre", + "item.middle-earth.beech_wood_slab": "Dalle en bois de hêtre", + "item.middle-earth.beech_wood_stairs": "Escaliers en bois de hêtre", + "item.middle-earth.beech_wood_vertical_slab": "Dalle verticale en bois de hêtre", + "item.middle-earth.beech_wood_wall": "Muret en hêtre", + "item.middle-earth.bell_banner_pattern": "Motif de bannière à la cloche", + "item.middle-earth.bell_banner_pattern.desc": "Icônes de cloche", + "item.middle-earth.bell_pepper": "Poivron", + "item.middle-earth.bell_pepper_seeds": "Graines de poivron", + "item.middle-earth.bellows": "Soufflets", + "item.middle-earth.berry_holly_leaves": "Feuilles de houx à baies", + "item.middle-earth.berry_pie": "Tarte aux baies", + "item.middle-earth.big_brazier": "Grand brasero", + "item.middle-earth.birch_bench": "Banc en bouleau", + "item.middle-earth.birch_chair": "Chaise en bouleau", + "item.middle-earth.birch_ladder": "Échelle en bouleau", + "item.middle-earth.birch_shingles": "Bardeaux de bouleau", + "item.middle-earth.birch_shingles_slab": "Dalle en bardeaux de bouleau", + "item.middle-earth.birch_shingles_stairs": "Escaliers en bardeaux de bouleau", + "item.middle-earth.birch_shingles_vertical_slab": "Dalle verticale en bardeaux de bouleau", + "item.middle-earth.birch_shingles_wall": "Muret en bardeaux de bouleau", + "item.middle-earth.birch_stool": "Tabouret en bouleau", + "item.middle-earth.birch_table": "Table en bouleau", + "item.middle-earth.birch_vertical_slab": "Dalle verticale en bouleau", + "item.middle-earth.birch_wood_fence": "Barrière en bois de bouleau", + "item.middle-earth.birch_wood_slab": "Dalle en bois de bouleau", + "item.middle-earth.birch_wood_stairs": "Escalier en bois de bouleau", + "item.middle-earth.birch_wood_vertical_slab": "Dalle verticale en bois de bouleau", + "item.middle-earth.birch_wood_wall": "Muret de bois de bouleau", + "item.middle-earth.black_clay_tiling": "Tuile d'argile noire", + "item.middle-earth.black_clay_tiling_slab": "Dalle en tuile d'argile noire", + "item.middle-earth.black_clay_tiling_stairs": "Escaliers en tuile d'argile noire", + "item.middle-earth.black_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile noire", + "item.middle-earth.black_clay_tiling_wall": "Muret en tuile d'argile noire", + "item.middle-earth.black_fur": "Fourrure noire", + "item.middle-earth.black_fur_cloak": "Manteau en fourrure noire", + "item.middle-earth.black_fur_hood": "Capuche en fourrure noire", + "item.middle-earth.black_lebethron_bench": "Banc en Lebethron noir", + "item.middle-earth.black_lebethron_button": "Bouton en Lebethron noir", + "item.middle-earth.black_lebethron_chair": "Chaise en Lebethron noir", + "item.middle-earth.black_lebethron_door": "Porte en Lebethron noir", + "item.middle-earth.black_lebethron_fence": "Barrière en Lebethron noir", + "item.middle-earth.black_lebethron_fence_gate": "Portillon en Lebethron noir", + "item.middle-earth.black_lebethron_ladder": "Échelle en Lebethron noir", + "item.middle-earth.black_lebethron_log": "Bûche de Lebethron noir", + "item.middle-earth.black_lebethron_planks": "Planches de Lebethron noir", + "item.middle-earth.black_lebethron_pressure_plate": "Plaque de pression en Lebethron noir", + "item.middle-earth.black_lebethron_roofing": "Toiture en Lebethron noir", + "item.middle-earth.black_lebethron_roofing_slab": "Dalle de toiture en Lebethron noir", + "item.middle-earth.black_lebethron_roofing_stairs": "Escalier de toiture en Lebethron noir", + "item.middle-earth.black_lebethron_roofing_vertical_slab": "Dalle verticale de toiture en Lebethron noir", + "item.middle-earth.black_lebethron_roofing_wall": "Muret de toiture en Lebethron noir", + "item.middle-earth.black_lebethron_shingles": "Bardeaux en Lebethron noir", + "item.middle-earth.black_lebethron_shingles_slab": "Dalle en bardeaux de Lebethron noir", + "item.middle-earth.black_lebethron_shingles_stairs": "Escaliers en bardeaux de Lebethron noir", + "item.middle-earth.black_lebethron_shingles_vertical_slab": "Dalle verticale en bardeaux de Lebethron noir", + "item.middle-earth.black_lebethron_shingles_wall": "Muret en bardeaux de Lebethron noir", + "item.middle-earth.black_lebethron_slab": "Dalle en Lebethron noir", + "item.middle-earth.black_lebethron_stairs": "Escaliers en Lebethron noir", + "item.middle-earth.black_lebethron_stool": "Tabouret en Lebethron noir", + "item.middle-earth.black_lebethron_table": "Table en Lebethron noir", + "item.middle-earth.black_lebethron_trapdoor": "Trappe en Lebethron noir", + "item.middle-earth.black_lebethron_vertical_slab": "Dalle verticale en Lebethron noir", + "item.middle-earth.black_lebethron_wood": "Bois Lebethron noir", + "item.middle-earth.black_lebethron_wood_fence": "Clôture en bois de Lebethron noir", + "item.middle-earth.black_lebethron_wood_slab": "Dalle en bois de Lebethron noir", + "item.middle-earth.black_lebethron_wood_stairs": "Escaliers en bois de Lebethron noir", + "item.middle-earth.black_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron noir", + "item.middle-earth.black_lebethron_wood_wall": "Muret en bois de Lebethron noir", + "item.middle-earth.black_numenorean_axe": "Hache Númenóréenne noire", + "item.middle-earth.black_numenorean_dagger": "Dague Númenóréenne noire", + "item.middle-earth.black_numenorean_longsword": "Épée longue Númenóréenne noire", + "item.middle-earth.black_numenorean_spear": "Lance Númenóréenne noire", + "item.middle-earth.black_numenorean_sword": "Épée Númenóréenne noire", + "item.middle-earth.black_numenorean_tower_shield": "Pavois Númenóréen noir", + "item.middle-earth.black_pine_bench": "Banc en pin noir", + "item.middle-earth.black_pine_button": "Bouton en pin noir", + "item.middle-earth.black_pine_chair": "Chaise en pin noir", + "item.middle-earth.black_pine_door": "Porte en pin noir", + "item.middle-earth.black_pine_fence": "Barrière en pin noir", + "item.middle-earth.black_pine_fence_gate": "Portillon en pin noir", + "item.middle-earth.black_pine_ladder": "Échelle en pin noir", + "item.middle-earth.black_pine_leaves": "Feuilles de pin noir", + "item.middle-earth.black_pine_log": "Bûche de pin noir", + "item.middle-earth.black_pine_planks": "Planches de pin noir", + "item.middle-earth.black_pine_pressure_plate": "Plaque de pression en pin noir", + "item.middle-earth.black_pine_roofing": "Toiture en pin noir", + "item.middle-earth.black_pine_roofing_slab": "Dalle de toiture en pin noir", + "item.middle-earth.black_pine_roofing_stairs": "Escalier de toiture en pin noir", + "item.middle-earth.black_pine_roofing_vertical_slab": "Dalle verticale de toiture en pin noir", + "item.middle-earth.black_pine_roofing_wall": "Muret de toiture en pin noir", + "item.middle-earth.black_pine_sapling": "Pousse de pin noir", + "item.middle-earth.black_pine_shingles": "Bardeaux de pin noir", + "item.middle-earth.black_pine_shingles_slab": "Dalle en bardeaux de pin noir", + "item.middle-earth.black_pine_shingles_stairs": "Escaliers en bardeaux de pin noir", + "item.middle-earth.black_pine_shingles_vertical_slab": "Dalle verticale en bardeaux de pin noir", + "item.middle-earth.black_pine_shingles_wall": "Muret en bardeaux de pin noir", + "item.middle-earth.black_pine_slab": "Dalle en pin noir", + "item.middle-earth.black_pine_stairs": "Escaliers en pin noir", + "item.middle-earth.black_pine_stool": "Tabouret en pin noir", + "item.middle-earth.black_pine_table": "Table en pin noir", + "item.middle-earth.black_pine_trapdoor": "Trappe en pin noir", + "item.middle-earth.black_pine_vertical_slab": "Dalle verticale en pin noir", + "item.middle-earth.black_pine_wood": "Planches de pin noir", + "item.middle-earth.black_pine_wood_fence": "Barrière en pin noir", + "item.middle-earth.black_pine_wood_slab": "Dalle en bois de pin noir", + "item.middle-earth.black_pine_wood_stairs": "Escaliers en bois de pin noir", + "item.middle-earth.black_pine_wood_vertical_slab": "Dalle verticale en bois de pin noir", + "item.middle-earth.black_pine_wood_wall": "Muret en pin noir", + "item.middle-earth.black_sand": "Sable noir", + "item.middle-earth.black_sand_layer": "Couche de sable noir", + "item.middle-earth.black_stained_lead_glass": "Verre plombé noir", + "item.middle-earth.black_stained_lead_glass_pane": "Vitre plombée noire", + "item.middle-earth.black_uruk_commander_chestplate": "Plastron de commandant Uruk noir", + "item.middle-earth.black_uruk_commander_helmet": "Casque de commandant Uruk noir", + "item.middle-earth.black_uruk_face_plate_helmet": "Casque à plaque faciale Uruk noir", + "item.middle-earth.black_uruk_plate_boots": "Bottes de plates Uruk noir", + "item.middle-earth.black_uruk_plate_chestplate": "Plastron de plates Uruk noir", + "item.middle-earth.black_uruk_plate_helmet": "Casque de plates Uruk noir", + "item.middle-earth.black_uruk_plate_leggings": "Jambières de plates Uruk noir", + "item.middle-earth.black_wattle_and_white_daub": "Clayonnage noir et torchis blanc", + "item.middle-earth.black_wattle_and_white_daub_cross": "Clayonnage noir et torchis blanc en croix", + "item.middle-earth.black_wattle_and_white_daub_diamond": "Clayonnage noir et torchis blanc en losange", + "item.middle-earth.black_wattle_and_white_daub_left": "Clayonnage noir et torchis blanc à gauche", + "item.middle-earth.black_wattle_and_white_daub_pillar": "Pilier de clayonnage noir et torchis blanc", + "item.middle-earth.black_wattle_and_white_daub_right": "Clayonnage noir et torchis blanc à droite", + "item.middle-earth.black_wattle_framed_window": "Fenêtre à clayonnage noir", + "item.middle-earth.black_wattle_framed_window_pane": "Fenêtre plate à clayonnage noir", + "item.middle-earth.black_wattle_trapdoor": "Trappe en clayonnage noir", + "item.middle-earth.black_wool_slab": "Dalle en laine noire", + "item.middle-earth.black_wool_stairs": "Escaliers en laine noire", + "item.middle-earth.black_wool_vertical_slab": "Dalle verticale en laine noire", + "item.middle-earth.blackstone_brickwork": "Maçonnerie en pierre noire", + "item.middle-earth.blackstone_brickwork_slab": "Dalle de maçonnerie en pierre noire", + "item.middle-earth.blackstone_brickwork_stairs": "Escalier en maçonnerie de pierre noire", + "item.middle-earth.blackstone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierre noire", + "item.middle-earth.blackstone_brickwork_wall": "Muret en maçonnerie de pierre noire", + "item.middle-earth.blackstone_button": "Bouton en pierre noire", + "item.middle-earth.blackstone_carved_window": "Fenêtre sculptée en pierre noire", + "item.middle-earth.blackstone_chair": "Chaise en pierre noire", + "item.middle-earth.blackstone_pillar": "Pilier en pierre noire", + "item.middle-earth.blackstone_pressure_plate": "Plaque de pression en pierre noire", + "item.middle-earth.blackstone_rocks": "Éboulis de pierre noire", + "item.middle-earth.blackstone_stool": "Tabouret en pierre noire", + "item.middle-earth.blackstone_table": "Table en pierre noire", + "item.middle-earth.blackstone_tiles": "Roche noire carrelée", + "item.middle-earth.blackstone_trapdoor": "Trappe en pierre noire", + "item.middle-earth.blackstone_vertical_slab": "Dalle verticale en roche noire", + "item.middle-earth.blade": "Lame", + "item.middle-earth.blue_clay_tiling": "Tuile d'argile bleue", + "item.middle-earth.blue_clay_tiling_slab": "Dalle en tuile d'argile bleue", + "item.middle-earth.blue_clay_tiling_stairs": "Escaliers en tuile d'argile bleue", + "item.middle-earth.blue_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile bleue", + "item.middle-earth.blue_clay_tiling_wall": "Muret en tuile d'argile bleue", + "item.middle-earth.blue_cushion": "Coussin bleu", + "item.middle-earth.blue_hobbit_door": "Porte Hobbit bleue", + "item.middle-earth.blue_roof_tiles": "Tuiles de toit bleues", + "item.middle-earth.blue_stained_lead_glass": "Verre plombé bleu", + "item.middle-earth.blue_stained_lead_glass_pane": "Vitre plombée bleue", + "item.middle-earth.blue_tuff": "Tuf bleu", + "item.middle-earth.blue_tuff_bricks": "Briques en tuf bleu", + "item.middle-earth.blue_tuff_button": "Bouton en tuf bleu", + "item.middle-earth.blue_tuff_chair": "Chaise en tuf bleu", + "item.middle-earth.blue_tuff_pillar": "Pilier en tuf bleu", + "item.middle-earth.blue_tuff_pressure_plate": "Plaque de pression en tuf bleu", + "item.middle-earth.blue_tuff_rocks": "Éboulis de tuf bleu", + "item.middle-earth.blue_tuff_slab": "Dalle en tuf bleu", + "item.middle-earth.blue_tuff_stairs": "Escaliers en tuf bleu", + "item.middle-earth.blue_tuff_stool": "Tabouret en tuf bleu", + "item.middle-earth.blue_tuff_table": "Table en tuf bleu", + "item.middle-earth.blue_tuff_tiles": "Tuf bleu carrelé", + "item.middle-earth.blue_tuff_trapdoor": "Trappe en tuf bleu", + "item.middle-earth.blue_tuff_vertical_slab": "Dalle verticale en tuf bleu", + "item.middle-earth.blue_tuff_wall": "Muret en tuf bleu", + "item.middle-earth.blue_wool_slab": "Dalle en laine bleue", + "item.middle-earth.blue_wool_stairs": "Escaliers en laine bleue", + "item.middle-earth.blue_wool_vertical_slab": "Dalle verticale en laine bleue", + "item.middle-earth.boiled_egg": "Œuf dur", + "item.middle-earth.bonfire": "Feu de joie", + "item.middle-earth.bow_banner_pattern": "Motif de bannière à l'arc", + "item.middle-earth.bow_banner_pattern.desc": "Icônes d'arc", + "item.middle-earth.bracken": "Fougère-aigle", + "item.middle-earth.brick_vertical_slab": "Dalle verticale en brique", + "item.middle-earth.bright_blue_roof_tiles": "Tuiles de toit bleu vif", + "item.middle-earth.bright_cyan_roof_tiles": "Tuiles de toit cyan vif", + "item.middle-earth.bright_green_roof_tiles": "Tuiles de toit vert vif", + "item.middle-earth.bright_red_roof_tiles": "Tuiles de toit rouge vif", + "item.middle-earth.bright_yellow_roof_tiles": "Tuiles de toit jaune vif", + "item.middle-earth.brimmingbend_pipe": "Pipe de Coude-Débordant", + "item.middle-earth.broadhoof_goat_plate_armor": "Armure de plates de Bouc à Sabots larges", + "item.middle-earth.broadhoof_goat_spawn_egg": "Œuf d'apparition de Bouc à Sabots larges", + "item.middle-earth.bronze_axe": "Hache en bronze", + "item.middle-earth.bronze_block": "Bloc de bronze", + "item.middle-earth.bronze_broad_chain": "Grosse chaîne en bronze", + "item.middle-earth.bronze_chain": "Chaîne en bronze", + "item.middle-earth.bronze_dagger": "Dague en bronze", + "item.middle-earth.bronze_hoe": "Houe en bronze", + "item.middle-earth.bronze_ingot": "Lingot de bronze", + "item.middle-earth.bronze_nugget": "Pépite de bronze", + "item.middle-earth.bronze_pickaxe": "Pioche en bronze", + "item.middle-earth.bronze_shovel": "Pelle en bronze", + "item.middle-earth.bronze_spear": "Lance en bronze", + "item.middle-earth.bronze_sword": "Épée en bronze", + "item.middle-earth.brown_bolete": "Bolet brun", + "item.middle-earth.brown_bolete_block": "Bloc de bolet brun", + "item.middle-earth.brown_bolete_tiller": "Talle de bolet brun", + "item.middle-earth.brown_clay_tiling": "Tuile d'argile brune", + "item.middle-earth.brown_clay_tiling_slab": "Dalle en tuile d'argile brune", + "item.middle-earth.brown_clay_tiling_stairs": "Escaliers en tuile d'argile brune", + "item.middle-earth.brown_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile brune", + "item.middle-earth.brown_clay_tiling_wall": "Muret en tuile d'argile brune", + "item.middle-earth.brown_cushion": "Coussin marron", + "item.middle-earth.brown_fur": "Fourrure brune", + "item.middle-earth.brown_fur_cloak": "Manteau en fourrure brune", + "item.middle-earth.brown_fur_hood": "Capuche en fourrure brune", + "item.middle-earth.brown_grass": "Herbe brune", + "item.middle-earth.brown_roof_tiles": "Tuiles de toit marron", + "item.middle-earth.brown_stained_lead_glass": "Verre plombé marron", + "item.middle-earth.brown_stained_lead_glass_pane": "Vitre plombée marron", + "item.middle-earth.brown_wool_slab": "Dalle en laine marron", + "item.middle-earth.brown_wool_stairs": "Escaliers en laine marron", + "item.middle-earth.brown_wool_vertical_slab": "Dalle verticale en laine marron", + "item.middle-earth.budding_citrine": "Druse de citrine", + "item.middle-earth.budding_glowstone": "Druse de pierre lumineuse", + "item.middle-earth.budding_quartz": "Druse de quartz", + "item.middle-earth.budding_red_agate": "Druse d'agate rouge", + "item.middle-earth.burzum_steel_axe": "Hache en acier Uruk", + "item.middle-earth.burzum_steel_block": "Bloc d'acier Uruk", + "item.middle-earth.burzum_steel_hoe": "Houe en acier Uruk", + "item.middle-earth.burzum_steel_ingot": "Lingot d'acier Uruk", + "item.middle-earth.burzum_steel_nugget": "Pépite d'acier Uruk", + "item.middle-earth.burzum_steel_pickaxe": "Pioche en acier Uruk", + "item.middle-earth.burzum_steel_shovel": "Pelle en acier Uruk", + "item.middle-earth.burzum_steel_spear": "Lance en acier Uruk", + "item.middle-earth.burzum_steel_sword": "Épée en acier Uruk", + "item.middle-earth.bycocket": "Bycoquet", + "item.middle-earth.calcite_bricks": "Briques en calcite", + "item.middle-earth.calcite_brickwork": "Maçonnerie en calcite", + "item.middle-earth.calcite_brickwork_slab": "Dalle de maçonnerie en calcite", + "item.middle-earth.calcite_brickwork_stairs": "Escalier en maçonnerie de calcite", + "item.middle-earth.calcite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en calcite", + "item.middle-earth.calcite_brickwork_wall": "Muret en maçonnerie de calcite", + "item.middle-earth.calcite_button": "Bouton en calcite", + "item.middle-earth.calcite_chair": "Chaise en calcite", + "item.middle-earth.calcite_coal_ore": "Minerai de charbon de calcite", + "item.middle-earth.calcite_copper_ore": "Minerai de cuivre de calcite", + "item.middle-earth.calcite_pillar": "Pilier en calcite", + "item.middle-earth.calcite_pressure_plate": "Plaque de pression en calcite", + "item.middle-earth.calcite_rocks": "Éboulis de calcite", + "item.middle-earth.calcite_slab": "Dalle en calcite", + "item.middle-earth.calcite_stairs": "Escalier en calcite", + "item.middle-earth.calcite_stool": "Tabouret en calcite", + "item.middle-earth.calcite_table": "Table en calcite", + "item.middle-earth.calcite_tiles": "Calcite carrelée", + "item.middle-earth.calcite_tin_ore": "Minerai d'étain de calcite", + "item.middle-earth.calcite_trapdoor": "Trappe en calcite", + "item.middle-earth.calcite_vertical_slab": "Dalle verticale en calcite", + "item.middle-earth.calcite_wall": "Muret en calcite", + "item.middle-earth.candle_heap": "Tas de bougies", + "item.middle-earth.cape": "Cape", + "item.middle-earth.cave_amanita": "Amanite de caverne", + "item.middle-earth.cave_amanita_block": "Bloc d'amanite de caverne", + "item.middle-earth.cave_amanita_tiller": "Talle d'amanite de caverne", + "item.middle-earth.cherry_bench": "Banc en cerisier", + "item.middle-earth.cherry_chair": "Chaise en cerisier", + "item.middle-earth.cherry_ladder": "Échelle en cerisier", + "item.middle-earth.cherry_shingles": "Bardeaux de cerisier", + "item.middle-earth.cherry_shingles_slab": "Dalle en bardeaux de cerisier", + "item.middle-earth.cherry_shingles_stairs": "Escaliers en bardeaux de cerisier", + "item.middle-earth.cherry_shingles_vertical_slab": "Dalle verticale en bardeaux de cerisier", + "item.middle-earth.cherry_shingles_wall": "Muret en bardeaux de cerisier", + "item.middle-earth.cherry_stool": "Tabouret en cerisier", + "item.middle-earth.cherry_table": "Table en cerisier", + "item.middle-earth.cherry_vertical_slab": "Dalle verticale en cerisier", + "item.middle-earth.cherry_wood_fence": "Barrière en bois de cerisier", + "item.middle-earth.cherry_wood_slab": "Dalle en bois de cerisier", + "item.middle-earth.cherry_wood_stairs": "Escalier en bois de cerisier", + "item.middle-earth.cherry_wood_vertical_slab": "Dalle verticale en bois de cerisier", + "item.middle-earth.cherry_wood_wall": "Muret en bois de cerisier", + "item.middle-earth.chestnut_bench": "Banc en châtaignier", + "item.middle-earth.chestnut_button": "Bouton en châtaignier", + "item.middle-earth.chestnut_chair": "Chaise en châtaignier", + "item.middle-earth.chestnut_door": "Porte en châtaignier", + "item.middle-earth.chestnut_fence": "Clôture en châtaignier", + "item.middle-earth.chestnut_fence_gate": "Portillon en châtaignier", + "item.middle-earth.chestnut_ladder": "Échelle en châtaignier", + "item.middle-earth.chestnut_leaves": "Feuilles de châtaignier", + "item.middle-earth.chestnut_log": "Bûche de châtaignier", + "item.middle-earth.chestnut_planks": "Planches de châtaignier", + "item.middle-earth.chestnut_pressure_plate": "Plaque de pression en châtaignier", + "item.middle-earth.chestnut_roofing": "Toiture en châtaignier", + "item.middle-earth.chestnut_roofing_slab": "Dalle de toiture en châtaignier", + "item.middle-earth.chestnut_roofing_stairs": "Escalier de toiture en châtaignier", + "item.middle-earth.chestnut_roofing_vertical_slab": "Dalle verticale de toiture en châtaignier", + "item.middle-earth.chestnut_roofing_wall": "Muret de toiture en châtaignier", + "item.middle-earth.chestnut_sapling": "Pousse de châtaignier", + "item.middle-earth.chestnut_shingles": "Bardeaux en châtaignier", + "item.middle-earth.chestnut_shingles_slab": "Dalle de bardeaux en châtaignier", + "item.middle-earth.chestnut_shingles_stairs": "Escalier de bardeaux en châtaignier", + "item.middle-earth.chestnut_shingles_vertical_slab": "Dalle verticale de bardeaux en châtaignier", + "item.middle-earth.chestnut_shingles_wall": "Muret de bardeaux en châtaignier", + "item.middle-earth.chestnut_slab": "Dalle en châtaignier", + "item.middle-earth.chestnut_stairs": "Escaliers en châtaignier", + "item.middle-earth.chestnut_stool": "Tabouret en châtaignier", + "item.middle-earth.chestnut_table": "Table en châtaignier", + "item.middle-earth.chestnut_trapdoor": "Trappe en châtaignier", + "item.middle-earth.chestnut_vertical_slab": "Dalle verticale en châtaignier", + "item.middle-earth.chestnut_wood": "Planches de châtaignier", + "item.middle-earth.chestnut_wood_fence": "Barrière en châtaignier", + "item.middle-earth.chestnut_wood_slab": "Dalle en bois de châtaignier", + "item.middle-earth.chestnut_wood_stairs": "Escaliers en bois de châtaignier", + "item.middle-earth.chestnut_wood_vertical_slab": "Dalle verticale en bois de châtaignier", + "item.middle-earth.chestnut_wood_wall": "Muret en châtaignier", + "item.middle-earth.chimney": "Cheminée", + "item.middle-earth.chiseled_andesite": "Andésite sculptée", + "item.middle-earth.chiseled_andesite_bricks": "Briques d'andésite sculptées", + "item.middle-earth.chiseled_andesite_tiles": "Andésite carrelée sculptée", + "item.middle-earth.chiseled_basalt": "Basalte sculpté", + "item.middle-earth.chiseled_basalt_bricks": "Briques de basalte sculptées", + "item.middle-earth.chiseled_basalt_tiles": "Basalte carrelé sculpté", + "item.middle-earth.chiseled_blackstone": "Pierre noire sculptée", + "item.middle-earth.chiseled_blackstone_tiles": "Roche noire carrelée sculptée", + "item.middle-earth.chiseled_blue_tuff_bricks": "Briques en tuf bleu sculptées", + "item.middle-earth.chiseled_calcite": "Calcite sculptée", + "item.middle-earth.chiseled_calcite_bricks": "Briques en calcite sculptées", + "item.middle-earth.chiseled_calcite_tiles": "Calcite carrelée sculptée", + "item.middle-earth.chiseled_deepslate_bricks": "Ardoise des abîmes taillée sculptée", + "item.middle-earth.chiseled_deepslate_tiles": "Ardoise des abîmes carrelée sculptée", + "item.middle-earth.chiseled_diorite": "Diorite sculptée", + "item.middle-earth.chiseled_diorite_bricks": "Briques de diorite sculptées", + "item.middle-earth.chiseled_diorite_tiles": "Diorite carrelée sculptée", + "item.middle-earth.chiseled_dolomite": "Dolomite sculptée", + "item.middle-earth.chiseled_dolomite_bricks": "Briques en dolomite sculptées", + "item.middle-earth.chiseled_dolomite_tiles": "Dolomite carrelée sculptée", + "item.middle-earth.chiseled_gabbro_bricks": "Briques en gabbro sculptées", + "item.middle-earth.chiseled_galonn": "Galonn sculptée", + "item.middle-earth.chiseled_galonn_bricks": "Briques en Galonn sculptées", + "item.middle-earth.chiseled_galonn_tiles": "Galonn carrelée sculptée", + "item.middle-earth.chiseled_gneiss": "Gneiss sculpté", + "item.middle-earth.chiseled_gneiss_bricks": "Briques en gneiss sculptées", + "item.middle-earth.chiseled_granite": "Granite sculpté", + "item.middle-earth.chiseled_granite_bricks": "Briques en granite sculptées", + "item.middle-earth.chiseled_granite_tiles": "Granite carrelé sculpté", + "item.middle-earth.chiseled_green_tuff": "Tuf vert sculpté", + "item.middle-earth.chiseled_green_tuff_bricks": "Briques en tuf vert sculptées", + "item.middle-earth.chiseled_green_tuff_tiles": "Tuf vert carrelé sculpté", + "item.middle-earth.chiseled_hematite": "Hématite sculptée", + "item.middle-earth.chiseled_hematite_bricks": "Briques en hématite sculptées", + "item.middle-earth.chiseled_ironstone": "Pierre de fer sculptée", + "item.middle-earth.chiseled_ironstone_bricks": "Briques en pierre de fer sculptées", + "item.middle-earth.chiseled_izheraban": "Izhêr'Aban sculptée", + "item.middle-earth.chiseled_izheraban_bricks": "Briques en Izhêr'Aban sculptées", + "item.middle-earth.chiseled_izheraban_tiles": "Izhêr'Aban carrelée sculptée", + "item.middle-earth.chiseled_limestone": "Calcaire sculpté", + "item.middle-earth.chiseled_limestone_bricks": "Briques de calcaire sculptées", + "item.middle-earth.chiseled_limestone_tiles": "Calcaire carrelé sculpté", + "item.middle-earth.chiseled_medgon": "Medgon sculptée", + "item.middle-earth.chiseled_medgon_bricks": "Briques en Medgon sculptées", + "item.middle-earth.chiseled_medgon_tiles": "Medgon carrelée sculptée", + "item.middle-earth.chiseled_nurgon_bricks": "Briques en Núrgon sculptées", + "item.middle-earth.chiseled_polished_andesite": "Andésite polie sculptée", + "item.middle-earth.chiseled_polished_basalt": "Basalte poli sculpté", + "item.middle-earth.chiseled_polished_blackstone_bricks": "Briques en pierre noire polie sculptées", + "item.middle-earth.chiseled_polished_blue_tuff": "Tuf bleu poli sculpté", + "item.middle-earth.chiseled_polished_calcite": "Calcite polie sculptée", + "item.middle-earth.chiseled_polished_deepslate": "Ardoise des abîmes polie sculptée", + "item.middle-earth.chiseled_polished_diorite": "Diorite polie sculptée", + "item.middle-earth.chiseled_polished_dolomite": "Dolomite polie sculptée", + "item.middle-earth.chiseled_polished_gabbro": "Gabbro poli sculpté", + "item.middle-earth.chiseled_polished_galonn": "Galonn polie sculptée", + "item.middle-earth.chiseled_polished_gneiss": "Gneiss poli sculpté", + "item.middle-earth.chiseled_polished_granite": "Granite poli sculpté", + "item.middle-earth.chiseled_polished_green_tuff": "Tuf vert poli sculpté", + "item.middle-earth.chiseled_polished_hematite": "Hématite polie sculptée", + "item.middle-earth.chiseled_polished_ironstone": "Pierre de fer polie sculptée", + "item.middle-earth.chiseled_polished_izheraban": "Izhêr'Aban polie sculptée", + "item.middle-earth.chiseled_polished_limestone": "Calcaire poli sculpté", + "item.middle-earth.chiseled_polished_medgon": "Medgon polie sculptée", + "item.middle-earth.chiseled_polished_nurgon": "Núrgon polie sculptée", + "item.middle-earth.chiseled_polished_pumice": "Pierre ponce polie sculptée", + "item.middle-earth.chiseled_polished_slate": "Ardoise polie sculptée", + "item.middle-earth.chiseled_polished_stone": "Roche polie sculptée", + "item.middle-earth.chiseled_polished_tuff": "Tuf poli sculpté", + "item.middle-earth.chiseled_polished_zigilaban": "Zigil'Aban polie sculptée", + "item.middle-earth.chiseled_pumice_bricks": "Briques en pierre ponce sculptées", + "item.middle-earth.chiseled_slate_bricks": "Briques en ardoise sculptées", + "item.middle-earth.chiseled_smooth_andesite": "Andésite lisse sculptée", + "item.middle-earth.chiseled_smooth_basalt": "Basalte lisse sculpté", + "item.middle-earth.chiseled_smooth_blackstone": "Roche noire lisse sculptée", + "item.middle-earth.chiseled_smooth_calcite": "Calcite lisse sculptée", + "item.middle-earth.chiseled_smooth_deepslate": "Ardoise des abîmes lisse sculptée", + "item.middle-earth.chiseled_smooth_diorite": "Diorite lisse sculptée", + "item.middle-earth.chiseled_smooth_dolomite": "Dolomite lisse sculptée", + "item.middle-earth.chiseled_smooth_galonn": "Galonn lisse sculptée", + "item.middle-earth.chiseled_smooth_granite": "Granite lisse sculpté", + "item.middle-earth.chiseled_smooth_green_tuff": "Tuf vert lisse sculpté", + "item.middle-earth.chiseled_smooth_izheraban": "Izhêr'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_limestone": "Calcaire lisse sculpté", + "item.middle-earth.chiseled_smooth_medgon": "Medgon lisse sculptée", + "item.middle-earth.chiseled_smooth_stone": "Pierre lisse sculptée", + "item.middle-earth.chiseled_smooth_tuff": "Tuf lisse sculpté", + "item.middle-earth.chiseled_stone": "Roche sculptée", + "item.middle-earth.chiseled_stone_tiles": "Roche carrelée sculptée", + "item.middle-earth.chiseled_tuff_tiles": "Tuf carrelé sculpté", + "item.middle-earth.chiseled_zigilaban": "Zigil'Aban sculptée", + "item.middle-earth.chiseled_zigilaban_bricks": "Briques en Zigil'Aban sculptées", + "item.middle-earth.citrine_block": "Bloc de citrine", + "item.middle-earth.citrine_cluster": "Amas de citrine", + "item.middle-earth.citrine_shard": "Éclat de citrine", + "item.middle-earth.clay_pipe": "Pipe en argile", + "item.middle-earth.clay_tiling": "Tuile d'argile", + "item.middle-earth.clay_tiling_slab": "Dalle en tuile d'argile", + "item.middle-earth.clay_tiling_stairs": "Escaliers en tuile d'argile", + "item.middle-earth.clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile", + "item.middle-earth.clay_tiling_wall": "Muret en tuile d'argile", + "item.middle-earth.cloak": "Manteau", + "item.middle-earth.closed_mail_coif": "Coiffe de maille fermée", + "item.middle-earth.coarse_dirt_slab": "Dalle de terre stérile", + "item.middle-earth.coarse_dirt_stairs": "Escalier de terre stérile", + "item.middle-earth.coastal_panic_grass": "Panic amer", + "item.middle-earth.cobbled_andesite": "Pierre d'andésite", + "item.middle-earth.cobbled_andesite_slab": "Dalle en pierre d'andésite", + "item.middle-earth.cobbled_andesite_stairs": "Escaliers en pierre d'andésite", + "item.middle-earth.cobbled_andesite_vertical_slab": "Dalle verticale en pierre d'andésite", + "item.middle-earth.cobbled_andesite_wall": "Muret en pierre d'andésite", + "item.middle-earth.cobbled_basalt": "Pierre de basalte", + "item.middle-earth.cobbled_basalt_slab": "Dalle en pierre de basalte", + "item.middle-earth.cobbled_basalt_stairs": "Escaliers en pierre de basalte", + "item.middle-earth.cobbled_basalt_vertical_slab": "Dalle verticale en pierre de basalte", + "item.middle-earth.cobbled_basalt_wall": "Muret en pierre de basalte", + "item.middle-earth.cobbled_blackstone": "Pierre noire taillée", + "item.middle-earth.cobbled_blackstone_slab": "Dalle en pierre noire taillée", + "item.middle-earth.cobbled_blackstone_stairs": "Escalier en pierre noire taillée", + "item.middle-earth.cobbled_blackstone_vertical_slab": "Dalle verticale en pierre noire taillée", + "item.middle-earth.cobbled_blackstone_wall": "Muret en pierre noire taillée", + "item.middle-earth.cobbled_blue_tuff": "Pierre de tuf bleu", + "item.middle-earth.cobbled_blue_tuff_slab": "Dalle en pierre de tuf bleu", + "item.middle-earth.cobbled_blue_tuff_stairs": "Escaliers en pierre de tuf bleu", + "item.middle-earth.cobbled_blue_tuff_vertical_slab": "Dalle verticale en pierre de tuf bleu", + "item.middle-earth.cobbled_blue_tuff_wall": "Muret en pierre de tuf bleu", + "item.middle-earth.cobbled_calcite": "Pierre de calcite", + "item.middle-earth.cobbled_calcite_slab": "Dalle en pierre de calcite", + "item.middle-earth.cobbled_calcite_stairs": "Escaliers en pierres de calcite", + "item.middle-earth.cobbled_calcite_vertical_slab": "Dalle verticale en pierre de calcite", + "item.middle-earth.cobbled_calcite_wall": "Muret en pierre de calcite", + "item.middle-earth.cobbled_deepslate_vertical_slab": "Dalle verticale de pierre des abîmes", + "item.middle-earth.cobbled_diorite": "Pierre de diorite", + "item.middle-earth.cobbled_diorite_slab": "Dalle en pierre de diorite", + "item.middle-earth.cobbled_diorite_stairs": "Escaliers en pierre de diorite", + "item.middle-earth.cobbled_diorite_vertical_slab": "Dalle verticale en pierre de diorite", + "item.middle-earth.cobbled_diorite_wall": "Muret en pierre de diorite", + "item.middle-earth.cobbled_dolomite": "Pierres de dolomite", + "item.middle-earth.cobbled_dolomite_slab": "Dalle en pierre de dolomite", + "item.middle-earth.cobbled_dolomite_stairs": "Escaliers en pierre de dolomite", + "item.middle-earth.cobbled_dolomite_vertical_slab": "Dalle verticale en pierre de dolomite", + "item.middle-earth.cobbled_dolomite_wall": "Muret en pierre de dolomite", + "item.middle-earth.cobbled_gabbro": "Pierre de gabbro", + "item.middle-earth.cobbled_gabbro_slab": "Dalle en pierre de gabbro", + "item.middle-earth.cobbled_gabbro_stairs": "Escalier en pierre de gabbro", + "item.middle-earth.cobbled_gabbro_vertical_slab": "Dalle verticale en pierre de gabbro", + "item.middle-earth.cobbled_gabbro_wall": "Muret en pierre de gabbro", + "item.middle-earth.cobbled_galonn": "Pierre de Galonn", + "item.middle-earth.cobbled_galonn_slab": "Dalle en pierre de Galonn", + "item.middle-earth.cobbled_galonn_stairs": "Escalier en pierre de Galonn", + "item.middle-earth.cobbled_galonn_vertical_slab": "Dalle verticale en pierre de Galonn", + "item.middle-earth.cobbled_galonn_wall": "Muret en pierre de Galonn", + "item.middle-earth.cobbled_gneiss": "Pierre de gneiss", + "item.middle-earth.cobbled_gneiss_slab": "Dalle en pierre de gneiss", + "item.middle-earth.cobbled_gneiss_stairs": "Escalier en pierre de gneiss", + "item.middle-earth.cobbled_gneiss_vertical_slab": "Dalle verticale en pierre de gneiss", + "item.middle-earth.cobbled_gneiss_wall": "Muret en pierre de gneiss", + "item.middle-earth.cobbled_granite": "Pierre de granite", + "item.middle-earth.cobbled_granite_slab": "Dalle en pierre de granite", + "item.middle-earth.cobbled_granite_stairs": "Escaliers en pierre de granite", + "item.middle-earth.cobbled_granite_vertical_slab": "Dalle verticale en pierre de granite", + "item.middle-earth.cobbled_granite_wall": "Muret en pierre de granite", + "item.middle-earth.cobbled_hematite": "Pierre d'hématite", + "item.middle-earth.cobbled_hematite_slab": "Dalle en pierre d'hématite", + "item.middle-earth.cobbled_hematite_stairs": "Escalier en pierre d'hématite", + "item.middle-earth.cobbled_hematite_vertical_slab": "Dalle verticale en pierre d'hématite", + "item.middle-earth.cobbled_hematite_wall": "Muret en pierre d'hématite", + "item.middle-earth.cobbled_ironstone": "Pierre de fer taillée", + "item.middle-earth.cobbled_ironstone_slab": "Dalle en pierre de fer taillée", + "item.middle-earth.cobbled_ironstone_stairs": "Escalier en pierre de fer taillée", + "item.middle-earth.cobbled_ironstone_vertical_slab": "Dalle verticale en pierre de fer taillée", + "item.middle-earth.cobbled_ironstone_wall": "Muret en pierre de fer taillée", + "item.middle-earth.cobbled_izheraban": "Pierre d'Izhêr'Aban", + "item.middle-earth.cobbled_izheraban_slab": "Dalle en pierre d'Izhêr'Aban", + "item.middle-earth.cobbled_izheraban_stairs": "Escalier en pierre d'Izhêr'Aban", + "item.middle-earth.cobbled_izheraban_vertical_slab": "Dalle verticale en pierre d'Izhêr'Aban", + "item.middle-earth.cobbled_izheraban_wall": "Muret en pierre d'Izhêr'Aban", + "item.middle-earth.cobbled_jadeite": "Pierre de jadéite", + "item.middle-earth.cobbled_jadeite_slab": "Dalle en pierre de jadéite", + "item.middle-earth.cobbled_jadeite_stairs": "Escaliers en pierre de jadéite", + "item.middle-earth.cobbled_jadeite_vertical_slab": "Dalle verticale en pierre de jadéite", + "item.middle-earth.cobbled_jadeite_wall": "Muret en pierre de jadéite", + "item.middle-earth.cobbled_limestone": "Pierre de calcaire", + "item.middle-earth.cobbled_limestone_slab": "Dalle en pierre de calcaire", + "item.middle-earth.cobbled_limestone_stairs": "Escaliers en pierre de calcaire", + "item.middle-earth.cobbled_limestone_vertical_slab": "Dalle verticale en pierre de calcaire", + "item.middle-earth.cobbled_limestone_wall": "Muret en pierre de calcaire", + "item.middle-earth.cobbled_medgon": "Pierre de Medgon", + "item.middle-earth.cobbled_medgon_slab": "Dalle en pierre de Medgon", + "item.middle-earth.cobbled_medgon_stairs": "Escalier en pierre de Medgon", + "item.middle-earth.cobbled_medgon_vertical_slab": "Dalle verticale en pierre de Medgon", + "item.middle-earth.cobbled_medgon_wall": "Muret en pierre de Medgon", + "item.middle-earth.cobbled_nurgon": "Pierre de Núrgon", + "item.middle-earth.cobbled_nurgon_slab": "Dalle en pierre de Núrgon", + "item.middle-earth.cobbled_nurgon_stairs": "Escalier en pierre de Núrgon", + "item.middle-earth.cobbled_nurgon_vertical_slab": "Dalle verticale en pierre de Núrgon", + "item.middle-earth.cobbled_nurgon_wall": "Muret en pierre de Núrgon", + "item.middle-earth.cobbled_pumice": "Pierre ponce taillée", + "item.middle-earth.cobbled_pumice_slab": "Dalle en pierre ponce taillée", + "item.middle-earth.cobbled_pumice_stairs": "Escalier en pierre ponce taillée", + "item.middle-earth.cobbled_pumice_vertical_slab": "Dalle verticale en pierre ponce taillée", + "item.middle-earth.cobbled_pumice_wall": "Muret en pierre ponce taillée", + "item.middle-earth.cobbled_quartzite": "Pierre de quartzite", + "item.middle-earth.cobbled_quartzite_slab": "Dalle en pierre de quartzite", + "item.middle-earth.cobbled_quartzite_stairs": "Escaliers en pierre de quartzite", + "item.middle-earth.cobbled_quartzite_vertical_slab": "Dalle verticale en pierre de quartzite", + "item.middle-earth.cobbled_quartzite_wall": "Muret en pierre de quartzite", + "item.middle-earth.cobbled_schist": "Pierre de schiste", + "item.middle-earth.cobbled_schist_slab": "Dalle en pierre de schiste", + "item.middle-earth.cobbled_schist_stairs": "Escalier en pierre de schiste", + "item.middle-earth.cobbled_schist_vertical_slab": "Dalle verticale en pierre de schiste", + "item.middle-earth.cobbled_schist_wall": "Muret en pierre de schiste", + "item.middle-earth.cobbled_slate": "Pierre d'ardoise", + "item.middle-earth.cobbled_slate_slab": "Dalle en pierre d'ardoise", + "item.middle-earth.cobbled_slate_stairs": "Escalier en pierre d'ardoise", + "item.middle-earth.cobbled_slate_vertical_slab": "Dalle verticale en pierre d'ardoise", + "item.middle-earth.cobbled_slate_wall": "Muret en pierre d'ardoise", + "item.middle-earth.cobbled_tuff": "Pierre de tuf", + "item.middle-earth.cobbled_tuff_slab": "Dalle en pierre de tuf", + "item.middle-earth.cobbled_tuff_stairs": "Escalier en pierre de tuf", + "item.middle-earth.cobbled_tuff_vertical_slab": "Dalle verticale en pierre de tuf", + "item.middle-earth.cobbled_tuff_wall": "Muret en pierre de tuf", + "item.middle-earth.cobbled_zigilaban": "Pierre de Zigil'Aban", + "item.middle-earth.cobbled_zigilaban_slab": "Dalle en pierre de Zigil'Aban", + "item.middle-earth.cobbled_zigilaban_stairs": "Escalier en pierre de Zigil'Aban", + "item.middle-earth.cobbled_zigilaban_vertical_slab": "Dalle verticale en pierre de Zigil'Aban", + "item.middle-earth.cobbled_zigilaban_wall": "Muret en pierre de Zigil'Aban", + "item.middle-earth.cobblestone_vertical_slab": "Dalle verticale en pierre", + "item.middle-earth.cobbly_ashen_dirt": "Terre cendrée caillouteuse", + "item.middle-earth.cobbly_ashen_dirt_slab": "Dalle de terre cendrée caillouteuse", + "item.middle-earth.cobbly_ashen_dirt_stairs": "Escaliers de terre cendrée caillouteuse", + "item.middle-earth.cobbly_dirt": "Terre caillouteuse", + "item.middle-earth.cobbly_dirt_slab": "Dalle de terre caillouteuse", + "item.middle-earth.cobbly_dirt_stairs": "Escaliers de terre caillouteuse", + "item.middle-earth.cooked_horse": "Cheval cuit", + "item.middle-earth.cooked_meat_skewer": "Brochette de viande rôtie", + "item.middle-earth.cooked_vegetable_skewer": "Brochette de légumes rôtie", + "item.middle-earth.copper_bars": "Barreaux en cuivre", + "item.middle-earth.copper_coin": "Pièce de cuivre", + "item.middle-earth.copper_smithing_hammer": "Marteau de forge en cuivre", + "item.middle-earth.corner_cobweb": "Toile de coin", + "item.middle-earth.corrupted_moss": "Mousse corrompue", + "item.middle-earth.corrupted_moss_block": "Bloc de mousse corrompue", + "item.middle-earth.corrupted_moss_carpet": "Tapis de mousse corrompue", + "item.middle-earth.cracked_andesite_bricks": "Briques d'andésite craquelées", + "item.middle-earth.cracked_andesite_pillar": "Pilier en andésite craquelée", + "item.middle-earth.cracked_andesite_tiles": "Andésite carrelée craquelée", + "item.middle-earth.cracked_basalt_bricks": "Briques de basalte craquelées", + "item.middle-earth.cracked_basalt_pillar": "Pilier en basalte craquelé", + "item.middle-earth.cracked_basalt_tiles": "Basalte carrelé craquelé", + "item.middle-earth.cracked_blackstone_pillar": "Pilier en pierre noire craquelée", + "item.middle-earth.cracked_blackstone_tiles": "Roche noire carrelée craquelée", + "item.middle-earth.cracked_blue_tuff_bricks": "Briques en tuf bleu craquelées", + "item.middle-earth.cracked_blue_tuff_pillar": "Pilier en tuf bleu craquelé", + "item.middle-earth.cracked_blue_tuff_tiles": "Tuf bleu carrelé craquelé", + "item.middle-earth.cracked_calcite_bricks": "Briques en calcite craquelées", + "item.middle-earth.cracked_calcite_pillar": "Pilier en calcite craquelée", + "item.middle-earth.cracked_calcite_tiles": "Calcite carrelée craquelée", + "item.middle-earth.cracked_deepslate_pillar": "Pilier d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_diorite_bricks": "Briques de diorite craquelées", + "item.middle-earth.cracked_diorite_pillar": "Pilier en diorite craquelée", + "item.middle-earth.cracked_diorite_tiles": "Diorite carrelée craquelée", + "item.middle-earth.cracked_dolomite_bricks": "Briques de dolomite craquelées", + "item.middle-earth.cracked_dolomite_pillar": "Pilier en dolomite craquelée", + "item.middle-earth.cracked_dolomite_tiles": "Dolomite carrelée craquelée", + "item.middle-earth.cracked_gabbro_bricks": "Briques en gabbro craquelées", + "item.middle-earth.cracked_gabbro_pillar": "Pilier en gabbro craquelé", + "item.middle-earth.cracked_gabbro_tiles": "Gabbro carrelé craquelé", + "item.middle-earth.cracked_galonn_bricks": "Briques de Galonn craquelées", + "item.middle-earth.cracked_galonn_pillar": "Pilier en Galonn craquelée", + "item.middle-earth.cracked_galonn_tiles": "Galonn carrelée craquelée", + "item.middle-earth.cracked_gneiss_bricks": "Briques en gneiss craquelées", + "item.middle-earth.cracked_gneiss_pillar": "Pilier en gneiss craquelé", + "item.middle-earth.cracked_gneiss_tiles": "Gneiss carrelé craquelé", + "item.middle-earth.cracked_granite_bricks": "Briques de granite craquelées", + "item.middle-earth.cracked_granite_pillar": "Pilier en granite craquelé", + "item.middle-earth.cracked_granite_tiles": "Granite carrelé craquelé", + "item.middle-earth.cracked_green_tuff_bricks": "Briques en tuf vert craquelées", + "item.middle-earth.cracked_green_tuff_pillar": "Pilier en tuf vert craquelé", + "item.middle-earth.cracked_green_tuff_tiles": "Tuf vert carrelé craquelé", + "item.middle-earth.cracked_hematite_bricks": "Briques d'hématite craquelées", + "item.middle-earth.cracked_hematite_pillar": "Pilier en hématite craquelée", + "item.middle-earth.cracked_hematite_tiles": "Hématite carrelée craquelée", + "item.middle-earth.cracked_ironstone_bricks": "Briques de pierre de fer craquelées", + "item.middle-earth.cracked_ironstone_pillar": "Pilier en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_tiles": "Pierre de fer carrelée craquelée", + "item.middle-earth.cracked_izheraban_bricks": "Briques d'Izhêr'Aban craquelées", + "item.middle-earth.cracked_izheraban_pillar": "Pilier en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_tiles": "Izhêr'Aban carrelée craquelée", + "item.middle-earth.cracked_jadeite_bricks": "Briques de jadéite craquelées", + "item.middle-earth.cracked_jadeite_pillar": "Pilier en jadéite craquelée", + "item.middle-earth.cracked_jadeite_tiles": "Jadéite carrelée craquelée", + "item.middle-earth.cracked_limestone_bricks": "Briques de calcaire craquelées", + "item.middle-earth.cracked_limestone_pillar": "Pilier en calcaire craquelé", + "item.middle-earth.cracked_limestone_tiles": "Calcaire carrelé craquelé", + "item.middle-earth.cracked_medgon_bricks": "Briques de Medgon craquelées", + "item.middle-earth.cracked_medgon_pillar": "Pilier en Medgon craquelée", + "item.middle-earth.cracked_medgon_tiles": "Medgon carrelée craquelée", + "item.middle-earth.cracked_mixed_stones": "Pierres mixtes craquelées", + "item.middle-earth.cracked_mixed_stones_slab": "Dalle en pierres mixtes craquelées", + "item.middle-earth.cracked_mixed_stones_stairs": "Escalier en pierres mixtes craquelées", + "item.middle-earth.cracked_mixed_stones_vertical_slab": "Dalle verticale en pierres mixtes craquelées", + "item.middle-earth.cracked_mixed_stones_wall": "Muret en pierres mixtes craquelées", + "item.middle-earth.cracked_nurgon_bricks": "Briques de Núrgon craquelées", + "item.middle-earth.cracked_nurgon_pillar": "Pilier en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_tiles": "Núrgon carrelée craquelée", + "item.middle-earth.cracked_polished_andesite": "Andésite polie craquelée", + "item.middle-earth.cracked_polished_andesite_slab": "Dalle en andésite polie craquelée", + "item.middle-earth.cracked_polished_andesite_stairs": "Escaliers en andésite polie craquelée", + "item.middle-earth.cracked_polished_andesite_vertical_slab": "Dalle verticale en andésite polie craquelée", + "item.middle-earth.cracked_polished_andesite_wall": "Muret en andésite polie craquelée", + "item.middle-earth.cracked_polished_basalt": "Basalte poli craquelé", + "item.middle-earth.cracked_polished_basalt_slab": "Dalle en basalte poli craquelé", + "item.middle-earth.cracked_polished_basalt_stairs": "Escaliers en basalte poli craquelé", + "item.middle-earth.cracked_polished_basalt_vertical_slab": "Dalle verticale en basalte poli craquelé", + "item.middle-earth.cracked_polished_basalt_wall": "Muret en basalte poli craquelé", + "item.middle-earth.cracked_polished_blackstone": "Pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_slab": "Dalle en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_stairs": "Escalier en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_wall": "Muret en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blue_tuff": "Tuf bleu poli craquelé", + "item.middle-earth.cracked_polished_blue_tuff_slab": "Dalle en tuf bleu poli craquelé", + "item.middle-earth.cracked_polished_blue_tuff_stairs": "Escaliers en tuf bleu poli craquelé", + "item.middle-earth.cracked_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli craquelé", + "item.middle-earth.cracked_polished_blue_tuff_wall": "Muret en tuf bleu poli craquelé", + "item.middle-earth.cracked_polished_calcite": "Calcite polie craquelée", + "item.middle-earth.cracked_polished_calcite_slab": "Dalle en calcite polie craquelée", + "item.middle-earth.cracked_polished_calcite_stairs": "Escaliers en calcite polie craquelée", + "item.middle-earth.cracked_polished_calcite_vertical_slab": "Dalle verticale en calcite polie craquelée", + "item.middle-earth.cracked_polished_calcite_wall": "Muret en calcite polie craquelée", + "item.middle-earth.cracked_polished_deepslate": "Ardoise des abîmes polie craquelée", + "item.middle-earth.cracked_polished_deepslate_slab": "Dalle en ardoise des abîmes polie craquelée", + "item.middle-earth.cracked_polished_deepslate_stairs": "Escaliers en ardoise des abîmes polie craquelée", + "item.middle-earth.cracked_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie craquelée", + "item.middle-earth.cracked_polished_deepslate_wall": "Muret en ardoise des abîmes polie craquelée", + "item.middle-earth.cracked_polished_diorite": "Diorite polie craquelée", + "item.middle-earth.cracked_polished_diorite_slab": "Dalle en diorite polie craquelée", + "item.middle-earth.cracked_polished_diorite_stairs": "Escaliers en diorite polie craquelée", + "item.middle-earth.cracked_polished_diorite_vertical_slab": "Dalle verticale en diorite polie craquelée", + "item.middle-earth.cracked_polished_diorite_wall": "Muret en diorite polie craquelée", + "item.middle-earth.cracked_polished_dolomite": "Dolomite polie craquelée", + "item.middle-earth.cracked_polished_dolomite_slab": "Dalle en dolomite polie craquelée", + "item.middle-earth.cracked_polished_dolomite_stairs": "Escaliers en dolomite polie craquelée", + "item.middle-earth.cracked_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie craquelée", + "item.middle-earth.cracked_polished_dolomite_wall": "Muret en dolomite polie craquelée", + "item.middle-earth.cracked_polished_gabbro": "Gabbro poli craquelé", + "item.middle-earth.cracked_polished_gabbro_slab": "Dalle en gabbro poli craquelé", + "item.middle-earth.cracked_polished_gabbro_stairs": "Escalier en gabbro poli craquelé", + "item.middle-earth.cracked_polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli craquelé", + "item.middle-earth.cracked_polished_gabbro_wall": "Muret en gabbro poli craquelé", + "item.middle-earth.cracked_polished_galonn": "Galonn polie craquelée", + "item.middle-earth.cracked_polished_galonn_slab": "Dalle en Galonn polie craquelée", + "item.middle-earth.cracked_polished_galonn_stairs": "Escalier en Galonn polie craquelée", + "item.middle-earth.cracked_polished_galonn_vertical_slab": "Dalle verticale en Galonn polie craquelée", + "item.middle-earth.cracked_polished_galonn_wall": "Muret en Galonn polie craquelée", + "item.middle-earth.cracked_polished_gneiss": "Gneiss poli craquelé", + "item.middle-earth.cracked_polished_gneiss_slab": "Dalle en gneiss poli craquelé", + "item.middle-earth.cracked_polished_gneiss_stairs": "Escalier en gneiss poli craquelé", + "item.middle-earth.cracked_polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli craquelé", + "item.middle-earth.cracked_polished_gneiss_wall": "Muret en gneiss poli craquelé", + "item.middle-earth.cracked_polished_granite": "Granite poli craquelé", + "item.middle-earth.cracked_polished_granite_slab": "Dalle en granite poli craquelé", + "item.middle-earth.cracked_polished_granite_stairs": "Escaliers en granite poli craquelé", + "item.middle-earth.cracked_polished_granite_vertical_slab": "Dalle verticale en granite poli craquelé", + "item.middle-earth.cracked_polished_granite_wall": "Muret en granite poli craquelé", + "item.middle-earth.cracked_polished_green_tuff": "Tuf vert poli craquelé", + "item.middle-earth.cracked_polished_green_tuff_slab": "Dalle en tuf vert poli craquelé", + "item.middle-earth.cracked_polished_green_tuff_stairs": "Escaliers en tuf vert poli craquelé", + "item.middle-earth.cracked_polished_green_tuff_vertical_slab": "Dalle verticale en tuf vert poli craquelé", + "item.middle-earth.cracked_polished_green_tuff_wall": "Muret en tuf vert poli craquelé", + "item.middle-earth.cracked_polished_hematite": "Hématite polie craquelée", + "item.middle-earth.cracked_polished_hematite_slab": "Dalle en hématite polie craquelée", + "item.middle-earth.cracked_polished_hematite_stairs": "Escalier en hématite polie craquelée", + "item.middle-earth.cracked_polished_hematite_vertical_slab": "Dalle verticale en hématite polie craquelée", + "item.middle-earth.cracked_polished_hematite_wall": "Muret en hématite polie craquelée", + "item.middle-earth.cracked_polished_ironstone": "Pierre de fer polie craquelée", + "item.middle-earth.cracked_polished_ironstone_slab": "Dalle en pierre de fer polie craquelée", + "item.middle-earth.cracked_polished_ironstone_stairs": "Escalier en pierre de fer polie craquelée", + "item.middle-earth.cracked_polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie craquelée", + "item.middle-earth.cracked_polished_ironstone_wall": "Muret en pierre de fer polie craquelée", + "item.middle-earth.cracked_polished_izheraban": "Izhêr'Aban polie craquelée", + "item.middle-earth.cracked_polished_izheraban_slab": "Dalle en Izhêr'Aban polie craquelée", + "item.middle-earth.cracked_polished_izheraban_stairs": "Escalier en Izhêr'Aban polie craquelée", + "item.middle-earth.cracked_polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie craquelée", + "item.middle-earth.cracked_polished_izheraban_wall": "Muret en Izhêr'Aban polie craquelée", + "item.middle-earth.cracked_polished_jadeite": "Jadéite polie craquelée", + "item.middle-earth.cracked_polished_jadeite_slab": "Dalle en jadéite polie craquelée", + "item.middle-earth.cracked_polished_jadeite_stairs": "Escaliers en jadéite polie craquelée", + "item.middle-earth.cracked_polished_jadeite_vertical_slab": "Dalle verticale en jadéite polie craquelée", + "item.middle-earth.cracked_polished_jadeite_wall": "Muret en jadéite polie craquelée", + "item.middle-earth.cracked_polished_limestone": "Calcaire poli craquelé", + "item.middle-earth.cracked_polished_limestone_slab": "Dalle en calcaire poli craquelé", + "item.middle-earth.cracked_polished_limestone_stairs": "Escaliers en calcaire poli craquelé", + "item.middle-earth.cracked_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli craquelé", + "item.middle-earth.cracked_polished_limestone_wall": "Muret en calcaire poli craquelé", + "item.middle-earth.cracked_polished_medgon": "Medgon polie craquelée", + "item.middle-earth.cracked_polished_medgon_slab": "Dalle en Medgon polie craquelée", + "item.middle-earth.cracked_polished_medgon_stairs": "Escalier en Medgon polie craquelée", + "item.middle-earth.cracked_polished_medgon_vertical_slab": "Dalle verticale en Medgon polie craquelée", + "item.middle-earth.cracked_polished_medgon_wall": "Muret en Medgon polie craquelée", + "item.middle-earth.cracked_polished_nurgon": "Núrgon polie craquelée", + "item.middle-earth.cracked_polished_nurgon_slab": "Dalle en Núrgon polie craquelée", + "item.middle-earth.cracked_polished_nurgon_stairs": "Escalier en Núrgon polie craquelée", + "item.middle-earth.cracked_polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie craquelée", + "item.middle-earth.cracked_polished_nurgon_wall": "Muret en Núrgon polie craquelée", + "item.middle-earth.cracked_polished_pumice": "Pierre ponce polie craquelée", + "item.middle-earth.cracked_polished_pumice_slab": "Dalle en pierre ponce polie craquelée", + "item.middle-earth.cracked_polished_pumice_stairs": "Escalier en pierre ponce polie craquelée", + "item.middle-earth.cracked_polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie craquelée", + "item.middle-earth.cracked_polished_pumice_wall": "Muret en pierre ponce polie craquelée", + "item.middle-earth.cracked_polished_slate": "Ardoise polie craquelée", + "item.middle-earth.cracked_polished_slate_slab": "Dalle en ardoise polie craquelée", + "item.middle-earth.cracked_polished_slate_stairs": "Escalier en ardoise polie craquelée", + "item.middle-earth.cracked_polished_slate_vertical_slab": "Dalle verticale en ardoise polie craquelée", + "item.middle-earth.cracked_polished_slate_wall": "Muret en ardoise polie craquelée", + "item.middle-earth.cracked_polished_stone": "Roche polie craquelée", + "item.middle-earth.cracked_polished_stone_slab": "Dalle en roche polie craquelée", + "item.middle-earth.cracked_polished_stone_stairs": "Escalier en roche polie craquelée", + "item.middle-earth.cracked_polished_stone_vertical_slab": "Dalle verticale en roche polie craquelée", + "item.middle-earth.cracked_polished_stone_wall": "Muret en roche polie craquelée", + "item.middle-earth.cracked_polished_tuff": "Tuf poli craquelé", + "item.middle-earth.cracked_polished_tuff_slab": "Dalle en tuf poli craquelé", + "item.middle-earth.cracked_polished_tuff_stairs": "Escalier en tuf poli craquelé", + "item.middle-earth.cracked_polished_tuff_vertical_slab": "Dalle verticale en tuf poli craquelé", + "item.middle-earth.cracked_polished_tuff_wall": "Muret en tuf poli craquelé", + "item.middle-earth.cracked_polished_zigilaban": "Zigil'Aban polie craquelée", + "item.middle-earth.cracked_polished_zigilaban_slab": "Dalle en Zigil'Aban polie craquelée", + "item.middle-earth.cracked_polished_zigilaban_stairs": "Escalier en Zigil'Aban polie craquelée", + "item.middle-earth.cracked_polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie craquelée", + "item.middle-earth.cracked_polished_zigilaban_wall": "Muret en Zigil'Aban polie craquelée", + "item.middle-earth.cracked_pumice_bricks": "Briques en pierre ponce craquelées", + "item.middle-earth.cracked_pumice_pillar": "Pilier en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_tiles": "Pierre ponce carrelée craquelée", + "item.middle-earth.cracked_slate_bricks": "Briques en ardoise craquelées", + "item.middle-earth.cracked_slate_pillar": "Pilier en ardoise craquelée", + "item.middle-earth.cracked_slate_tiles": "Ardoise carrelée craquelée", + "item.middle-earth.cracked_smooth_andesite": "Andésite lisse craquelée", + "item.middle-earth.cracked_smooth_andesite_slab": "Dalle en andésite lisse craquelée", + "item.middle-earth.cracked_smooth_andesite_stairs": "Escalier en andésite lisse craquelée", + "item.middle-earth.cracked_smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse craquelée", + "item.middle-earth.cracked_smooth_andesite_wall": "Muret en andésite lisse craquelée", + "item.middle-earth.cracked_smooth_basalt": "Basalte lisse craquelé", + "item.middle-earth.cracked_smooth_basalt_slab": "Dalle en basalte lisse craquelé", + "item.middle-earth.cracked_smooth_basalt_stairs": "Escalier en basalte lisse craquelé", + "item.middle-earth.cracked_smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse craquelé", + "item.middle-earth.cracked_smooth_basalt_wall": "Muret en basalte lisse craquelé", + "item.middle-earth.cracked_smooth_blackstone": "Roche noire lisse craquelée", + "item.middle-earth.cracked_smooth_blackstone_slab": "Dalle en roche noire lisse craquelée", + "item.middle-earth.cracked_smooth_blackstone_stairs": "Escalier en roche noire lisse craquelée", + "item.middle-earth.cracked_smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse craquelée", + "item.middle-earth.cracked_smooth_blackstone_wall": "Muret en roche noire lisse craquelée", + "item.middle-earth.cracked_smooth_calcite": "Calcite lisse craquelée", + "item.middle-earth.cracked_smooth_calcite_slab": "Dalle en calcite lisse craquelée", + "item.middle-earth.cracked_smooth_calcite_stairs": "Escalier en calcite lisse craquelée", + "item.middle-earth.cracked_smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse craquelée", + "item.middle-earth.cracked_smooth_calcite_wall": "Muret en calcite lisse craquelée", + "item.middle-earth.cracked_smooth_deepslate": "Ardoise des abîmes lisse craquelée", + "item.middle-earth.cracked_smooth_deepslate_slab": "Dalle en ardoise des abîmes lisse craquelée", + "item.middle-earth.cracked_smooth_deepslate_stairs": "Escalier en ardoise des abîmes lisse craquelée", + "item.middle-earth.cracked_smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse craquelée", + "item.middle-earth.cracked_smooth_deepslate_wall": "Muret en ardoise des abîmes lisse craquelée", + "item.middle-earth.cracked_smooth_diorite": "Diorite lisse craquelée", + "item.middle-earth.cracked_smooth_diorite_slab": "Dalle en diorite lisse craquelée", + "item.middle-earth.cracked_smooth_diorite_stairs": "Escalier en diorite lisse craquelée", + "item.middle-earth.cracked_smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse craquelée", + "item.middle-earth.cracked_smooth_diorite_wall": "Muret en diorite lisse craquelée", + "item.middle-earth.cracked_smooth_dolomite": "Dolomite lisse craquelée", + "item.middle-earth.cracked_smooth_dolomite_slab": "Dalle en dolomite lisse craquelée", + "item.middle-earth.cracked_smooth_dolomite_stairs": "Escalier en dolomite lisse craquelée", + "item.middle-earth.cracked_smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse craquelée", + "item.middle-earth.cracked_smooth_dolomite_wall": "Muret en dolomite lisse craquelée", + "item.middle-earth.cracked_smooth_galonn": "Galonn lisse craquelée", + "item.middle-earth.cracked_smooth_galonn_slab": "Dalle en Galonn lisse craquelée", + "item.middle-earth.cracked_smooth_galonn_stairs": "Escalier en Galonn lisse craquelée", + "item.middle-earth.cracked_smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse craquelée", + "item.middle-earth.cracked_smooth_galonn_wall": "Muret en Galonn lisse craquelée", + "item.middle-earth.cracked_smooth_granite": "Granite lisse craquelé", + "item.middle-earth.cracked_smooth_granite_slab": "Dalle en granite lisse craquelé", + "item.middle-earth.cracked_smooth_granite_stairs": "Escalier en granite lisse craquelé", + "item.middle-earth.cracked_smooth_granite_vertical_slab": "Dalle verticale en granite lisse craquelé", + "item.middle-earth.cracked_smooth_granite_wall": "Muret en granite lisse craquelé", + "item.middle-earth.cracked_smooth_green_tuff": "Tuf vert lisse craquelé", + "item.middle-earth.cracked_smooth_green_tuff_slab": "Dalle en tuf vert lisse craquelé", + "item.middle-earth.cracked_smooth_green_tuff_stairs": "Escaliers en tuf vert lisse craquelé", + "item.middle-earth.cracked_smooth_green_tuff_vertical_slab": "Dalle verticale en tuf vert lisse craquelé", + "item.middle-earth.cracked_smooth_green_tuff_wall": "Muret en tuf vert lisse craquelé", + "item.middle-earth.cracked_smooth_izheraban": "Izhêr'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_izheraban_slab": "Dalle en Izhêr'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_izheraban_stairs": "Escalier en Izhêr'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_izheraban_wall": "Muret en Izhêr'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_limestone": "Calcaire lisse craquelé", + "item.middle-earth.cracked_smooth_limestone_slab": "Dalle en calcaire lisse craquelé", + "item.middle-earth.cracked_smooth_limestone_stairs": "Escalier en calcaire lisse craquelé", + "item.middle-earth.cracked_smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse craquelé", + "item.middle-earth.cracked_smooth_limestone_wall": "Muret en calcaire lisse craquelé", + "item.middle-earth.cracked_smooth_medgon": "Medgon lisse craquelée", + "item.middle-earth.cracked_smooth_medgon_slab": "Dalle en Medgon lisse craquelée", + "item.middle-earth.cracked_smooth_medgon_stairs": "Escalier en Medgon lisse craquelée", + "item.middle-earth.cracked_smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse craquelée", + "item.middle-earth.cracked_smooth_medgon_wall": "Muret en Medgon lisse craquelée", + "item.middle-earth.cracked_smooth_stone": "Roche lisse craquelée", + "item.middle-earth.cracked_smooth_stone_slab": "Dalle en roche lisse craquelée", + "item.middle-earth.cracked_smooth_stone_stairs": "Escalier en roche lisse craquelée", + "item.middle-earth.cracked_smooth_stone_vertical_slab": "Dalle verticale de roche lisse craquelée", + "item.middle-earth.cracked_smooth_stone_wall": "Muret en roche lisse craquelée", + "item.middle-earth.cracked_smooth_tuff": "Tuf lisse craquelé", + "item.middle-earth.cracked_smooth_tuff_slab": "Dalle en tuf lisse craquelé", + "item.middle-earth.cracked_smooth_tuff_stairs": "Escalier en tuf lisse craquelé", + "item.middle-earth.cracked_smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse craquelé", + "item.middle-earth.cracked_smooth_tuff_wall": "Muret en tuf lisse craquelé", + "item.middle-earth.cracked_stone_pillar": "Pilier en roche craquelée", + "item.middle-earth.cracked_stone_tiles": "Roche carrelée craquelée", + "item.middle-earth.cracked_tuff_bricks": "Briques en tuf craquelées", + "item.middle-earth.cracked_tuff_pillar": "Pilier en tuf craquelé", + "item.middle-earth.cracked_tuff_tiles": "Tuf carrelé craquelé", + "item.middle-earth.cracked_zigilaban_bricks": "Briques de Zigil'Aban craquelées", + "item.middle-earth.cracked_zigilaban_pillar": "Pilier en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_tiles": "Zigil'Aban carrelée craquelée", + "item.middle-earth.crimson_bench": "Banc carmin", + "item.middle-earth.crimson_chair": "Chaise carmin", + "item.middle-earth.crimson_ladder": "Échelle carmin", + "item.middle-earth.crimson_shingles": "Bardeaux carmin", + "item.middle-earth.crimson_shingles_slab": "Dalle en bardeaux carmin", + "item.middle-earth.crimson_shingles_stairs": "Escaliers en bardeaux carmin", + "item.middle-earth.crimson_shingles_vertical_slab": "Dalle verticale en bardeaux carmin", + "item.middle-earth.crimson_shingles_wall": "Muret en bardeaux carmin", + "item.middle-earth.crimson_stool": "Tabouret carmin", + "item.middle-earth.crimson_table": "Table carmin", + "item.middle-earth.crimson_vertical_slab": "Dalle verticale carmin", + "item.middle-earth.crude_axe": "Hache grossière", + "item.middle-earth.crude_block": "Bloc grossier", + "item.middle-earth.crude_dagger": "Dague grossière", + "item.middle-earth.crude_falchion": "Fauchon grossier", + "item.middle-earth.crude_hoe": "Houe grossière", + "item.middle-earth.crude_ingot": "Lingot grossier", + "item.middle-earth.crude_longblade": "Lame longue grossière", + "item.middle-earth.crude_nugget": "Pépite grossière", + "item.middle-earth.crude_pickaxe": "Pioche grossière", + "item.middle-earth.crude_rod": "Barre grossière", + "item.middle-earth.crude_shovel": "Pelle grossière", + "item.middle-earth.crude_spear": "Lance grossière", + "item.middle-earth.crystal_lamp": "Lampe en cristal", + "item.middle-earth.cucumber": "Concombre", + "item.middle-earth.cucumber_seeds": "Graines de concombre", + "item.middle-earth.cut_copper_vertical_slab": "Dalle verticale en cuivre taillé", + "item.middle-earth.cut_copper_wall": "Muret en cuivre taillé", + "item.middle-earth.cut_lead": "Plomb taillé", + "item.middle-earth.cut_lead_slab": "Dalle en plomb taillé", + "item.middle-earth.cut_lead_stairs": "Escaliers en plomb taillé", + "item.middle-earth.cut_lead_vertical_slab": "Dalle verticale en plomb taillé", + "item.middle-earth.cut_red_sandstone_vertical_slab": "Dalle verticale en grès rouge sculpté", + "item.middle-earth.cut_sandstone_vertical_slab": "Dalle verticale en grès sculpté", + "item.middle-earth.cut_silver": "Argent taillé", + "item.middle-earth.cut_silver_slab": "Dalle en argent taillé", + "item.middle-earth.cut_silver_stairs": "Escaliers en argent taillé", + "item.middle-earth.cut_silver_vertical_slab": "Dalle verticale en argent taillé", + "item.middle-earth.cuthann": "Cûthann", + "item.middle-earth.cyan_clay_tiling": "Tuile d'argile cyan", + "item.middle-earth.cyan_clay_tiling_slab": "Dalle en tuile d'argile cyan", + "item.middle-earth.cyan_clay_tiling_stairs": "Escaliers en tuile d'argile cyan", + "item.middle-earth.cyan_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile cyan", + "item.middle-earth.cyan_clay_tiling_wall": "Muret en tuile d'argile cyan", + "item.middle-earth.cyan_roof_tiles": "Tuiles de toit cyan", + "item.middle-earth.cyan_stained_lead_glass": "Verre plombé cyan", + "item.middle-earth.cyan_stained_lead_glass_pane": "Vitre plombée cyan", + "item.middle-earth.cyan_wool_slab": "Dalle en laine cyan", + "item.middle-earth.cyan_wool_stairs": "Escaliers en laine cyan", + "item.middle-earth.cyan_wool_vertical_slab": "Dalle verticale en laine cyan", + "item.middle-earth.dagamarth": "Dagamarth", + "item.middle-earth.dalish_arming_coat_black_fur": "Manteau matelassé du Val en fourrure noire", + "item.middle-earth.dalish_arming_coat_brown_fur": "Manteau matelassé du Val en fourrure brune", + "item.middle-earth.dalish_arming_coat_tan_fur": "Manteau matelassé du Val en fourrure fauve", + "item.middle-earth.dalish_axe": "Hache du Val", + "item.middle-earth.dalish_barding_braced_shield": "Bouclier bardain à renforts du Val", + "item.middle-earth.dalish_barding_heavy_shield": "Bouclier lourd bardain du Val", + "item.middle-earth.dalish_barding_oval_shield": "Bouclier ovale bardain du Val", + "item.middle-earth.dalish_blue_braced_shield": "Bouclier bleu à renforts du Val", + "item.middle-earth.dalish_blue_oval_shield": "Bouclier ovale bleu du Val", + "item.middle-earth.dalish_boots": "Bottes du Val", + "item.middle-earth.dalish_burgonet": "Bourguignotte du Val", + "item.middle-earth.dalish_dagger": "Dague du Val", + "item.middle-earth.dalish_heavy_shield": "Bouclier lourd du Val", + "item.middle-earth.dalish_helmet": "Casque du Val", + "item.middle-earth.dalish_helmet_black_fur": "Casque du Val en fourrure noire", + "item.middle-earth.dalish_helmet_brown_fur": "Casque du Val en fourrure brune", + "item.middle-earth.dalish_helmet_tan_fur": "Casque du Val en fourrure fauve", + "item.middle-earth.dalish_heyday_arming_coat": "Manteau matelassé du Val florissant", + "item.middle-earth.dalish_heyday_axe": "Hache du Val florissant", + "item.middle-earth.dalish_heyday_boots": "Bottes du Val florissant", + "item.middle-earth.dalish_heyday_chestplate": "Plastron du Val florissant", + "item.middle-earth.dalish_heyday_cloak": "Manteau du Val florissant", + "item.middle-earth.dalish_heyday_dagger": "Dague du Val florissant", + "item.middle-earth.dalish_heyday_helmet": "Casque du Val florissant", + "item.middle-earth.dalish_heyday_longbow": "Arc long du Val florissant", + "item.middle-earth.dalish_heyday_longsword": "Épée longue du Val florissant", + "item.middle-earth.dalish_heyday_mail_coat": "Cotte de maille du Val florissant", + "item.middle-earth.dalish_heyday_round_shield": "Bouclier rond du Val florissant", + "item.middle-earth.dalish_heyday_scimitar": "Cimeterre du Val florissant", + "item.middle-earth.dalish_heyday_spear": "Lance du Val florissant", + "item.middle-earth.dalish_heyday_sword": "Épée du Val florissant", + "item.middle-earth.dalish_horse_armor": "Armure de cheval du Val", + "item.middle-earth.dalish_longbow": "Arc long du Val", + "item.middle-earth.dalish_longsword": "Épée longue du Val", + "item.middle-earth.dalish_mail_coat": "Cotte de maille du Val", + "item.middle-earth.dalish_mail_hauberk": "Haubert de maille du Val", + "item.middle-earth.dalish_noble_axe": "Hache noble du Val", + "item.middle-earth.dalish_noble_dagger": "Dague noble du Val", + "item.middle-earth.dalish_noble_longbow": "Arc long noble du Val", + "item.middle-earth.dalish_noble_longsword": "Épée longue noble du Val", + "item.middle-earth.dalish_noble_spear": "Lance noble du Val", + "item.middle-earth.dalish_noble_sword": "Épée noble du Val", + "item.middle-earth.dalish_royal_heavy_shield": "Bouclier lourd royal du Val", + "item.middle-earth.dalish_royal_round_shield": "Bouclier rond royal du Val", + "item.middle-earth.dalish_scale_hauberk": "Haubert à écailles du Val", + "item.middle-earth.dalish_spear": "Lance du Val", + "item.middle-earth.dalish_sword": "Épée du Val", + "item.middle-earth.dark_blue_cushion": "Coussin bleu foncé", + "item.middle-earth.dark_blue_roof_tiles": "Tuiles de toit bleu foncé", + "item.middle-earth.dark_brown_cushion": "Coussin marron foncé", + "item.middle-earth.dark_brown_roof_tiles": "Tuiles de toit marron foncé", + "item.middle-earth.dark_cyan_roof_tiles": "Tuiles de toit cyan foncé", + "item.middle-earth.dark_daub": "Torchis sombre", + "item.middle-earth.dark_daub_slab": "Dalle en torchis sombre", + "item.middle-earth.dark_daub_stairs": "Escalier en torchis sombre", + "item.middle-earth.dark_daub_vertical_slab": "Dalle verticale en torchis sombre", + "item.middle-earth.dark_daub_wall": "Muret en torchis sombre", + "item.middle-earth.dark_gray_roof_tiles": "Tuiles de toit gris foncé", + "item.middle-earth.dark_green_cushion": "Coussin vert foncé", + "item.middle-earth.dark_green_roof_tiles": "Tuiles de toit vert foncé", + "item.middle-earth.dark_mushroom_bench": "Banc en champignon noir", + "item.middle-earth.dark_mushroom_button": "Bouton en champignon noir", + "item.middle-earth.dark_mushroom_chair": "Chaise en champignon noir", + "item.middle-earth.dark_mushroom_door": "Porte en champignon noir", + "item.middle-earth.dark_mushroom_fence": "Barrière en champignon noir", + "item.middle-earth.dark_mushroom_fence_gate": "Portillon en champignon noir", + "item.middle-earth.dark_mushroom_ladder": "Échelle en champignon noir", + "item.middle-earth.dark_mushroom_planks": "Planches de champignon noir", + "item.middle-earth.dark_mushroom_pressure_plate": "Plaque de pression en champignon noir", + "item.middle-earth.dark_mushroom_shingles": "Bardeaux en champignon noir", + "item.middle-earth.dark_mushroom_shingles_slab": "Dalle en bardeaux de champignon noir", + "item.middle-earth.dark_mushroom_shingles_stairs": "Escaliers en bardeaux de champignon noir", + "item.middle-earth.dark_mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon noir", + "item.middle-earth.dark_mushroom_shingles_wall": "Muret en bardeaux de champignon noir", + "item.middle-earth.dark_mushroom_slab": "Dalle en champignon noir", + "item.middle-earth.dark_mushroom_stairs": "Escaliers en champignon noir", + "item.middle-earth.dark_mushroom_stem": "Tige de champignon noir", + "item.middle-earth.dark_mushroom_stem_fence": "Barrière en tige de champignon noir", + "item.middle-earth.dark_mushroom_stem_wall": "Muret en tige de champignon noir", + "item.middle-earth.dark_mushroom_stool": "Tabouret en champignon noir", + "item.middle-earth.dark_mushroom_table": "Table en champignon noir", + "item.middle-earth.dark_mushroom_trapdoor": "Trappe en champignon noir", + "item.middle-earth.dark_mushroom_vertical_slab": "Dalle verticale en champignon noir", + "item.middle-earth.dark_oak_bench": "Banc en chêne noir", + "item.middle-earth.dark_oak_chair": "Chaise en chêne noir", + "item.middle-earth.dark_oak_ladder": "Échelle en chêne noir", + "item.middle-earth.dark_oak_shingles": "Bardeaux de chêne noir", + "item.middle-earth.dark_oak_shingles_slab": "Dalle en bardeaux de chêne noir", + "item.middle-earth.dark_oak_shingles_stairs": "Escaliers en bardeaux de chêne noir", + "item.middle-earth.dark_oak_shingles_vertical_slab": "Dalle verticale en bardeaux de chêne noir", + "item.middle-earth.dark_oak_shingles_wall": "Muret en bardeaux de chêne noir", + "item.middle-earth.dark_oak_stool": "Tabouret en chêne noir", + "item.middle-earth.dark_oak_table": "Table en chêne noir", + "item.middle-earth.dark_oak_vertical_slab": "Dalle verticale en chêne noir", + "item.middle-earth.dark_oak_wood_fence": "Barrière en bois de chêne noir", + "item.middle-earth.dark_oak_wood_slab": "Dalle en bois de chêne noir", + "item.middle-earth.dark_oak_wood_stairs": "Escalier en bois de chêne noir", + "item.middle-earth.dark_oak_wood_vertical_slab": "Dalle verticale en bois de chêne noir", + "item.middle-earth.dark_oak_wood_wall": "Muret en bois de chêne noir", + "item.middle-earth.dark_prismarine_vertical_slab": "Dalle verticale en prismarine sombre", + "item.middle-earth.dark_red_cushion": "Coussin rouge foncé", + "item.middle-earth.dark_red_roof_tiles": "Tuiles de toit rouge foncé", + "item.middle-earth.dark_wattle_and_dark_daub": "Clayonnage sombre et torchis sombre", + "item.middle-earth.dark_wattle_and_dark_daub_cross": "Clayonnage sombre et torchis sombre en croix", + "item.middle-earth.dark_wattle_and_dark_daub_diamond": "Clayonnage sombre et torchis sombre en losange", + "item.middle-earth.dark_wattle_and_dark_daub_left": "Clayonnage sombre et torchis sombre à gauche", + "item.middle-earth.dark_wattle_and_dark_daub_pillar": "Pilier de clayonnage sombre et torchis sombre", + "item.middle-earth.dark_wattle_and_dark_daub_right": "Clayonnage sombre et torchis sombre à droite", + "item.middle-earth.dark_wattle_framed_window": "Fenêtre à clayonnage sombre", + "item.middle-earth.dark_wattle_framed_window_pane": "Fenêtre plate à clayonnage sombre", + "item.middle-earth.dark_wattle_trapdoor": "Trappe en clayonnage sombre", + "item.middle-earth.dark_yellow_roof_tiles": "Tuiles de toit jaune foncé", + "item.middle-earth.dead_heather": "Bruyère morte", + "item.middle-earth.dead_rushes": "Joncs morts", + "item.middle-earth.deep_firecap": "Champi-feu des profondeurs", + "item.middle-earth.deep_firecap_block": "Bloc de champi-feu des profondeurs", + "item.middle-earth.deep_firecap_tiller": "Talle de champi-feu des profondeurs", + "item.middle-earth.deepslate_brick_vertical_slab": "Dalle verticale en ardoise des abîmes taillée", + "item.middle-earth.deepslate_brickwork": "Maçonnerie en ardoise des abîmes", + "item.middle-earth.deepslate_brickwork_slab": "Dalle de maçonnerie en ardoise des abîmes", + "item.middle-earth.deepslate_brickwork_stairs": "Escalier en maçonnerie d'ardoise des abîmes", + "item.middle-earth.deepslate_brickwork_vertical_slab": "Dalle verticale de maçonnerie en ardoise des abîmes", + "item.middle-earth.deepslate_brickwork_wall": "Muret en maçonnerie d'ardoise des abîmes", + "item.middle-earth.deepslate_button": "Bouton en ardoise des abîmes", + "item.middle-earth.deepslate_chair": "Chaise en ardoise des abîmes", + "item.middle-earth.deepslate_lead_ore": "Minerais de plomb des abîmes", + "item.middle-earth.deepslate_pillar": "Pilier d'ardoise des abîmes", + "item.middle-earth.deepslate_pressure_plate": "Plaque de pression en ardoise des abîmes", + "item.middle-earth.deepslate_rocks": "Éboulis d'ardoise des abîmes", + "item.middle-earth.deepslate_stool": "Tabouret en ardoise des abîmes", + "item.middle-earth.deepslate_table": "Table en ardoise des abîmes", + "item.middle-earth.deepslate_tile_vertical_slab": "Dalle verticale en ardoise des abîmes carrelée", + "item.middle-earth.deepslate_tin_ore": "Minerais d'étain des abîmes", + "item.middle-earth.deepslate_trapdoor": "Trappe en ardoise des abîmes", + "item.middle-earth.diamond_dagger": "Dague en diamant", + "item.middle-earth.diamond_spear": "Lance en diamant", + "item.middle-earth.diorite_bricks": "Briques de diorite", + "item.middle-earth.diorite_brickwork": "Maçonnerie en diorite", + "item.middle-earth.diorite_brickwork_slab": "Dalle de maçonnerie en diorite", + "item.middle-earth.diorite_brickwork_stairs": "Escalier en maçonnerie de diorite", + "item.middle-earth.diorite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en diorite", + "item.middle-earth.diorite_brickwork_wall": "Muret en maçonnerie de diorite", + "item.middle-earth.diorite_chair": "Chaise en diorite", + "item.middle-earth.diorite_pillar": "Pilier en diorite", + "item.middle-earth.diorite_rocks": "Éboulis de diorite", + "item.middle-earth.diorite_stool": "Tabouret en diorite", + "item.middle-earth.diorite_table": "Table en diorite", + "item.middle-earth.diorite_tiles": "Diorite carrelée", + "item.middle-earth.diorite_trapdoor": "Trappe en diorite", + "item.middle-earth.diorite_vertical_slab": "Dalle verticale en diorite", + "item.middle-earth.dirt_slab": "Dalle de terre", + "item.middle-earth.dirt_stairs": "Escaliers de terre", + "item.middle-earth.dirty_bone": "Os sale", + "item.middle-earth.dirty_roots": "Racines sales", + "item.middle-earth.dirty_roots_slab": "Dalle de racines sales", + "item.middle-earth.dirty_roots_stairs": "Escaliers de racines sales", + "item.middle-earth.dolomite": "Dolomite", + "item.middle-earth.dolomite_bricks": "Briques en dolomite", + "item.middle-earth.dolomite_brickwork": "Maçonnerie en dolomite", + "item.middle-earth.dolomite_brickwork_slab": "Dalle de maçonnerie en dolomite", + "item.middle-earth.dolomite_brickwork_stairs": "Escalier en maçonnerie de dolomite", + "item.middle-earth.dolomite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en dolomite", + "item.middle-earth.dolomite_brickwork_wall": "Muret en maçonnerie de dolomite", + "item.middle-earth.dolomite_button": "Bouton en dolomite", + "item.middle-earth.dolomite_chair": "Chaise en dolomite", + "item.middle-earth.dolomite_pillar": "Pilier en dolomite", + "item.middle-earth.dolomite_pressure_plate": "Plaque de pression en dolomite", + "item.middle-earth.dolomite_rocks": "Éboulis de dolomite", + "item.middle-earth.dolomite_slab": "Dalle en dolomite", + "item.middle-earth.dolomite_stairs": "Escaliers en dolomite", + "item.middle-earth.dolomite_stool": "Tabouret en dolomite", + "item.middle-earth.dolomite_table": "Table en dolomite", + "item.middle-earth.dolomite_tiles": "Dolomite carrelée", + "item.middle-earth.dolomite_trapdoor": "Trappe en dolomite", + "item.middle-earth.dolomite_vertical_slab": "Dalle verticale en dolomite", + "item.middle-earth.dolomite_wall": "Muret en dolomite", + "item.middle-earth.dragon_banner_pattern": "Motif de bannière au dragon", + "item.middle-earth.dragon_banner_pattern.desc": "Un grand dragon", + "item.middle-earth.dried_pipeweed": "Herbe à pipe séchée", + "item.middle-earth.drooping_icicles": "Glaçons tombants", + "item.middle-earth.dry_dirt": "Terre sèche", + "item.middle-earth.dry_dirt_slab": "Dalle de terre sèche", + "item.middle-earth.dry_dirt_stairs": "Escaliers de terre sèche", + "item.middle-earth.dry_growth": "Pousse sèche", + "item.middle-earth.dry_heather": "Bruyère sèche", + "item.middle-earth.dry_larch_leaves": "Feuilles de mélèze sèches", + "item.middle-earth.dry_pine_leaves": "Feuilles de pin sèches", + "item.middle-earth.duckweed": "Lentille d'eau", + "item.middle-earth.dwarf_crown_banner_pattern": "Motif de bannière à la couronne naine", + "item.middle-earth.dwarf_crown_banner_pattern.desc": "Icônes de couronne naine", + "item.middle-earth.dwarven_boots": "Bottes naines", + "item.middle-earth.dwarven_gambeson": "Gambison nain", + "item.middle-earth.dwarven_ground_book": "Livre nain au sol", + "item.middle-earth.dwarven_key": "Clé naine", + "item.middle-earth.dwarven_lantern": "Lanterne naine", + "item.middle-earth.dwarven_mail_chausses": "Chausses de maille naines", + "item.middle-earth.dwarven_mail_coat": "Cotte de maille naine", + "item.middle-earth.dwarven_mail_coif": "Coiffe de maille naine", + "item.middle-earth.dwarven_mail_hauberk": "Haubert de maille nain", + "item.middle-earth.dwarven_miner_gambeson": "Gambison de mineur nain", + "item.middle-earth.dwarven_miner_helmet": "Casque de mineur nain", + "item.middle-earth.dwarven_noble_smithing_hammer": "Marteau de forge nain noble", + "item.middle-earth.dwarven_reinforced_boots": "Bottes renforcées naines", + "item.middle-earth.dwarven_scale_coat": "Cotte à écailles naine", + "item.middle-earth.dwarven_scale_hauberk": "Haubert à écailles nain", + "item.middle-earth.dwarven_smithing_hammer": "Marteau de forge nain", + "item.middle-earth.dwarven_treated_anvil": "Enclume naine traitée", + "item.middle-earth.dying_grass": "Herbe mourante", + "item.middle-earth.edhel_steel_axe": "Hache en acier d'Edhel", + "item.middle-earth.edhel_steel_block": "Bloc d'acier d'Edhel", + "item.middle-earth.edhel_steel_hoe": "Houe en acier d'Edhel", + "item.middle-earth.edhel_steel_ingot": "Lingot d'acier d'Edhel", + "item.middle-earth.edhel_steel_nugget": "Pépite d'acier d'Edhel", + "item.middle-earth.edhel_steel_pickaxe": "Pioche en acier d'Edhel", + "item.middle-earth.edhel_steel_shovel": "Pelle en acier d'Edhel", + "item.middle-earth.edhel_steel_spear": "Lance en acier d'Edhel", + "item.middle-earth.edhel_steel_sword": "Épée en acier d'Edhel", + "item.middle-earth.elanor": "Elanor", + "item.middle-earth.elven_arming_coat": "Manteau matelassé elfique", + "item.middle-earth.elven_arming_skirt": "Jupe matelassée elfique", + "item.middle-earth.elven_boots": "Bottes elfiques", + "item.middle-earth.elven_lantern": "Lanterne elfique", + "item.middle-earth.elven_mail_coif": "Coiffe de maille elfique", + "item.middle-earth.elven_mail_hauberk": "Haubert de maille elfique", + "item.middle-earth.elven_mail_skirt": "Jupe de maille elfique", + "item.middle-earth.elven_noble_smithing_hammer": "Marteau de forge elfique noble", + "item.middle-earth.elven_open_arming_skirt": "Jupe matelassée ouverte elfique", + "item.middle-earth.elven_smithing_hammer": "Marteau de forge elfique", + "item.middle-earth.elven_treated_anvil": "Enclume elfique traitée", + "item.middle-earth.empty_phial": "Fiole vide", + "item.middle-earth.end_stone_brick_vertical_slab": "Dalle verticale en brique de l'end", + "item.middle-earth.eorling_marshal_boots": "Bottes de maréchal Eorling", + "item.middle-earth.eorling_marshal_cape": "Cape de maréchal Eorling", + "item.middle-earth.eorling_marshal_chestplate": "Plastron de maréchal Eorling", + "item.middle-earth.eorling_marshal_helmet": "Casque de maréchal Eorling", + "item.middle-earth.eorling_marshal_leggings": "Jambières de maréchal Eorling", + "item.middle-earth.erebor_axe": "Hache d'Erebor", + "item.middle-earth.erebor_boots": "Bottes d'Erebor", + "item.middle-earth.erebor_bow": "Arc d'Erebor", + "item.middle-earth.erebor_braced_leather_helmet": "Casque en cuir à renforts d'Erebor", + "item.middle-earth.erebor_brawler_chestplate": "Plastron de bagarreur d'Erebor", + "item.middle-earth.erebor_buckler_shield": "Targe d'Erebor", + "item.middle-earth.erebor_cape": "Cape d'Erebor", + "item.middle-earth.erebor_captain_helmet": "Casque de capitaine d'Erebor", + "item.middle-earth.erebor_cross_shield": "Bouclier à croix d'Erebor", + "item.middle-earth.erebor_crossbow": "Arbalète d'Erebor", + "item.middle-earth.erebor_dagger": "Dague d'Erebor", + "item.middle-earth.erebor_gatewarden_boots": "Bottes de gardien de la porte d'Erebor", + "item.middle-earth.erebor_gatewarden_chestplate": "Plastron de gardien de la porte d'Erebor", + "item.middle-earth.erebor_gatewarden_helmet": "Casque de gardien de la porte d'Erebor", + "item.middle-earth.erebor_gatewarden_leggings": "Jambières de gardien de la porte d'Erebor", + "item.middle-earth.erebor_gilded_mail_coif": "Coiffe de maille dorée d'Erebor", + "item.middle-earth.erebor_guard_helmet": "Casque de garde d'Erebor", + "item.middle-earth.erebor_helmet": "Casque d'Erebor", + "item.middle-earth.erebor_leather_helmet": "Casque en cuir d'Erebor", + "item.middle-earth.erebor_leather_leggings": "Jambières en cuir d'Erebor", + "item.middle-earth.erebor_long_coat": "Long manteau d'Erebor", + "item.middle-earth.erebor_longsword": "Épée longue d'Erebor", + "item.middle-earth.erebor_mail_chausses": "Chausses de maille d'Erebor", + "item.middle-earth.erebor_mail_coat": "Cotte de maille d'Erebor", + "item.middle-earth.erebor_mail_coif": "Coiffe de maille d'Erebor", + "item.middle-earth.erebor_mail_hauberk": "Haubert de maille d'Erebor", + "item.middle-earth.erebor_mail_leggings": "Jambières de maille d'Erebor", + "item.middle-earth.erebor_nasal_leather_helmet": "Casque en cuir à nasal d'Erebor", + "item.middle-earth.erebor_noble_axe": "Hache noble d'Erebor", + "item.middle-earth.erebor_noble_bow": "Arc noble d'Erebor", + "item.middle-earth.erebor_noble_crossbow": "Arbalète noble d'Erebor", + "item.middle-earth.erebor_noble_dagger": "Dague noble d'Erebor", + "item.middle-earth.erebor_noble_longsword": "Épée longue noble d'Erebor", + "item.middle-earth.erebor_noble_spear": "Lance noble d'Erebor", + "item.middle-earth.erebor_noble_sword": "Épée noble d'Erebor", + "item.middle-earth.erebor_ornamented_shield": "Bouclier orné d'Erebor", + "item.middle-earth.erebor_ornamented_tower_shield": "Pavois orné d'Erebor", + "item.middle-earth.erebor_padded_mail_hauberk": "Haubert de maille matelassé d'Erebor", + "item.middle-earth.erebor_plate_boots": "Bottes de plates d'Erebor", + "item.middle-earth.erebor_plate_chestplate": "Plastron de plates d'Erebor", + "item.middle-earth.erebor_plate_helmet": "Casque de plates d'Erebor", + "item.middle-earth.erebor_plate_leggings": "Jambières de plates d'Erebor", + "item.middle-earth.erebor_plated_shield": "Bouclier à plaques d'Erebor", + "item.middle-earth.erebor_reinforced_coat": "Manteau renforcé d'Erebor", + "item.middle-earth.erebor_reinforced_leather_hauberk": "Haubert en cuir renforcé d'Erebor", + "item.middle-earth.erebor_reinforced_shield": "Bouclier renforcé d'Erebor", + "item.middle-earth.erebor_reinforced_tower_shield": "Pavois renforcé d'Erebor", + "item.middle-earth.erebor_scale_coat": "Cotte à écailles d'Erebor", + "item.middle-earth.erebor_scale_hauberk": "Haubert à écailles d'Erebor", + "item.middle-earth.erebor_scale_leggings": "Jambières d'écailles d'Erebor", + "item.middle-earth.erebor_shield": "Bouclier d'Erebor", + "item.middle-earth.erebor_spear": "Lance d'Erebor", + "item.middle-earth.erebor_sword": "Épée d'Erebor", + "item.middle-earth.erebor_tower_shield": "Pavois d'Erebor", + "item.middle-earth.exposed_copper_bars": "Barreaux en cuivre exposé", + "item.middle-earth.exposed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé exposé", + "item.middle-earth.exposed_cut_copper_wall": "Muret en cuivre taillé exposé", + "item.middle-earth.fabric": "Tissu", + "item.middle-earth.fallen_leaves": "Feuilles tombées", + "item.middle-earth.fallen_mallorn_leaves": "Feuilles de Mallorn tombées", + "item.middle-earth.fallen_mirkwood_leaves": "Feuilles tombées de la Forêt noire", + "item.middle-earth.false_oatgrass": "Fausse avoine", + "item.middle-earth.fancy_bed": "Lit élégant", + "item.middle-earth.fang": "Croc", + "item.middle-earth.fire_bowl": "Vasque de feu", + "item.middle-earth.fire_of_orthanc": "Feu d'Orthanc", + "item.middle-earth.fish_stew": "Ragoût de poisson", + "item.middle-earth.flax": "Lin", + "item.middle-earth.flax_seeds": "Graines de lin", + "item.middle-earth.floating_ice": "Glace flottante", + "item.middle-earth.flowering_mallorn_leaves": "Feuilles de Mallorn en fleurs", + "item.middle-earth.forest_moss": "Mousse de la forêt", + "item.middle-earth.forest_moss_block": "Bloc de mousse de la forêt", + "item.middle-earth.forest_moss_carpet": "Tapis de mousse de la forêt", + "item.middle-earth.forge": "Forge", + "item.middle-earth.frozen_grass": "Herbe gelée", + "item.middle-earth.frozen_growth": "Pousse gelée", + "item.middle-earth.frozen_shrub": "Arbuste gelé", + "item.middle-earth.frozen_tuft": "Touffe gelée", + "item.middle-earth.fur": "Fourrure", + "item.middle-earth.fur_bed": "Lit en fourrure", + "item.middle-earth.gabbro": "Gabbro", + "item.middle-earth.gabbro_bricks": "Briques en gabbro", + "item.middle-earth.gabbro_brickwork": "Maçonnerie en gabbro", + "item.middle-earth.gabbro_brickwork_slab": "Dalle de maçonnerie en gabbro", + "item.middle-earth.gabbro_brickwork_stairs": "Escalier en maçonnerie de gabbro", + "item.middle-earth.gabbro_brickwork_vertical_slab": "Dalle verticale de maçonnerie en gabbro", + "item.middle-earth.gabbro_brickwork_wall": "Muret en maçonnerie de gabbro", + "item.middle-earth.gabbro_button": "Bouton en gabbro", + "item.middle-earth.gabbro_chair": "Chaise en gabbro", + "item.middle-earth.gabbro_pillar": "Pilier en gabbro", + "item.middle-earth.gabbro_pressure_plate": "Plaque de pression en gabbro", + "item.middle-earth.gabbro_rocks": "Éboulis de gabbro", + "item.middle-earth.gabbro_slab": "Dalle en gabbro", + "item.middle-earth.gabbro_stairs": "Escalier en gabbro", + "item.middle-earth.gabbro_stool": "Tabouret en gabbro", + "item.middle-earth.gabbro_table": "Table en gabbro", + "item.middle-earth.gabbro_tiles": "Gabbro carrelé", + "item.middle-earth.gabbro_trapdoor": "Trappe en gabbro", + "item.middle-earth.gabbro_vertical_slab": "Dalle verticale en gabbro", + "item.middle-earth.gabbro_wall": "Muret en gabbro", + "item.middle-earth.galadhrim_boots": "Bottes Galadhrim", + "item.middle-earth.galadhrim_cape": "Cape Galadhrim", + "item.middle-earth.galadhrim_chestplate": "Plastron Galadhrim", + "item.middle-earth.galadhrim_helmet": "Casque Galadhrim", + "item.middle-earth.galadhrim_hood": "Capuche Galadhrim", + "item.middle-earth.galadhrim_leggings": "Jambières Galadhrim", + "item.middle-earth.galadhrim_lord_boots": "Bottes de seigneur Galadhrim", + "item.middle-earth.galadhrim_lord_chestplate": "Plastron de seigneur Galadhrim", + "item.middle-earth.galadhrim_lord_helmet": "Casque de seigneur Galadhrim", + "item.middle-earth.galadhrim_lord_leggings": "Jambières de seigneur Galadhrim", + "item.middle-earth.galadhrim_lord_shield": "Bouclier de seigneur Galadhrim", + "item.middle-earth.galadhrim_lord_surcoat": "Surcot de seigneur Galadhrim", + "item.middle-earth.galadhrim_shield": "Bouclier Galadhrim", + "item.middle-earth.galonn": "Galonn", + "item.middle-earth.galonn_bricks": "Briques en Galonn", + "item.middle-earth.galonn_brickwork": "Maçonnerie en Galonn", + "item.middle-earth.galonn_brickwork_slab": "Dalle de maçonnerie en Galonn", + "item.middle-earth.galonn_brickwork_stairs": "Escalier en maçonnerie de Galonn", + "item.middle-earth.galonn_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Galonn", + "item.middle-earth.galonn_brickwork_wall": "Muret en maçonnerie de Galonn", + "item.middle-earth.galonn_button": "Bouton en Galonn", + "item.middle-earth.galonn_chair": "Chaise en Galonn", + "item.middle-earth.galonn_pillar": "Pilier en Galonn", + "item.middle-earth.galonn_pressure_plate": "Plaque de pression en Galonn", + "item.middle-earth.galonn_rocks": "Éboulis de Galonn", + "item.middle-earth.galonn_slab": "Dalle en Galonn", + "item.middle-earth.galonn_stairs": "Escalier en Galonn", + "item.middle-earth.galonn_stool": "Tabouret en Galonn", + "item.middle-earth.galonn_table": "Table en Galonn", + "item.middle-earth.galonn_tiles": "Galonn carrelée", + "item.middle-earth.galonn_trapdoor": "Trappe en Galonn", + "item.middle-earth.galonn_vertical_slab": "Dalle verticale en Galonn", + "item.middle-earth.galonn_wall": "Muret en Galonn", + "item.middle-earth.gambeson": "Gambison", + "item.middle-earth.gambeson_cap": "Calotte de gambison", + "item.middle-earth.gambeson_cowl": "Cagoule de gambison", + "item.middle-earth.garlic": "Ail", + "item.middle-earth.ghostshroom": "Champi-fantôme", + "item.middle-earth.ghostshroom_tiller": "Talle de champi-fantôme", + "item.middle-earth.gilded_bars": "Barreaux dorés", + "item.middle-earth.gilded_big_brazier": "Grand brasero doré", + "item.middle-earth.gilded_green_tuff": "Tuf vert doré", + "item.middle-earth.gilded_green_tuff_button": "Bouton en tuf vert doré", + "item.middle-earth.gilded_green_tuff_chair": "Chaise en tuf vert doré", + "item.middle-earth.gilded_green_tuff_pressure_plate": "Plaque de pression en tuf vert doré", + "item.middle-earth.gilded_green_tuff_rocks": "Éboulis de tuf vert doré", + "item.middle-earth.gilded_green_tuff_slab": "Dalle en tuf vert doré", + "item.middle-earth.gilded_green_tuff_stairs": "Escaliers en tuf vert doré", + "item.middle-earth.gilded_green_tuff_stool": "Tabouret en tuf vert doré", + "item.middle-earth.gilded_green_tuff_table": "Table en tuf vert doré", + "item.middle-earth.gilded_green_tuff_trapdoor": "Trappe en tuf vert doré", + "item.middle-earth.gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré", + "item.middle-earth.gilded_green_tuff_wall": "Muret en tuf vert doré", + "item.middle-earth.gilded_sconce": "Applique murale dorée", + "item.middle-earth.gilded_small_brazier": "Petit brasero doré", + "item.middle-earth.glamdring": "Glamdring", + "item.middle-earth.glowstone_block": "Bloc de pierre lumineuse", + "item.middle-earth.glowstone_cluster": "Amas de pierre lumineuse", + "item.middle-earth.glowworm_bottle": "Bouteille de ver lumineux", + "item.middle-earth.glowworm_webbing": "Toile de ver luisant", + "item.middle-earth.gneiss": "Gneiss", + "item.middle-earth.gneiss_bricks": "Briques en gneiss", + "item.middle-earth.gneiss_brickwork": "Maçonnerie en gneiss", + "item.middle-earth.gneiss_brickwork_slab": "Dalle de maçonnerie en gneiss", + "item.middle-earth.gneiss_brickwork_stairs": "Escalier en maçonnerie de gneiss", + "item.middle-earth.gneiss_brickwork_vertical_slab": "Dalle verticale de maçonnerie en gneiss", + "item.middle-earth.gneiss_brickwork_wall": "Muret en maçonnerie de gneiss", + "item.middle-earth.gneiss_button": "Bouton en gneiss", + "item.middle-earth.gneiss_chair": "Chaise en gneiss", + "item.middle-earth.gneiss_pillar": "Pilier en gneiss", + "item.middle-earth.gneiss_pressure_plate": "Plaque de pression en gneiss", + "item.middle-earth.gneiss_rocks": "Éboulis de gneiss", + "item.middle-earth.gneiss_slab": "Dalle en gneiss", + "item.middle-earth.gneiss_stairs": "Escalier en gneiss", + "item.middle-earth.gneiss_stool": "Tabouret en gneiss", + "item.middle-earth.gneiss_table": "Table en gneiss", + "item.middle-earth.gneiss_tiles": "Gneiss carrelé", + "item.middle-earth.gneiss_trapdoor": "Trappe en gneiss", + "item.middle-earth.gneiss_vertical_slab": "Dalle verticale en gneiss", + "item.middle-earth.gneiss_wall": "Muret en gneiss", + "item.middle-earth.golden_dagger": "Dague en or", + "item.middle-earth.golden_spear": "Lance en or", + "item.middle-earth.gondor_banner_pattern": "Motif de bannière du Gondor", + "item.middle-earth.gondor_banner_pattern.desc": "L'arbre blanc du Gondor", + "item.middle-earth.gondorian_axe": "Hache Gondorienne", + "item.middle-earth.gondorian_boots": "Bottes Gondoriennes", + "item.middle-earth.gondorian_bow": "Arc Gondorien", + "item.middle-earth.gondorian_cabasset_helmet": "Cabasset Gondorien", + "item.middle-earth.gondorian_captain_cape": "Cape de capitaine gondorien", + "item.middle-earth.gondorian_captain_helmet": "Casque de capitaine gondorien", + "item.middle-earth.gondorian_citadel_guard_boots": "Bottes de la garde de la citadelle", + "item.middle-earth.gondorian_citadel_guard_cape": "Cape de la garde de la citadelle", + "item.middle-earth.gondorian_citadel_guard_chestplate": "Plastron de la garde de la citadelle", + "item.middle-earth.gondorian_citadel_guard_helmet": "Casque de la garde de la citadelle", + "item.middle-earth.gondorian_citadel_guard_hood": "Capuche de la garde de la citadelle", + "item.middle-earth.gondorian_citadel_guard_leggings": "Jambières de la garde de la citadelle", + "item.middle-earth.gondorian_converted_shield": "Bouclier gondorien détourné", + "item.middle-earth.gondorian_dagger": "Dague Gondorienne", + "item.middle-earth.gondorian_fountain_guard_boots": "Bottes de la garde de la fontaine", + "item.middle-earth.gondorian_fountain_guard_cape": "Cape de la garde de la fontaine", + "item.middle-earth.gondorian_fountain_guard_chestplate": "Plastron de la garde de la fontaine", + "item.middle-earth.gondorian_fountain_guard_helmet": "Casque de la garde de la fontaine", + "item.middle-earth.gondorian_fountain_guard_leggings": "Jambières de la garde de la fontaine", + "item.middle-earth.gondorian_fountain_guard_spear": "Lance de la Garde de la Fontaine", + "item.middle-earth.gondorian_hero_cape": "Cape de héros gondorien", + "item.middle-earth.gondorian_hero_shield": "Bouclier de héros gondorien", + "item.middle-earth.gondorian_horse_armor": "Armure de cheval Gondorienne", + "item.middle-earth.gondorian_kings_guard_boots": "Bottes de la garde du roi", + "item.middle-earth.gondorian_kings_guard_cape": "Cape de la garde du roi", + "item.middle-earth.gondorian_kings_guard_chestplate": "Plastron de la garde du roi", + "item.middle-earth.gondorian_kings_guard_helmet": "Casque de la garde du roi", + "item.middle-earth.gondorian_kings_guard_leggings": "Jambières de la garde du roi", + "item.middle-earth.gondorian_kings_guard_tower_shield": "Pavois de la garde du roi", + "item.middle-earth.gondorian_knight_shield": "Bouclier de chevalier gondorien", + "item.middle-earth.gondorian_leather_chestplate": "Plastron en cuir Gondorien", + "item.middle-earth.gondorian_leather_cuirass": "Cuirasse en cuir Gondorienne", + "item.middle-earth.gondorian_longbow": "Arc long Gondorien", + "item.middle-earth.gondorian_longsword": "Épée longue Gondorienne", + "item.middle-earth.gondorian_mail_coat": "Cotte de maille Gondorienne", + "item.middle-earth.gondorian_mail_hauberk": "Haubert de maille Gondorien", + "item.middle-earth.gondorian_noble_axe": "Hache Gondorienne noble", + "item.middle-earth.gondorian_noble_dagger": "Dague Gondorienne noble", + "item.middle-earth.gondorian_noble_longbow": "Arc long Gondorien noble", + "item.middle-earth.gondorian_noble_longsword": "Épée longue Gondorienne noble", + "item.middle-earth.gondorian_noble_spear": "Lance Gondorienne noble", + "item.middle-earth.gondorian_noble_sword": "Épée Gondorienne noble", + "item.middle-earth.gondorian_ornamented_knight_shield": "Bouclier de chevalier orné gondorien", + "item.middle-earth.gondorian_plate_boots": "Bottes de plates Gondoriennes", + "item.middle-earth.gondorian_plate_chestplate": "Plastron de plates Gondorien", + "item.middle-earth.gondorian_plate_helmet": "Casque de plates Gondorien", + "item.middle-earth.gondorian_plate_leggings": "Jambières de plates Gondoriennes", + "item.middle-earth.gondorian_shield": "Bouclier gondorien", + "item.middle-earth.gondorian_soldier_chestplate": "Plastron de soldat Gondorien", + "item.middle-earth.gondorian_soldier_helmet": "Casque de soldat Gondorien", + "item.middle-earth.gondorian_spear": "Lance Gondorienne", + "item.middle-earth.gondorian_sword": "Épée Gondorienne", + "item.middle-earth.gondorian_tabbard": "Tabard Gondorien", + "item.middle-earth.gondorian_tower_shield": "Pavois gondorien", + "item.middle-earth.granite_bricks": "Briques en granite", + "item.middle-earth.granite_brickwork": "Maçonnerie en granite", + "item.middle-earth.granite_brickwork_slab": "Dalle de maçonnerie en granite", + "item.middle-earth.granite_brickwork_stairs": "Escalier en maçonnerie de granite", + "item.middle-earth.granite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en granite", + "item.middle-earth.granite_brickwork_wall": "Muret en maçonnerie de granite", + "item.middle-earth.granite_chair": "Chaise en granite", + "item.middle-earth.granite_pillar": "Pilier en granite", + "item.middle-earth.granite_rocks": "Éboulis de granite", + "item.middle-earth.granite_stool": "Tabouret en granite", + "item.middle-earth.granite_table": "Table en granite", + "item.middle-earth.granite_tiles": "Granite carrelé", + "item.middle-earth.granite_trapdoor": "Trappe en granite", + "item.middle-earth.granite_vertical_slab": "Dalle verticale en granite", + "item.middle-earth.grass_tuft": "Pousse d'herbe", + "item.middle-earth.grassy_dirt": "Terre herbeuse", + "item.middle-earth.grassy_dirt_slab": "Dalle de terre herbeuse", + "item.middle-earth.grassy_dirt_stairs": "Escaliers de terre herbeuse", + "item.middle-earth.gravel_layer": "Couche de gravier", + "item.middle-earth.gray_clay_tiling": "Tuile d'argile grise", + "item.middle-earth.gray_clay_tiling_slab": "Dalle en tuile d'argile grise", + "item.middle-earth.gray_clay_tiling_stairs": "Escaliers en tuile d'argile grise", + "item.middle-earth.gray_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile grise", + "item.middle-earth.gray_clay_tiling_wall": "Muret en tuile d'argile grise", + "item.middle-earth.gray_fur": "Fourrure grise", + "item.middle-earth.gray_fur_cloak": "Manteau en fourrure grise", + "item.middle-earth.gray_fur_hood": "Capuche en fourrure grise", + "item.middle-earth.gray_mushroom_bench": "Banc en champignon gris", + "item.middle-earth.gray_mushroom_button": "Bouton en champignon gris", + "item.middle-earth.gray_mushroom_chair": "Chaise en champignon gris", + "item.middle-earth.gray_mushroom_door": "Porte en champignon gris", + "item.middle-earth.gray_mushroom_fence": "Barrière en champignon gris", + "item.middle-earth.gray_mushroom_fence_gate": "Portillon en champignon gris", + "item.middle-earth.gray_mushroom_ladder": "Échelle en champignon gris", + "item.middle-earth.gray_mushroom_planks": "Planches de champignon gris", + "item.middle-earth.gray_mushroom_pressure_plate": "Plaque de pression en champignon gris", + "item.middle-earth.gray_mushroom_shingles": "Bardeaux en champignon gris", + "item.middle-earth.gray_mushroom_shingles_slab": "Dalle en bardeaux de champignon gris", + "item.middle-earth.gray_mushroom_shingles_stairs": "Escaliers en bardeaux de champignon gris", + "item.middle-earth.gray_mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon gris", + "item.middle-earth.gray_mushroom_shingles_wall": "Muret en bardeaux de champignon gris", + "item.middle-earth.gray_mushroom_slab": "Dalle en champignon gris", + "item.middle-earth.gray_mushroom_stairs": "Escaliers en champignon gris", + "item.middle-earth.gray_mushroom_stem": "Tige de champignon gris", + "item.middle-earth.gray_mushroom_stem_fence": "Barrière en tige de champignon gris", + "item.middle-earth.gray_mushroom_stem_wall": "Muret en tige de champignon gris", + "item.middle-earth.gray_mushroom_stool": "Tabouret en champignon gris", + "item.middle-earth.gray_mushroom_table": "Table en champignon gris", + "item.middle-earth.gray_mushroom_trapdoor": "Trappe en champignon gris", + "item.middle-earth.gray_mushroom_vertical_slab": "Dalle verticale en champignon gris", + "item.middle-earth.gray_roof_tiles": "Tuiles de toit grises", + "item.middle-earth.gray_stained_lead_glass": "Verre plombé gris", + "item.middle-earth.gray_stained_lead_glass_pane": "Vitre plombée grise", + "item.middle-earth.gray_wool_slab": "Dalle en laine grise", + "item.middle-earth.gray_wool_stairs": "Escaliers en laine grise", + "item.middle-earth.gray_wool_vertical_slab": "Dalle verticale en laine grise", + "item.middle-earth.great_dwarven_gate": "Grand portail nain", + "item.middle-earth.great_elven_gate": "Grand portail elfique", + "item.middle-earth.great_gondorian_gate": "Grand portail gondorien", + "item.middle-earth.great_orcish_gate": "Grand portail orque", + "item.middle-earth.green_clay_tiling": "Tuile d'argile verte", + "item.middle-earth.green_clay_tiling_slab": "Dalle en tuile d'argile verte", + "item.middle-earth.green_clay_tiling_stairs": "Escaliers en tuile d'argile verte", + "item.middle-earth.green_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile verte", + "item.middle-earth.green_clay_tiling_wall": "Muret en tuile d'argile verte", + "item.middle-earth.green_cushion": "Coussin vert", + "item.middle-earth.green_growth": "Pousse verte", + "item.middle-earth.green_hobbit_door": "Porte Hobbit verte", + "item.middle-earth.green_jewel_cornflower": "Cornouille verdoyante", + "item.middle-earth.green_roof_tiles": "Tuiles de toit vertes", + "item.middle-earth.green_shrub": "Arbuste vert", + "item.middle-earth.green_stained_lead_glass": "Verre plombé vert", + "item.middle-earth.green_stained_lead_glass_pane": "Vitre plombée verte", + "item.middle-earth.green_tuff": "Tuf vert", + "item.middle-earth.green_tuff_bricks": "Briques en tuf vert", + "item.middle-earth.green_tuff_button": "Bouton en tuf vert", + "item.middle-earth.green_tuff_chair": "Chaise en tuf vert", + "item.middle-earth.green_tuff_pillar": "Pilier en tuf vert", + "item.middle-earth.green_tuff_pressure_plate": "Plaque de pression en tuf vert", + "item.middle-earth.green_tuff_rocks": "Éboulis de tuf vert", + "item.middle-earth.green_tuff_slab": "Dalle en tuf vert", + "item.middle-earth.green_tuff_stairs": "Escaliers en tuf vert", + "item.middle-earth.green_tuff_stool": "Tabouret en tuf vert", + "item.middle-earth.green_tuff_table": "Table en tuf vert", + "item.middle-earth.green_tuff_tiles": "Tuf vert carrelé", + "item.middle-earth.green_tuff_trapdoor": "Trappe en tuf vert", + "item.middle-earth.green_tuff_vertical_slab": "Dalle verticale en tuf vert", + "item.middle-earth.green_tuff_wall": "Muret en tuf vert", + "item.middle-earth.green_wattle_and_white_daub": "Clayonnage vert et torchis blanc", + "item.middle-earth.green_wattle_and_white_daub_cross": "Clayonnage vert et torchis blanc en croix", + "item.middle-earth.green_wattle_and_white_daub_diamond": "Clayonnage vert et torchis blanc en losange", + "item.middle-earth.green_wattle_and_white_daub_left": "Clayonnage vert et torchis blanc à gauche", + "item.middle-earth.green_wattle_and_white_daub_pillar": "Pilier de clayonnage vert et torchis blanc", + "item.middle-earth.green_wattle_and_white_daub_right": "Clayonnage vert et torchis blanc à droite", + "item.middle-earth.green_wattle_framed_window": "Fenêtre à clayonnage vert", + "item.middle-earth.green_wattle_framed_window_pane": "Fenêtre plate à clayonnage vert", + "item.middle-earth.green_wattle_trapdoor": "Trappe en clayonnage vert", + "item.middle-earth.green_wool_slab": "Dalle en laine verte", + "item.middle-earth.green_wool_stairs": "Escaliers en laine verte", + "item.middle-earth.green_wool_vertical_slab": "Dalle verticale en laine verte", + "item.middle-earth.grim_grass": "Herbe sinistre", + "item.middle-earth.ground_book": "Livre au sol", + "item.middle-earth.gundabad_axe": "Hache de Gundabad", + "item.middle-earth.gundabad_bone_pauldron": "Épaulière en os de Gundabad", + "item.middle-earth.gundabad_bow": "Arc de Gundabad", + "item.middle-earth.gundabad_captain_helmet": "Casque de capitaine de Gundabad", + "item.middle-earth.gundabad_elite_battleaxe": "Hache de guerre d'élite de Gundabad", + "item.middle-earth.gundabad_elite_cleaver": "Hachoir d'élite de Gundabad", + "item.middle-earth.gundabad_elite_dagger": "Dague d'élite de Gundabad", + "item.middle-earth.gundabad_elite_scimitar": "Cimeterre d'élite de Gundabad", + "item.middle-earth.gundabad_elite_spear": "Lance d'élite de Gundabad", + "item.middle-earth.gundabad_falchion": "Fauchon de Gundabad", + "item.middle-earth.gundabad_great_eye_painted_wooden_shield": "Bouclier en bois peint au Grand Œil de Gundabad", + "item.middle-earth.gundabad_heavy_shield": "Bouclier lourd de Gundabad", + "item.middle-earth.gundabad_hobgoblin_mail_coat": "Cotte de maille de Hobgobelin de Gundabad", + "item.middle-earth.gundabad_hobgoblin_plate_chestplate": "Plastron de plates de Hobgobelin de Gundabad", + "item.middle-earth.gundabad_hobgoblin_plate_crested_helmet": "Casque de plates à crête de Hobgobelin de Gundabad", + "item.middle-earth.gundabad_hobgoblin_plate_large_crest_helmet": "Casque de plates à grande crête de Hobgobelin de Gundabad", + "item.middle-earth.gundabad_hobgoblin_plate_long_horn_helmet": "Casque de plates à longues cornes de Hobgobelin de Gundabad", + "item.middle-earth.gundabad_hobgoblin_plate_small_horn_helmet": "Casque de plates à petites cornes de Hobgobelin de Gundabad", + "item.middle-earth.gundabad_hobgoblin_plated_boots": "Bottes à plaques de Hobgobelin de Gundabad", + "item.middle-earth.gundabad_laced_boots": "Bottes lacées de Gundabad", + "item.middle-earth.gundabad_leather_leggings": "Jambières en cuir de Gundabad", + "item.middle-earth.gundabad_leather_scale_coat": "Cotte à écailles en cuir de Gundabad", + "item.middle-earth.gundabad_mail_coat": "Cotte de maille de Gundabad", + "item.middle-earth.gundabad_mail_coif": "Coiffe de maille de Gundabad", + "item.middle-earth.gundabad_mail_hauberk": "Haubert de maille de Gundabad", + "item.middle-earth.gundabad_painted_wooden_shield": "Bouclier en bois peint de Gundabad", + "item.middle-earth.gundabad_peaks_painted_wooden_shield": "Bouclier en bois peint aux pics de Gundabad", + "item.middle-earth.gundabad_reinforced_leather_scale_coat": "Cotte à écailles en cuir renforcée de Gundabad", + "item.middle-earth.gundabad_reinforced_leather_vest": "Gilet en cuir renforcé de Gundabad", + "item.middle-earth.gundabad_reinforced_shield": "Bouclier renforcé de Gundabad", + "item.middle-earth.gundabad_screecher_helmet": "Casque de hurleur de Gundabad", + "item.middle-earth.gundabad_seeker_helmet": "Casque de traqueur de Gundabad", + "item.middle-earth.gundabad_shank": "Surin de Gundabad", + "item.middle-earth.gundabad_skullcap_helmet": "Casque en calotte de Gundabad", + "item.middle-earth.gundabad_soldier_helmet": "Casque de soldat de Gundabad", + "item.middle-earth.gundabad_spear": "Lance de Gundabad", + "item.middle-earth.gundabad_warblade": "Lame de guerre de Gundabad", + "item.middle-earth.gundabad_wooden_shield": "Bouclier en bois de Gundabad", + "item.middle-earth.hammer_of_helm_hammerhand": "Marteau de Helm Poing-Marteau", + "item.middle-earth.heater_shield": "Écu", + "item.middle-earth.heater_shield.black": "Écu noir", + "item.middle-earth.heater_shield.blue": "Écu bleu", + "item.middle-earth.heater_shield.brown": "Écu marron", + "item.middle-earth.heater_shield.cyan": "Écu cyan", + "item.middle-earth.heater_shield.gray": "Écu gris", + "item.middle-earth.heater_shield.green": "Écu vert", + "item.middle-earth.heater_shield.light_blue": "Écu bleu clair", + "item.middle-earth.heater_shield.light_gray": "Écu gris clair", + "item.middle-earth.heater_shield.lime": "Écu vert clair", + "item.middle-earth.heater_shield.magenta": "Écu magenta", + "item.middle-earth.heater_shield.orange": "Écu orange", + "item.middle-earth.heater_shield.pink": "Écu rose", + "item.middle-earth.heater_shield.purple": "Écu violet", + "item.middle-earth.heater_shield.red": "Écu rouge", + "item.middle-earth.heater_shield.white": "Écu blanc", + "item.middle-earth.heater_shield.yellow": "Écu jaune", + "item.middle-earth.heath": "Lande", + "item.middle-earth.heather": "Bruyère", + "item.middle-earth.held_banner": "Bannière portée", + "item.middle-earth.helmet_of_helm_hammerhand": "Casque de Helm Poing-Marteau", + "item.middle-earth.helmet_plate": "Plaque de casque", + "item.middle-earth.hematite": "Hématite", + "item.middle-earth.hematite_bricks": "Briques en hématite", + "item.middle-earth.hematite_brickwork": "Maçonnerie en hématite", + "item.middle-earth.hematite_brickwork_slab": "Dalle de maçonnerie en hématite", + "item.middle-earth.hematite_brickwork_stairs": "Escalier en maçonnerie d'hématite", + "item.middle-earth.hematite_brickwork_vertical_slab": "Dalle verticale de maçonnerie en hématite", + "item.middle-earth.hematite_brickwork_wall": "Muret en maçonnerie d'hématite", + "item.middle-earth.hematite_button": "Bouton en hématite", + "item.middle-earth.hematite_chair": "Chaise en hématite", + "item.middle-earth.hematite_pillar": "Pilier en hématite", + "item.middle-earth.hematite_pressure_plate": "Plaque de pression en hématite", + "item.middle-earth.hematite_rocks": "Éboulis d'hématite", + "item.middle-earth.hematite_slab": "Dalle en hématite", + "item.middle-earth.hematite_stairs": "Escalier en hématite", + "item.middle-earth.hematite_stool": "Tabouret en hématite", + "item.middle-earth.hematite_table": "Table en hématite", + "item.middle-earth.hematite_tiles": "Hématite carrelée", + "item.middle-earth.hematite_trapdoor": "Trappe en hématite", + "item.middle-earth.hematite_vertical_slab": "Dalle verticale en hématite", + "item.middle-earth.hematite_wall": "Muret en hématite", + "item.middle-earth.herugrim": "Herugrim", + "item.middle-earth.hidden_dwarven_door": "Porte naine cachée", + "item.middle-earth.high_cut_boots": "Bottes hautes", + "item.middle-earth.hoe_head": "Tête de houe", + "item.middle-earth.holly_bench": "Banc en houx", + "item.middle-earth.holly_button": "Bouton en houx", + "item.middle-earth.holly_chair": "Chaise en houx", + "item.middle-earth.holly_door": "Porte en houx", + "item.middle-earth.holly_fence": "Clôture en houx", + "item.middle-earth.holly_fence_gate": "Portillon en houx", + "item.middle-earth.holly_ladder": "Échelle en houx", + "item.middle-earth.holly_leaves": "Feuilles de houx", + "item.middle-earth.holly_log": "Bûche de houx", + "item.middle-earth.holly_planks": "Planches de houx", + "item.middle-earth.holly_pressure_plate": "Plaque de pression en houx", + "item.middle-earth.holly_roofing": "Toiture en houx", + "item.middle-earth.holly_roofing_slab": "Dalle de toiture en houx", + "item.middle-earth.holly_roofing_stairs": "Escalier de toiture en houx", + "item.middle-earth.holly_roofing_vertical_slab": "Dalle verticale de toiture en houx", + "item.middle-earth.holly_roofing_wall": "Muret de toiture en houx", + "item.middle-earth.holly_sapling": "Pousse de houx", + "item.middle-earth.holly_shingles": "Bardeaux en houx", + "item.middle-earth.holly_shingles_slab": "Dalle de bardeaux en houx", + "item.middle-earth.holly_shingles_stairs": "Escalier de bardeaux en houx", + "item.middle-earth.holly_shingles_vertical_slab": "Dalle verticale de bardeaux en houx", + "item.middle-earth.holly_shingles_wall": "Muret de bardeaux en houx", + "item.middle-earth.holly_slab": "Dalle en houx", + "item.middle-earth.holly_stairs": "Escaliers en houx", + "item.middle-earth.holly_stool": "Tabouret en houx", + "item.middle-earth.holly_table": "Table en houx", + "item.middle-earth.holly_trapdoor": "Trappe en houx", + "item.middle-earth.holly_vertical_slab": "Dalle verticale en houx", + "item.middle-earth.holly_wood": "Planches de houx", + "item.middle-earth.holly_wood_fence": "Barrière en houx", + "item.middle-earth.holly_wood_slab": "Dalle en bois de houx", + "item.middle-earth.holly_wood_stairs": "Escaliers en bois de houx", + "item.middle-earth.holly_wood_vertical_slab": "Dalle verticale en bois de houx", + "item.middle-earth.holly_wood_wall": "Muret en houx", + "item.middle-earth.hood": "Capuche", + "item.middle-earth.horse_lord_boots": "Bottes de seigneur des chevaux", + "item.middle-earth.horse_lord_cape": "Cape de seigneur des chevaux", + "item.middle-earth.horse_lord_chestplate": "Plastron de seigneur des chevaux", + "item.middle-earth.horse_lord_helmet": "Casque de seigneur des chevaux", + "item.middle-earth.horse_lord_leggings": "Jambières de seigneur des chevaux", + "item.middle-earth.iron_dagger": "Dague en fer", + "item.middle-earth.iron_spear": "Lance en fer", + "item.middle-earth.ironstone": "Pierre de fer", + "item.middle-earth.ironstone_bricks": "Briques en pierre de fer", + "item.middle-earth.ironstone_button": "Bouton en pierre de fer", + "item.middle-earth.ironstone_chair": "Chaise en pierre de fer", + "item.middle-earth.ironstone_coal_ore": "Minerai de charbon de pierre de fer", + "item.middle-earth.ironstone_copper_ore": "Minerai de cuivre de pierre de fer", + "item.middle-earth.ironstone_pillar": "Pilier en pierre de fer", + "item.middle-earth.ironstone_pressure_plate": "Plaque de pression en pierre de fer", + "item.middle-earth.ironstone_rocks": "Éboulis de pierre de fer", + "item.middle-earth.ironstone_slab": "Dalle en pierre de fer", + "item.middle-earth.ironstone_stairs": "Escalier en pierre de fer", + "item.middle-earth.ironstone_stool": "Tabouret en pierre de fer", + "item.middle-earth.ironstone_table": "Table en pierre de fer", + "item.middle-earth.ironstone_tiles": "Pierre de fer carrelée", + "item.middle-earth.ironstone_tin_ore": "Minerai d'étain de pierre de fer", + "item.middle-earth.ironstone_trapdoor": "Trappe en pierre de fer", + "item.middle-earth.ironstone_vertical_slab": "Dalle verticale en pierre de fer", + "item.middle-earth.ironstone_wall": "Muret en pierre de fer", + "item.middle-earth.isengard_banner_pattern": "Motif de bannière d'Isengard", + "item.middle-earth.isengard_banner_pattern.desc": "La Main Blanche de Saroumane", + "item.middle-earth.isengard_orc_axe": "Hache orque d'Isengard", + "item.middle-earth.isengard_orc_cleaver": "Hachoir orque d'Isengard", + "item.middle-earth.isengard_orc_dagger": "Dague orque d'Isengard", + "item.middle-earth.isengard_orc_spear": "Lance orque d'Isengard", + "item.middle-earth.isengard_orc_warblade": "Lame de guerre orque d'Isengard", + "item.middle-earth.ivy_growth": "Pousse de lierre", + "item.middle-earth.izheraban": "Izhêr'Aban", + "item.middle-earth.izheraban_bricks": "Briques en Izhêr'Aban", + "item.middle-earth.izheraban_brickwork": "Maçonnerie en Izhêr'Aban", + "item.middle-earth.izheraban_brickwork_slab": "Dalle de maçonnerie en Izhêr'Aban", + "item.middle-earth.izheraban_brickwork_stairs": "Escalier en maçonnerie d'Izhêr'Aban", + "item.middle-earth.izheraban_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Izhêr'Aban", + "item.middle-earth.izheraban_brickwork_wall": "Muret en maçonnerie d'Izhêr'Aban", + "item.middle-earth.izheraban_button": "Bouton en Izhêr'Aban", + "item.middle-earth.izheraban_carved_window": "Fenêtre sculptée en Izhêr'Aban", + "item.middle-earth.izheraban_chair": "Chaise en Izhêr'Aban", + "item.middle-earth.izheraban_pillar": "Pilier en Izhêr'Aban", + "item.middle-earth.izheraban_pressure_plate": "Plaque de pression en Izhêr'Aban", + "item.middle-earth.izheraban_rocks": "Éboulis d'Izhêr'Aban", + "item.middle-earth.izheraban_slab": "Dalle en Izhêr'Aban", + "item.middle-earth.izheraban_stairs": "Escalier en Izhêr'Aban", + "item.middle-earth.izheraban_stool": "Tabouret en Izhêr'Aban", + "item.middle-earth.izheraban_table": "Table en Izhêr'Aban", + "item.middle-earth.izheraban_tiles": "Izhêr'Aban carrelée", + "item.middle-earth.izheraban_trapdoor": "Trappe en Izhêr'Aban", + "item.middle-earth.izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban", + "item.middle-earth.izheraban_wall": "Muret en Izhêr'Aban", + "item.middle-earth.jadeite": "Jadéite", + "item.middle-earth.jadeite_bricks": "Briques en jadéite", + "item.middle-earth.jadeite_button": "Bouton en jadéite", + "item.middle-earth.jadeite_chair": "Chaise en jadéite", + "item.middle-earth.jadeite_pillar": "Pilier en jadéite", + "item.middle-earth.jadeite_pressure_plate": "Plaque de pression en jadéite", + "item.middle-earth.jadeite_rocks": "Éboulis de jadéite", + "item.middle-earth.jadeite_slab": "Dalle en jadéite", + "item.middle-earth.jadeite_stairs": "Escaliers en jadéite", + "item.middle-earth.jadeite_stool": "Tabouret en jadéite", + "item.middle-earth.jadeite_table": "Table en jadéite", + "item.middle-earth.jadeite_tiles": "Jadéite carrelée", + "item.middle-earth.jadeite_trapdoor": "Trappe en jadéite", + "item.middle-earth.jadeite_vertical_slab": "Dalle verticale en jadéite", + "item.middle-earth.jadeite_wall": "Muret en jadéite", + "item.middle-earth.jungle_bench": "Banc en acajou", + "item.middle-earth.jungle_chair": "Chaise en acajou", + "item.middle-earth.jungle_ladder": "Échelle en acajou", + "item.middle-earth.jungle_shingles": "Bardeaux d'acajou", + "item.middle-earth.jungle_shingles_slab": "Dalle en bardeaux d'acajou", + "item.middle-earth.jungle_shingles_stairs": "Escaliers en bardeaux d'acajou", + "item.middle-earth.jungle_shingles_vertical_slab": "Dalle verticale en bardeaux d'acajou", + "item.middle-earth.jungle_shingles_wall": "Muret en bardeaux d'acajou", + "item.middle-earth.jungle_stool": "Tabouret en acajou", + "item.middle-earth.jungle_table": "Table en acajou", + "item.middle-earth.jungle_vertical_slab": "Dalle verticale en acajou", + "item.middle-earth.jungle_wood_fence": "Barrière en bois d'acajou", + "item.middle-earth.jungle_wood_slab": "Dalle en bois d'acajou", + "item.middle-earth.jungle_wood_stairs": "Escalier en bois d'acajou", + "item.middle-earth.jungle_wood_vertical_slab": "Dalle verticale en bois d'acajou", + "item.middle-earth.jungle_wood_wall": "Muret en bois d'acajou", + "item.middle-earth.kettle_hat": "Chapel de fer", + "item.middle-earth.kettle_hat_with_closed_coif": "Chapel de fer avec coiffe fermée", + "item.middle-earth.kettle_hat_with_coif": "Chapel de fer avec coiffe", + "item.middle-earth.khazad_steel_axe": "Hache en acier de Khâzad", + "item.middle-earth.khazad_steel_block": "Bloc d'acier de Khâzad", + "item.middle-earth.khazad_steel_hoe": "Houe en acier de Khâzad", + "item.middle-earth.khazad_steel_ingot": "Lingot d'acier de Khâzad", + "item.middle-earth.khazad_steel_nugget": "Pépite d'acier de Khâzad", + "item.middle-earth.khazad_steel_pickaxe": "Pioche en acier de Khâzad", + "item.middle-earth.khazad_steel_shovel": "Pelle en acier de Khâzad", + "item.middle-earth.khazad_steel_spear": "Lance en acier de Khâzad", + "item.middle-earth.khazad_steel_sword": "Épée en acier de Khâzad", + "item.middle-earth.kite_shield": "Bouclier en amande", + "item.middle-earth.kite_shield.black": "Bouclier en amande noir", + "item.middle-earth.kite_shield.blue": "Bouclier en amande bleu", + "item.middle-earth.kite_shield.brown": "Bouclier en amande marron", + "item.middle-earth.kite_shield.cyan": "Bouclier en amande cyan", + "item.middle-earth.kite_shield.gray": "Bouclier en amande gris", + "item.middle-earth.kite_shield.green": "Bouclier en amande vert", + "item.middle-earth.kite_shield.light_blue": "Bouclier en amande bleu clair", + "item.middle-earth.kite_shield.light_gray": "Bouclier en amande gris clair", + "item.middle-earth.kite_shield.lime": "Bouclier en amande vert clair", + "item.middle-earth.kite_shield.magenta": "Bouclier en amande magenta", + "item.middle-earth.kite_shield.orange": "Bouclier en amande orange", + "item.middle-earth.kite_shield.pink": "Bouclier en amande rose", + "item.middle-earth.kite_shield.purple": "Bouclier en amande violet", + "item.middle-earth.kite_shield.red": "Bouclier en amande rouge", + "item.middle-earth.kite_shield.white": "Bouclier en amande blanc", + "item.middle-earth.kite_shield.yellow": "Bouclier en amande jaune", + "item.middle-earth.larch_bench": "Banc en mélèze", + "item.middle-earth.larch_button": "Bouton en mélèze", + "item.middle-earth.larch_chair": "Chaise en mélèze", + "item.middle-earth.larch_door": "Porte en mélèze", + "item.middle-earth.larch_fence": "Barrière en mélèze", + "item.middle-earth.larch_fence_gate": "Portillon en mélèze", + "item.middle-earth.larch_hobbit_door": "Porte Hobbit en mélèze", + "item.middle-earth.larch_ladder": "Échelle en mélèze", + "item.middle-earth.larch_leaves": "Feuilles de mélèze", + "item.middle-earth.larch_log": "Bûche de mélèze", + "item.middle-earth.larch_planks": "Planches de mélèze", + "item.middle-earth.larch_pressure_plate": "Plaque de pression en mélèze", + "item.middle-earth.larch_roofing": "Toiture en mélèze", + "item.middle-earth.larch_roofing_slab": "Dalle de toiture en mélèze", + "item.middle-earth.larch_roofing_stairs": "Escalier de toiture en mélèze", + "item.middle-earth.larch_roofing_vertical_slab": "Dalle verticale de toiture en mélèze", + "item.middle-earth.larch_roofing_wall": "Muret de toiture en mélèze", + "item.middle-earth.larch_sapling": "Pousse de mélèze", + "item.middle-earth.larch_shingles": "Bardeaux en mélèze", + "item.middle-earth.larch_shingles_slab": "Dalle de bardeaux en mélèze", + "item.middle-earth.larch_shingles_stairs": "Escalier de bardeaux en mélèze", + "item.middle-earth.larch_shingles_vertical_slab": "Dalle verticale de bardeaux en mélèze", + "item.middle-earth.larch_shingles_wall": "Muret de bardeaux en mélèze", + "item.middle-earth.larch_slab": "Dalle en mélèze", + "item.middle-earth.larch_stairs": "Escaliers en mélèze", + "item.middle-earth.larch_stool": "Tabouret en mélèze", + "item.middle-earth.larch_table": "Table en mélèze", + "item.middle-earth.larch_trapdoor": "Trappe en mélèze", + "item.middle-earth.larch_vertical_slab": "Dalle verticale en mélèze", + "item.middle-earth.larch_wood": "Planches de mélèze", + "item.middle-earth.larch_wood_fence": "Barrière en mélèze", + "item.middle-earth.larch_wood_slab": "Dalle en bois de mélèze", + "item.middle-earth.larch_wood_stairs": "Escaliers en bois de mélèze", + "item.middle-earth.larch_wood_vertical_slab": "Dalle verticale en bois de mélèze", + "item.middle-earth.larch_wood_wall": "Muret en mélèze", + "item.middle-earth.large_citrine_bud": "Grand cristal de citrine", + "item.middle-earth.large_glowstone_bud": "Grand cristal de pierre lumineuse", + "item.middle-earth.large_quartz_bud": "Grand cristal de quartz", + "item.middle-earth.large_red_agate_bud": "Grand cristal d'agate rouge", + "item.middle-earth.large_rod": "Grande baguette", + "item.middle-earth.large_sturdy_door": "Grande porte robuste", + "item.middle-earth.last_alliance_heirloom_tower_shield": "Pavois-relique de la Dernière Alliance", + "item.middle-earth.lead_block": "Bloc de plomb", + "item.middle-earth.lead_glass": "Verre plombé", + "item.middle-earth.lead_glass_pane": "Vitre plombée", + "item.middle-earth.lead_ingot": "Lingot de plomb", + "item.middle-earth.lead_nugget": "Pépite de plomb", + "item.middle-earth.leather_scale_vest": "Gilet à écailles en cuir", + "item.middle-earth.leather_skullcap": "Calotte en cuir", + "item.middle-earth.leather_vest": "Gilet en cuir", + "item.middle-earth.lebethron_leaves": "Feuilles de Lebethron", + "item.middle-earth.lebethron_sapling": "Pousse de Lebethron", + "item.middle-earth.leek": "Poireau", + "item.middle-earth.lembas": "Lembas", + "item.middle-earth.lettuce": "Laitue", + "item.middle-earth.lettuce_seeds": "Graines de laitue", + "item.middle-earth.light_blue_clay_tiling": "Tuile d'argile bleu clair", + "item.middle-earth.light_blue_clay_tiling_slab": "Dalle en tuile d'argile bleu clair", + "item.middle-earth.light_blue_clay_tiling_stairs": "Escaliers en tuile d'argile bleu clair", + "item.middle-earth.light_blue_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile bleu clair", + "item.middle-earth.light_blue_clay_tiling_wall": "Muret en tuile d'argile bleu clair", + "item.middle-earth.light_blue_flowers": "Fleurs bleu clair", + "item.middle-earth.light_blue_hobbit_door": "Porte Hobbit bleu clair", + "item.middle-earth.light_blue_roof_tiles": "Tuiles de toit bleu clair", + "item.middle-earth.light_blue_stained_lead_glass": "Verre plombé bleu clair", + "item.middle-earth.light_blue_stained_lead_glass_pane": "Vitre plombée bleu clair", + "item.middle-earth.light_blue_wool_slab": "Dalle en laine bleu clair", + "item.middle-earth.light_blue_wool_stairs": "Escaliers en laine bleu clair", + "item.middle-earth.light_blue_wool_vertical_slab": "Dalle verticale en laine bleu clair", + "item.middle-earth.light_cyan_roof_tiles": "Tuiles de toit cyan clair", + "item.middle-earth.light_gray_clay_tiling": "Tuile d'argile gris clair", + "item.middle-earth.light_gray_clay_tiling_slab": "Dalle en tuile d'argile gris clair", + "item.middle-earth.light_gray_clay_tiling_stairs": "Escaliers en tuile d'argile gris clair", + "item.middle-earth.light_gray_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile gris clair", + "item.middle-earth.light_gray_clay_tiling_wall": "Muret en tuile d'argile gris clair", + "item.middle-earth.light_gray_roof_tiles": "Tuiles de toit gris clair", + "item.middle-earth.light_gray_stained_lead_glass": "Verre plombé gris clair", + "item.middle-earth.light_gray_stained_lead_glass_pane": "Vitre plombée gris clair", + "item.middle-earth.light_gray_wool_slab": "Dalle en laine gris clair", + "item.middle-earth.light_gray_wool_stairs": "Escaliers en laine gris clair", + "item.middle-earth.light_gray_wool_vertical_slab": "Dalle verticale en laine gris clair", + "item.middle-earth.light_green_roof_tiles": "Tuiles de toit vert clair", + "item.middle-earth.light_red_roof_tiles": "Tuiles de toit rouge clair", + "item.middle-earth.light_yellow_roof_tiles": "Tuiles de toit jaune clair", + "item.middle-earth.lilac_flower_growth": "Pousse de fleurs de lilas", + "item.middle-earth.lily_pads": "Nénuphars", + "item.middle-earth.lime_clay_tiling": "Tuile d'argile vert clair", + "item.middle-earth.lime_clay_tiling_slab": "Dalle en tuile d'argile vert clair", + "item.middle-earth.lime_clay_tiling_stairs": "Escaliers en tuile d'argile vert clair", + "item.middle-earth.lime_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile vert clair", + "item.middle-earth.lime_clay_tiling_wall": "Muret en tuile d'argile vert clair", + "item.middle-earth.lime_stained_lead_glass": "Verre plombé vert clair", + "item.middle-earth.lime_stained_lead_glass_pane": "Vitre plombée vert clair", + "item.middle-earth.lime_wool_slab": "Dalle en laine vert clair", + "item.middle-earth.lime_wool_stairs": "Escaliers en laine vert clair", + "item.middle-earth.lime_wool_vertical_slab": "Dalle verticale en laine vert clair", + "item.middle-earth.limestone": "Calcaire", + "item.middle-earth.limestone_bricks": "Briques de calcaire", + "item.middle-earth.limestone_brickwork": "Maçonnerie en calcaire", + "item.middle-earth.limestone_brickwork_slab": "Dalle de maçonnerie en calcaire", + "item.middle-earth.limestone_brickwork_stairs": "Escalier en maçonnerie de calcaire", + "item.middle-earth.limestone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en calcaire", + "item.middle-earth.limestone_brickwork_wall": "Muret en maçonnerie de calcaire", + "item.middle-earth.limestone_button": "Bouton en calcaire", + "item.middle-earth.limestone_chair": "Chaise en calcaire", + "item.middle-earth.limestone_coal_ore": "Minerai de charbon de calcaire", + "item.middle-earth.limestone_copper_ore": "Minerai de cuivre de calcaire", + "item.middle-earth.limestone_pillar": "Pilier en calcaire", + "item.middle-earth.limestone_pressure_plate": "Plaque de pression en calcaire", + "item.middle-earth.limestone_rocks": "Éboulis de calcaire", + "item.middle-earth.limestone_slab": "Dalle en calcaire", + "item.middle-earth.limestone_stairs": "Escaliers en calcaire", + "item.middle-earth.limestone_stool": "Tabouret en calcaire", + "item.middle-earth.limestone_table": "Table en calcaire", + "item.middle-earth.limestone_tiles": "Calcaire carrelé", + "item.middle-earth.limestone_tin_ore": "Minerai d'étain de calcaire", + "item.middle-earth.limestone_trapdoor": "Trappe en calcaire", + "item.middle-earth.limestone_vertical_slab": "Dalle verticale en calcaire", + "item.middle-earth.limestone_wall": "Muret en calcaire", + "item.middle-earth.lit_pinecone": "Pomme de pin incandescente", + "item.middle-earth.long_blade": "Lame longue", + "item.middle-earth.long_forgotten_longsword": "Épée longue oubliée", + "item.middle-earth.longbeard_leather_hauberk": "Haubert en cuir des Longues-Barbes", + "item.middle-earth.longbeard_leather_leggings": "Jambières en cuir des Longues-Barbes", + "item.middle-earth.longbeard_partisan_outfit": "Tenue de partisan des Longues-Barbes", + "item.middle-earth.longbeard_reinforced_leather_hauberk": "Haubert en cuir renforcé des Longues-Barbes", + "item.middle-earth.longbeard_segmented_helmet": "Casque segmenté des Longues-Barbes", + "item.middle-earth.longbeard_wanderer_coat": "Manteau de voyageur des Longues-Barbes", + "item.middle-earth.longbottom_pipe": "Pipe de Longoulet", + "item.middle-earth.longsword_of_elder_kings": "Épée longue des Rois Anciens", + "item.middle-earth.lorien_arming_coat": "Manteau matelassé de Lórien", + "item.middle-earth.lorien_arming_skirt": "Jupe matelassée de Lórien", + "item.middle-earth.lorien_axe": "Hache Galadhrim", + "item.middle-earth.lorien_bow": "Arc Galadhrim", + "item.middle-earth.lorien_dagger": "Dague Galadhrim", + "item.middle-earth.lorien_diadem": "Diadème de Lórien", + "item.middle-earth.lorien_glaive": "Glaive Galadhrim", + "item.middle-earth.lorien_horse_armor": "Armure de cheval Galadhrim", + "item.middle-earth.lorien_laurels_shield": "Bouclier aux lauriers de Lórien", + "item.middle-earth.lorien_leather_helmet": "Casque en cuir de Lórien", + "item.middle-earth.lorien_longbow": "Arc long Galadhrim", + "item.middle-earth.lorien_mail_coif_diadem": "Coiffe de maille à diadème de Lórien", + "item.middle-earth.lorien_mail_hauberk": "Haubert de maille de Lórien", + "item.middle-earth.lorien_mallorn_shield": "Bouclier au Mallorn de Lórien", + "item.middle-earth.lorien_marchwarden_cape": "Cape de gardien des Marches", + "item.middle-earth.lorien_marchwarden_hood": "Capuche de gardien des Marches", + "item.middle-earth.lorien_marchwarden_mail_hauberk": "Haubert de maille de gardien des Marches de Lórien", + "item.middle-earth.lorien_noble_axe": "Hache Galadhrim noble", + "item.middle-earth.lorien_noble_dagger": "Dague Galadhrim noble", + "item.middle-earth.lorien_noble_glaive": "Glaive Galadhrim noble", + "item.middle-earth.lorien_noble_longbow": "Arc long Galadhrim noble", + "item.middle-earth.lorien_noble_spear": "Lance Galadhrim noble", + "item.middle-earth.lorien_noble_sword": "Épée Galadhrim noble", + "item.middle-earth.lorien_podzol": "Podzol de Lórien", + "item.middle-earth.lorien_scale_coat": "Cotte à écailles de Lórien", + "item.middle-earth.lorien_shield": "Bouclier de Lórien", + "item.middle-earth.lorien_short_mail_coif_diadem": "Coiffe de maille courte à diadème de Lórien", + "item.middle-earth.lorien_soldier_helmet": "Casque de soldat de Lórien", + "item.middle-earth.lorien_soldier_mail_hauberk": "Haubert de maille de soldat de Lórien", + "item.middle-earth.lorien_soldier_scale_hauberk": "Haubert à écailles de soldat de Lórien", + "item.middle-earth.lorien_spear": "Lance Galadhrim", + "item.middle-earth.lorien_sword": "Épée Galadhrim", + "item.middle-earth.lothlorien_banner_pattern": "Motif de bannière Lothlórien", + "item.middle-earth.lothlorien_banner_pattern.desc": "Arbre de la Lórien", + "item.middle-earth.mace_of_sauron": "Masse de Sauron", + "item.middle-earth.magenta_clay_tiling": "Tuile d'argile magenta", + "item.middle-earth.magenta_clay_tiling_slab": "Dalle en tuile d'argile magenta", + "item.middle-earth.magenta_clay_tiling_stairs": "Escaliers en tuile d'argile magenta", + "item.middle-earth.magenta_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile magenta", + "item.middle-earth.magenta_clay_tiling_wall": "Muret en tuile d'argile magenta", + "item.middle-earth.magenta_flowers": "Fleurs magenta", + "item.middle-earth.magenta_stained_lead_glass": "Verre plombé magenta", + "item.middle-earth.magenta_stained_lead_glass_pane": "Vitre plombée magenta", + "item.middle-earth.magenta_wool_slab": "Dalle en laine magenta", + "item.middle-earth.magenta_wool_stairs": "Escaliers en laine magenta", + "item.middle-earth.magenta_wool_vertical_slab": "Dalle verticale en laine magenta", + "item.middle-earth.maggoty_bread": "Pain véreux", + "item.middle-earth.mail": "Maille", + "item.middle-earth.mail_coif": "Coiffe de maille", + "item.middle-earth.mail_hauberk": "Haubert de maille", + "item.middle-earth.mail_ring": "Anneau de maille", + "item.middle-earth.mail_shirt": "Chemise de maille", + "item.middle-earth.mail_skirt": "Jupe de maille", + "item.middle-earth.mallorn_bench": "Banc en Mallorn", + "item.middle-earth.mallorn_button": "Bouton en Mallorn", + "item.middle-earth.mallorn_chair": "Chaise en Mallorn", + "item.middle-earth.mallorn_door": "Porte en Mallorn", + "item.middle-earth.mallorn_fence": "Barrière en Mallorn", + "item.middle-earth.mallorn_fence_gate": "Portillon en Mallorn", + "item.middle-earth.mallorn_ladder": "Échelle en Mallorn", + "item.middle-earth.mallorn_leaves": "Feuilles de Mallorn", + "item.middle-earth.mallorn_log": "Bûche de Mallorn", + "item.middle-earth.mallorn_planks": "Planches de Mallorn", + "item.middle-earth.mallorn_pressure_plate": "Plaque de pression en Mallorn", + "item.middle-earth.mallorn_roofing": "Toiture en Mallorn", + "item.middle-earth.mallorn_roofing_slab": "Dalle de toiture en Mallorn", + "item.middle-earth.mallorn_roofing_stairs": "Escalier de toiture en Mallorn", + "item.middle-earth.mallorn_roofing_vertical_slab": "Dalle verticale de toiture en Mallorn", + "item.middle-earth.mallorn_roofing_wall": "Muret de toiture en Mallorn", + "item.middle-earth.mallorn_sapling": "Pousse de Mallorn", + "item.middle-earth.mallorn_shingles": "Bardeaux en Mallorn", + "item.middle-earth.mallorn_shingles_slab": "Dalle en bardeaux de Mallorn", + "item.middle-earth.mallorn_shingles_stairs": "Escaliers en bardeaux de Mallorn", + "item.middle-earth.mallorn_shingles_vertical_slab": "Dalle verticale en bardeaux de Mallorn", + "item.middle-earth.mallorn_shingles_wall": "Muret en bardeaux de Mallorn", + "item.middle-earth.mallorn_slab": "Dalle en Mallorn", + "item.middle-earth.mallorn_stairs": "Escaliers en Mallorn", + "item.middle-earth.mallorn_stool": "Tabouret en Mallorn", + "item.middle-earth.mallorn_table": "Table en Mallorn", + "item.middle-earth.mallorn_trapdoor": "Trappe en Mallorn", + "item.middle-earth.mallorn_vertical_slab": "Dalle verticale en Mallorn", + "item.middle-earth.mallorn_wood": "Bois de Mallorn", + "item.middle-earth.mallorn_wood_fence": "Barrière en bois de Mallorn", + "item.middle-earth.mallorn_wood_slab": "Dalle en bois de Mallorn", + "item.middle-earth.mallorn_wood_stairs": "Escaliers en bois de Mallorn", + "item.middle-earth.mallorn_wood_vertical_slab": "Dalle verticale en bois de Mallorn", + "item.middle-earth.mallorn_wood_wall": "Muret en bois de Mallorn", + "item.middle-earth.mallos": "Mallos", + "item.middle-earth.mangrove_bench": "Banc en palétuvier", + "item.middle-earth.mangrove_chair": "Chaise en palétuvier", + "item.middle-earth.mangrove_ladder": "Échelle en palétuvier", + "item.middle-earth.mangrove_shingles": "Bardeaux de palétuvier", + "item.middle-earth.mangrove_shingles_slab": "Dalle en bardeaux de palétuvier", + "item.middle-earth.mangrove_shingles_stairs": "Escaliers en bardeaux de palétuvier", + "item.middle-earth.mangrove_shingles_vertical_slab": "Dalle verticale en bardeaux de palétuvier", + "item.middle-earth.mangrove_shingles_wall": "Muret en bardeaux de palétuvier", + "item.middle-earth.mangrove_stool": "Tabouret en palétuvier", + "item.middle-earth.mangrove_table": "Table en palétuvier", + "item.middle-earth.mangrove_vertical_slab": "Dalle verticale en palétuvier", + "item.middle-earth.mangrove_wood_fence": "Barrière en bois de palétuvier", + "item.middle-earth.mangrove_wood_slab": "Dalle en bois de palétuvier", + "item.middle-earth.mangrove_wood_stairs": "Escalier en bois de palétuvier", + "item.middle-earth.mangrove_wood_vertical_slab": "Dalle verticale en bois de palétuvier", + "item.middle-earth.mangrove_wood_wall": "Muret en bois de palétuvier", + "item.middle-earth.maple_bench": "Banc en érable", + "item.middle-earth.maple_button": "Bouton en érable", + "item.middle-earth.maple_chair": "Chaise en érable", + "item.middle-earth.maple_door": "Porte en érable", + "item.middle-earth.maple_fence": "Barrière en érable", + "item.middle-earth.maple_fence_gate": "Portillon en érable", + "item.middle-earth.maple_ladder": "Échelle en érable", + "item.middle-earth.maple_leaves": "Feuilles d'érable", + "item.middle-earth.maple_log": "Bûche d'érable", + "item.middle-earth.maple_planks": "Planches d'érable", + "item.middle-earth.maple_pressure_plate": "Plaque de pression en érable", + "item.middle-earth.maple_roofing": "Toiture en érable", + "item.middle-earth.maple_roofing_slab": "Dalle de toiture en érable", + "item.middle-earth.maple_roofing_stairs": "Escalier de toiture en érable", + "item.middle-earth.maple_roofing_vertical_slab": "Dalle verticale de toiture en érable", + "item.middle-earth.maple_roofing_wall": "Muret de toiture en érable", + "item.middle-earth.maple_sapling": "Pousse d'érable", + "item.middle-earth.maple_shingles": "Bardeaux d'érable", + "item.middle-earth.maple_shingles_slab": "Dalle en bardeaux d'érable", + "item.middle-earth.maple_shingles_stairs": "Escaliers en bardeaux d'érable", + "item.middle-earth.maple_shingles_vertical_slab": "Dalle verticale en bardeaux d'érable", + "item.middle-earth.maple_shingles_wall": "Muret en bardeaux d'érable", + "item.middle-earth.maple_slab": "Dalle en érable", + "item.middle-earth.maple_stairs": "Escaliers en érable", + "item.middle-earth.maple_stool": "Tabouret en érable", + "item.middle-earth.maple_table": "Table en érable", + "item.middle-earth.maple_trapdoor": "Trappe en érable", + "item.middle-earth.maple_vertical_slab": "Dalle verticale en érable", + "item.middle-earth.maple_wood": "Bois d'érable", + "item.middle-earth.maple_wood_fence": "Barrière en bois d'érable", + "item.middle-earth.maple_wood_slab": "Dalle en bois d'érable", + "item.middle-earth.maple_wood_stairs": "Escaliers en bois d'érable", + "item.middle-earth.maple_wood_vertical_slab": "Dalle verticale en bois d'érable", + "item.middle-earth.maple_wood_wall": "Muret en bois d'érable", + "item.middle-earth.meat_bowl": "Bol de viande", + "item.middle-earth.meat_egg_meal": "Repas d'œuf et viande", + "item.middle-earth.meat_skewer": "Brochette de viande", + "item.middle-earth.medgon": "Medgon", + "item.middle-earth.medgon_bricks": "Briques en Medgon", + "item.middle-earth.medgon_brickwork": "Maçonnerie en Medgon", + "item.middle-earth.medgon_brickwork_slab": "Dalle de maçonnerie en Medgon", + "item.middle-earth.medgon_brickwork_stairs": "Escalier en maçonnerie de Medgon", + "item.middle-earth.medgon_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Medgon", + "item.middle-earth.medgon_brickwork_wall": "Muret en maçonnerie de Medgon", + "item.middle-earth.medgon_button": "Bouton en Medgon", + "item.middle-earth.medgon_carved_window": "Fenêtre sculptée en Medgon", + "item.middle-earth.medgon_chair": "Chaise en Medgon", + "item.middle-earth.medgon_gold_ore": "Minerai d'or de Medgon", + "item.middle-earth.medgon_iron_ore": "Minerai de fer de Medgon", + "item.middle-earth.medgon_lead_ore": "Minerai de plomb de Medgon", + "item.middle-earth.medgon_mithril_ore": "Minerai de mithril de Medgon", + "item.middle-earth.medgon_pillar": "Pilier en Medgon", + "item.middle-earth.medgon_pressure_plate": "Plaque de pression en Medgon", + "item.middle-earth.medgon_rocks": "Éboulis de Medgon", + "item.middle-earth.medgon_silver_ore": "Minerai d'argent de Medgon", + "item.middle-earth.medgon_slab": "Dalle en Medgon", + "item.middle-earth.medgon_stairs": "Escalier en Medgon", + "item.middle-earth.medgon_stool": "Tabouret en Medgon", + "item.middle-earth.medgon_table": "Table en Medgon", + "item.middle-earth.medgon_tiles": "Medgon carrelée", + "item.middle-earth.medgon_trapdoor": "Trappe en Medgon", + "item.middle-earth.medgon_vertical_slab": "Dalle verticale en Medgon", + "item.middle-earth.medgon_wall": "Muret en Medgon", + "item.middle-earth.medium_citrine_bud": "Cristal moyen de citrine", + "item.middle-earth.medium_glowstone_bud": "Cristal moyen de pierre lumineuse", + "item.middle-earth.medium_quartz_bud": "Cristal moyen de quartz", + "item.middle-earth.medium_red_agate_bud": "Cristal moyen d'agate rouge", + "item.middle-earth.middle_earth_map": "Carte de la Terre du Milieu", + "item.middle-earth.mire": "Bourbier", + "item.middle-earth.mire_bricks": "Briques de bourbier", + "item.middle-earth.mire_slab": "Dalle de bourbier", + "item.middle-earth.mire_stairs": "Escaliers de bourbier", + "item.middle-earth.mirkwood_bench": "Banc de la Forêt noire", + "item.middle-earth.mirkwood_button": "Bouton de la Forêt noire", + "item.middle-earth.mirkwood_chair": "Chaise de la Forêt noire", + "item.middle-earth.mirkwood_door": "Porte de la Forêt noire", + "item.middle-earth.mirkwood_fence": "Barrière de la Forêt noire", + "item.middle-earth.mirkwood_fence_gate": "Portillon de la Forêt noire", + "item.middle-earth.mirkwood_hanging_roots": "Racines pendantes de la Forêt noire", + "item.middle-earth.mirkwood_ladder": "Échelle de la Forêt noire", + "item.middle-earth.mirkwood_leaves": "Feuilles de la Forêt noire", + "item.middle-earth.mirkwood_log": "Bûche de la Forêt noire", + "item.middle-earth.mirkwood_planks": "Planches de la Forêt noire", + "item.middle-earth.mirkwood_pressure_plate": "Plaque de pression de la Forêt noire", + "item.middle-earth.mirkwood_roofing": "Toiture de la Forêt noire", + "item.middle-earth.mirkwood_roofing_slab": "Dalle de toiture de la Forêt noire", + "item.middle-earth.mirkwood_roofing_stairs": "Escalier de toiture de la Forêt noire", + "item.middle-earth.mirkwood_roofing_vertical_slab": "Dalle verticale de toiture de la Forêt noire", + "item.middle-earth.mirkwood_roofing_wall": "Muret de toiture de la Forêt noire", + "item.middle-earth.mirkwood_roots": "Racines de la Forêt noire", + "item.middle-earth.mirkwood_sapling": "Pousse de la forêt noire", + "item.middle-earth.mirkwood_shingles": "Bardeaux de la Forêt noire", + "item.middle-earth.mirkwood_shingles_slab": "Dalle en bardeaux de la Forêt noire", + "item.middle-earth.mirkwood_shingles_stairs": "Escaliers en bardeaux de la Forêt noire", + "item.middle-earth.mirkwood_shingles_vertical_slab": "Dalle verticale en bardeaux de la Forêt noire", + "item.middle-earth.mirkwood_shingles_wall": "Muret en bardeaux de la Forêt noire", + "item.middle-earth.mirkwood_slab": "Dalle de la Forêt noire", + "item.middle-earth.mirkwood_stairs": "Escaliers de la Forêt noire", + "item.middle-earth.mirkwood_stool": "Tabouret de la Forêt noire", + "item.middle-earth.mirkwood_table": "Table de la Forêt noire", + "item.middle-earth.mirkwood_trapdoor": "Trappe de la Forêt noire", + "item.middle-earth.mirkwood_vertical_slab": "Dalle verticale de la Forêt noire", + "item.middle-earth.mirkwood_vines": "Lianes de la Forêt noire", + "item.middle-earth.mirkwood_wood": "Bois de la Forêt noire", + "item.middle-earth.mirkwood_wood_fence": "Barrière en bois de la Forêt noire", + "item.middle-earth.mirkwood_wood_slab": "Dalle en bois de la Forêt noire", + "item.middle-earth.mirkwood_wood_stairs": "Escaliers en bois de la Forêt noire", + "item.middle-earth.mirkwood_wood_vertical_slab": "Dalle verticale en bois de la Forêt noire", + "item.middle-earth.mirkwood_wood_wall": "Muret en bois de la Forêt noire", + "item.middle-earth.misty_mountains_orcs_banner_pattern": "Motif de bannière des orques des Monts Brumeux", + "item.middle-earth.misty_mountains_orcs_banner_pattern.desc": "Les symboles des Orques des Monts Brumeux", + "item.middle-earth.mithril_axe": "Hache en Mithril", + "item.middle-earth.mithril_block": "Bloc de Mithril", + "item.middle-earth.mithril_hoe": "Houe en Mithril", + "item.middle-earth.mithril_ingot": "Lingot de mithril", + "item.middle-earth.mithril_nugget": "Pépite de mithril", + "item.middle-earth.mithril_pickaxe": "Pioche en Mithril", + "item.middle-earth.mithril_shovel": "Pelle en Mithril", + "item.middle-earth.mithril_smithing_hammer": "Marteau de forge en mithril", + "item.middle-earth.mixed_stones": "Pierres mixtes", + "item.middle-earth.mixed_stones_brickwork": "Maçonnerie en pierres mixtes", + "item.middle-earth.mixed_stones_brickwork_slab": "Dalle de maçonnerie en pierres mixtes", + "item.middle-earth.mixed_stones_brickwork_stairs": "Escalier en maçonnerie de pierres mixtes", + "item.middle-earth.mixed_stones_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierres mixtes", + "item.middle-earth.mixed_stones_brickwork_wall": "Muret en maçonnerie de pierres mixtes", + "item.middle-earth.mixed_stones_slab": "Dalle en pierres mixtes", + "item.middle-earth.mixed_stones_stairs": "Escalier en pierres mixtes", + "item.middle-earth.mixed_stones_vertical_slab": "Dalle verticale en pierres mixtes", + "item.middle-earth.mixed_stones_wall": "Muret en pierres mixtes", + "item.middle-earth.mordor_axe": "Hache de Mordor", + "item.middle-earth.mordor_banner_pattern": "Motif de bannière du Mordor", + "item.middle-earth.mordor_banner_pattern.desc": "Le Grand Œil de Sauron", + "item.middle-earth.mordor_black_braced_shield": "Bouclier à renforts noir de Mordor", + "item.middle-earth.mordor_black_large_shield": "Grand bouclier noir de Mordor", + "item.middle-earth.mordor_black_numenorean_cape": "Cape Númenóréenne noire", + "item.middle-earth.mordor_black_numenorean_plate_boots": "Bottes de plates Númenóréennes noires", + "item.middle-earth.mordor_black_numenorean_plate_chestplate": "Plastron de plates Númenóréen noir", + "item.middle-earth.mordor_black_numenorean_plate_helmet": "Casque de plates Númenóréen noir", + "item.middle-earth.mordor_black_numenorean_plate_leggings": "Jambières de plates Númenóréennes noires", + "item.middle-earth.mordor_black_round_shield": "Bouclier rond noir de Mordor", + "item.middle-earth.mordor_bow": "Arc de Mordor", + "item.middle-earth.mordor_braced_shield": "Bouclier à renforts de Mordor", + "item.middle-earth.mordor_chestplate": "Plastron de Mordor", + "item.middle-earth.mordor_crest_helmet": "Casque à crête de Mordor", + "item.middle-earth.mordor_cuirass": "Cuirasse de Mordor", + "item.middle-earth.mordor_dagger": "Dague de Mordor", + "item.middle-earth.mordor_degraded_gondorian_chestplate": "Plastron gondorien dégradé", + "item.middle-earth.mordor_elite_axe": "Hache d'élite de Mordor", + "item.middle-earth.mordor_elite_cleaver": "Hachoir d'élite de Mordor", + "item.middle-earth.mordor_elite_dagger": "Dague d'élite de Mordor", + "item.middle-earth.mordor_elite_longbow": "Arc long d'élite de Mordor", + "item.middle-earth.mordor_elite_spear": "Lance d'élite de Mordor", + "item.middle-earth.mordor_elite_warblade": "Lame de guerre d'élite de Mordor", + "item.middle-earth.mordor_falchion": "Fauchon de Mordor", + "item.middle-earth.mordor_gorget_hauberk": "Haubert à gorgerin de Mordor", + "item.middle-earth.mordor_great_helmet": "Heaume de Mordor", + "item.middle-earth.mordor_heavy_shield": "Bouclier lourd de Mordor", + "item.middle-earth.mordor_helmet": "Casque de Mordor", + "item.middle-earth.mordor_kettle_hat": "Chapel de fer de Mordor", + "item.middle-earth.mordor_kettle_hat_with_coif": "Chapel de fer de Mordor avec coiffe", + "item.middle-earth.mordor_large_shield": "Grand bouclier de Mordor", + "item.middle-earth.mordor_leather_cuirass": "Cuirasse en cuir de Mordor", + "item.middle-earth.mordor_mandible_helmet": "Casque à mandibule de Mordor", + "item.middle-earth.mordor_nasal_helmet": "Casque à nasal de Mordor", + "item.middle-earth.mordor_painted_braced_shield": "Bouclier à renforts peint de Mordor", + "item.middle-earth.mordor_painted_cuirass": "Cuirasse peinte de Mordor", + "item.middle-earth.mordor_painted_heavy_shield": "Bouclier lourd peint de Mordor", + "item.middle-earth.mordor_painted_large_shield": "Grand bouclier peint de Mordor", + "item.middle-earth.mordor_painted_leather_cuirass": "Cuirasse en cuir peinte de Mordor", + "item.middle-earth.mordor_painted_round_shield": "Bouclier rond peint de Mordor", + "item.middle-earth.mordor_painted_wooden_shield": "Bouclier en bois peint de Mordor", + "item.middle-earth.mordor_plate_boots": "Bottes de plates de Mordor", + "item.middle-earth.mordor_reinforced_coat": "Manteau renforcé de Mordor", + "item.middle-earth.mordor_round_shield": "Bouclier rond de Mordor", + "item.middle-earth.mordor_sallet": "Salade de Mordor", + "item.middle-earth.mordor_scale_coat": "Cotte à écailles de Mordor", + "item.middle-earth.mordor_scimitar": "Cimeterre de Mordor", + "item.middle-earth.mordor_snout_helmet": "Casque à museau de Mordor", + "item.middle-earth.mordor_spear": "Lance de Mordor", + "item.middle-earth.mordor_wooden_shield": "Bouclier en bois de Mordor", + "item.middle-earth.morgul_ivy": "Lierre de Morgul", + "item.middle-earth.morgul_knife": "Couteau de Morgul", + "item.middle-earth.morsel": "Morsel", + "item.middle-earth.morsel_tiller": "Parterre de morsel", + "item.middle-earth.moss": "Mousse", + "item.middle-earth.moss_slab": "Dalle de mousse", + "item.middle-earth.moss_stairs": "Escaliers de mousse", + "item.middle-earth.mossy_andesite_bricks": "Briques d'andésite moussues", + "item.middle-earth.mossy_andesite_pillar": "Pilier en andésite moussue", + "item.middle-earth.mossy_andesite_tiles": "Andésite carrelée moussue", + "item.middle-earth.mossy_basalt_bricks": "Briques de basalte moussues", + "item.middle-earth.mossy_basalt_pillar": "Pilier en basalte moussu", + "item.middle-earth.mossy_basalt_tiles": "Basalte carrelé moussu", + "item.middle-earth.mossy_blackstone_pillar": "Pilier en pierre noire moussue", + "item.middle-earth.mossy_blackstone_tiles": "Roche noire carrelée moussue", + "item.middle-earth.mossy_blue_tuff_bricks": "Briques en tuf bleu moussues", + "item.middle-earth.mossy_blue_tuff_pillar": "Pilier en tuf bleu moussu", + "item.middle-earth.mossy_blue_tuff_tiles": "Tuf bleu carrelé moussu", + "item.middle-earth.mossy_calcite_bricks": "Briques en calcite moussues", + "item.middle-earth.mossy_calcite_pillar": "Pilier en calcite moussue", + "item.middle-earth.mossy_calcite_tiles": "Calcite carrelée moussue", + "item.middle-earth.mossy_cobbled_andesite": "Pierre d'andésite moussue", + "item.middle-earth.mossy_cobbled_andesite_slab": "Dalle en pierre d'andésite moussue", + "item.middle-earth.mossy_cobbled_andesite_stairs": "Escaliers en pierre d'andésite moussue", + "item.middle-earth.mossy_cobbled_andesite_vertical_slab": "Dalle verticale en pierre d'andésite moussue", + "item.middle-earth.mossy_cobbled_andesite_wall": "Muret en pierre d'andésite moussue", + "item.middle-earth.mossy_cobbled_basalt": "Pierre de basalte moussue", + "item.middle-earth.mossy_cobbled_basalt_slab": "Dalle en pierre de basalte moussue", + "item.middle-earth.mossy_cobbled_basalt_stairs": "Escalier en pierre de basalte moussue", + "item.middle-earth.mossy_cobbled_basalt_vertical_slab": "Dalle verticale en pierre de basalte moussue", + "item.middle-earth.mossy_cobbled_basalt_wall": "Muret en pierre de basalte moussue", + "item.middle-earth.mossy_cobbled_blackstone": "Pierre noire taillée moussue", + "item.middle-earth.mossy_cobbled_blackstone_slab": "Dalle en pierre noire taillée moussue", + "item.middle-earth.mossy_cobbled_blackstone_stairs": "Escalier en pierre noire taillée moussue", + "item.middle-earth.mossy_cobbled_blackstone_vertical_slab": "Dalle verticale en pierre noire taillée moussue", + "item.middle-earth.mossy_cobbled_blackstone_wall": "Muret en pierre noire taillée moussue", + "item.middle-earth.mossy_cobbled_blue_tuff": "Pierre de tuf bleu moussue", + "item.middle-earth.mossy_cobbled_blue_tuff_slab": "Dalle en pierre de tuf bleu moussue", + "item.middle-earth.mossy_cobbled_blue_tuff_stairs": "Escaliers en pierre de tuf bleu moussue", + "item.middle-earth.mossy_cobbled_blue_tuff_vertical_slab": "Dalle verticale en pierre de tuf bleu moussue", + "item.middle-earth.mossy_cobbled_blue_tuff_wall": "Muret en pierre de tuf bleu moussue", + "item.middle-earth.mossy_cobbled_calcite": "Pierre de calcite moussue", + "item.middle-earth.mossy_cobbled_calcite_slab": "Dalle en pierre de calcite moussue", + "item.middle-earth.mossy_cobbled_calcite_stairs": "Escaliers en pierres de calcite moussue", + "item.middle-earth.mossy_cobbled_calcite_vertical_slab": "Dalle verticale en pierre de calcite moussue", + "item.middle-earth.mossy_cobbled_calcite_wall": "Muret en pierre de calcite moussue", + "item.middle-earth.mossy_cobbled_deepslate": "Pierre des abîmes moussue", + "item.middle-earth.mossy_cobbled_deepslate_slab": "Dalle de pierre des abîmes moussue", + "item.middle-earth.mossy_cobbled_deepslate_stairs": "Escalier en pierre des abîmes moussue", + "item.middle-earth.mossy_cobbled_deepslate_vertical_slab": "Dalle verticale de pierre des abîmes moussue", + "item.middle-earth.mossy_cobbled_deepslate_wall": "Muret en pierre des abîmes moussue", + "item.middle-earth.mossy_cobbled_diorite": "Pierre de diorite moussue", + "item.middle-earth.mossy_cobbled_diorite_slab": "Dalle en pierre de diorite moussue", + "item.middle-earth.mossy_cobbled_diorite_stairs": "Escaliers en pierre de diorite moussue", + "item.middle-earth.mossy_cobbled_diorite_vertical_slab": "Dalle verticale en pierre de diorite moussue", + "item.middle-earth.mossy_cobbled_diorite_wall": "Muret en pierre de diorite moussue", + "item.middle-earth.mossy_cobbled_dolomite": "Pierre de dolomite moussue", + "item.middle-earth.mossy_cobbled_dolomite_slab": "Dalle en pierre de dolomite moussue", + "item.middle-earth.mossy_cobbled_dolomite_stairs": "Escaliers en pierre de dolomite moussue", + "item.middle-earth.mossy_cobbled_dolomite_vertical_slab": "Dalle verticale en pierre de dolomite moussue", + "item.middle-earth.mossy_cobbled_dolomite_wall": "Muret en pierre de dolomite moussue", + "item.middle-earth.mossy_cobbled_gabbro": "Pierre de gabbro moussue", + "item.middle-earth.mossy_cobbled_gabbro_slab": "Dalle en pierre de gabbro moussue", + "item.middle-earth.mossy_cobbled_gabbro_stairs": "Escalier en pierre de gabbro moussue", + "item.middle-earth.mossy_cobbled_gabbro_vertical_slab": "Dalle verticale en pierre de gabbro moussue", + "item.middle-earth.mossy_cobbled_gabbro_wall": "Muret en pierre de gabbro moussue", + "item.middle-earth.mossy_cobbled_galonn": "Pierre de Galonn moussue", + "item.middle-earth.mossy_cobbled_galonn_slab": "Dalle en pierre de Galonn moussue", + "item.middle-earth.mossy_cobbled_galonn_stairs": "Escalier en pierre de Galonn moussue", + "item.middle-earth.mossy_cobbled_galonn_vertical_slab": "Dalle verticale en pierre de Galonn moussue", + "item.middle-earth.mossy_cobbled_galonn_wall": "Muret en pierre de Galonn moussue", + "item.middle-earth.mossy_cobbled_gneiss": "Pierre de gneiss moussue", + "item.middle-earth.mossy_cobbled_gneiss_slab": "Dalle en pierre de gneiss moussue", + "item.middle-earth.mossy_cobbled_gneiss_stairs": "Escalier en pierre de gneiss moussue", + "item.middle-earth.mossy_cobbled_gneiss_vertical_slab": "Dalle verticale en pierre de gneiss moussue", + "item.middle-earth.mossy_cobbled_gneiss_wall": "Muret en pierre de gneiss moussue", + "item.middle-earth.mossy_cobbled_granite": "Pierre de granite moussue", + "item.middle-earth.mossy_cobbled_granite_slab": "Dalle en pierre de granite moussue", + "item.middle-earth.mossy_cobbled_granite_stairs": "Escaliers en pierre de granite moussue", + "item.middle-earth.mossy_cobbled_granite_vertical_slab": "Dalle verticale en pierre de granite moussue", + "item.middle-earth.mossy_cobbled_granite_wall": "Muret en pierre de granite moussue", + "item.middle-earth.mossy_cobbled_hematite": "Pierre d'hématite moussue", + "item.middle-earth.mossy_cobbled_hematite_slab": "Dalle en pierre d'hématite moussue", + "item.middle-earth.mossy_cobbled_hematite_stairs": "Escalier en pierre d'hématite moussue", + "item.middle-earth.mossy_cobbled_hematite_vertical_slab": "Dalle verticale en pierre d'hématite moussue", + "item.middle-earth.mossy_cobbled_hematite_wall": "Muret en pierre d'hématite moussue", + "item.middle-earth.mossy_cobbled_ironstone": "Pierre de fer taillée moussue", + "item.middle-earth.mossy_cobbled_ironstone_slab": "Dalle en pierre de fer taillée moussue", + "item.middle-earth.mossy_cobbled_ironstone_stairs": "Escalier en pierre de fer taillée moussue", + "item.middle-earth.mossy_cobbled_ironstone_vertical_slab": "Dalle verticale en pierre de fer taillée moussue", + "item.middle-earth.mossy_cobbled_ironstone_wall": "Muret en pierre de fer taillée moussue", + "item.middle-earth.mossy_cobbled_izheraban": "Pierre d'Izhêr'Aban moussue", + "item.middle-earth.mossy_cobbled_izheraban_slab": "Dalle en pierre d'Izhêr'Aban moussue", + "item.middle-earth.mossy_cobbled_izheraban_stairs": "Escalier en pierre d'Izhêr'Aban moussue", + "item.middle-earth.mossy_cobbled_izheraban_vertical_slab": "Dalle verticale en pierre d'Izhêr'Aban moussue", + "item.middle-earth.mossy_cobbled_izheraban_wall": "Muret en pierre d'Izhêr'Aban moussue", + "item.middle-earth.mossy_cobbled_limestone": "Pierre de calcaire moussue", + "item.middle-earth.mossy_cobbled_limestone_slab": "Dalle en pierre de calcaire moussue", + "item.middle-earth.mossy_cobbled_limestone_stairs": "Escaliers en pierre de calcaire moussue", + "item.middle-earth.mossy_cobbled_limestone_vertical_slab": "Dalle verticale en pierre de calcaire moussue", + "item.middle-earth.mossy_cobbled_limestone_wall": "Muret en pierre de calcaire moussue", + "item.middle-earth.mossy_cobbled_medgon": "Pierre de Medgon moussue", + "item.middle-earth.mossy_cobbled_medgon_slab": "Dalle en pierre de Medgon moussue", + "item.middle-earth.mossy_cobbled_medgon_stairs": "Escalier en pierre de Medgon moussue", + "item.middle-earth.mossy_cobbled_medgon_vertical_slab": "Dalle verticale en pierre de Medgon moussue", + "item.middle-earth.mossy_cobbled_medgon_wall": "Muret en pierre de Medgon moussue", + "item.middle-earth.mossy_cobbled_pumice": "Pierre ponce taillée moussue", + "item.middle-earth.mossy_cobbled_pumice_slab": "Dalle en pierre ponce taillée moussue", + "item.middle-earth.mossy_cobbled_pumice_stairs": "Escalier en pierre ponce taillée moussue", + "item.middle-earth.mossy_cobbled_pumice_vertical_slab": "Dalle verticale en pierre ponce taillée moussue", + "item.middle-earth.mossy_cobbled_pumice_wall": "Muret en pierre ponce taillée moussue", + "item.middle-earth.mossy_cobbled_slate": "Pierre d'ardoise moussue", + "item.middle-earth.mossy_cobbled_slate_slab": "Dalle en pierre d'ardoise moussue", + "item.middle-earth.mossy_cobbled_slate_stairs": "Escalier en pierre d'ardoise moussue", + "item.middle-earth.mossy_cobbled_slate_vertical_slab": "Dalle verticale en pierre d'ardoise moussue", + "item.middle-earth.mossy_cobbled_slate_wall": "Muret en pierre d'ardoise moussue", + "item.middle-earth.mossy_cobbled_tuff": "Pierre de tuf moussue", + "item.middle-earth.mossy_cobbled_tuff_slab": "Dalle en pierre de tuf moussue", + "item.middle-earth.mossy_cobbled_tuff_stairs": "Escalier en pierre de tuf moussue", + "item.middle-earth.mossy_cobbled_tuff_vertical_slab": "Dalle verticale en pierre de tuf moussue", + "item.middle-earth.mossy_cobbled_tuff_wall": "Muret en pierre de tuf moussue", + "item.middle-earth.mossy_cobbled_zigilaban": "Pierre de Zigil'Aban moussue", + "item.middle-earth.mossy_cobbled_zigilaban_slab": "Dalle en pierre de Zigil'Aban moussue", + "item.middle-earth.mossy_cobbled_zigilaban_stairs": "Escalier en pierre de Zigil'Aban moussue", + "item.middle-earth.mossy_cobbled_zigilaban_vertical_slab": "Dalle verticale en pierre de Zigil'Aban moussue", + "item.middle-earth.mossy_cobbled_zigilaban_wall": "Muret en pierre de Zigil'Aban moussue", + "item.middle-earth.mossy_cobblestone_vertical_slab": "Dalle verticale en pierre moussue", + "item.middle-earth.mossy_deepslate_bricks": "Ardoise des abîmes taillée moussue", + "item.middle-earth.mossy_deepslate_pillar": "Pilier d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_tiles": "Ardoise des abîmes carrelée moussue", + "item.middle-earth.mossy_diorite_bricks": "Briques de diorite moussues", + "item.middle-earth.mossy_diorite_pillar": "Pilier en diorite moussue", + "item.middle-earth.mossy_diorite_tiles": "Diorite carrelée moussue", + "item.middle-earth.mossy_dolomite_bricks": "Briques de dolomite moussues", + "item.middle-earth.mossy_dolomite_pillar": "Pilier en dolomite moussue", + "item.middle-earth.mossy_dolomite_tiles": "Dolomite carrelée moussue", + "item.middle-earth.mossy_gabbro_bricks": "Briques en gabbro moussues", + "item.middle-earth.mossy_gabbro_pillar": "Pilier en gabbro moussu", + "item.middle-earth.mossy_gabbro_tiles": "Gabbro carrelé moussu", + "item.middle-earth.mossy_galonn_bricks": "Briques en Galonn moussues", + "item.middle-earth.mossy_galonn_pillar": "Pilier en Galonn moussue", + "item.middle-earth.mossy_galonn_tiles": "Galonn carrelée moussue", + "item.middle-earth.mossy_gneiss_bricks": "Briques en gneiss moussues", + "item.middle-earth.mossy_gneiss_pillar": "Pilier en gneiss moussu", + "item.middle-earth.mossy_gneiss_tiles": "Gneiss carrelé moussu", + "item.middle-earth.mossy_granite_bricks": "Briques de granite moussues", + "item.middle-earth.mossy_granite_pillar": "Pilier en granite moussu", + "item.middle-earth.mossy_granite_tiles": "Granite carrelé moussu", + "item.middle-earth.mossy_hematite_bricks": "Briques en hématite moussues", + "item.middle-earth.mossy_hematite_pillar": "Pilier en hématite moussue", + "item.middle-earth.mossy_hematite_tiles": "Hématite carrelée moussue", + "item.middle-earth.mossy_ironstone_bricks": "Briques en pierre de fer moussues", + "item.middle-earth.mossy_ironstone_pillar": "Pilier en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_tiles": "Pierre de fer carrelée moussue", + "item.middle-earth.mossy_izheraban_bricks": "Briques en Izhêr'Aban moussues", + "item.middle-earth.mossy_izheraban_pillar": "Pilier en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_tiles": "Izhêr'Aban carrelée moussue", + "item.middle-earth.mossy_limestone_bricks": "Briques de calcaire moussues", + "item.middle-earth.mossy_limestone_pillar": "Pilier en calcaire moussu", + "item.middle-earth.mossy_limestone_tiles": "Calcaire carrelé moussu", + "item.middle-earth.mossy_medgon_bricks": "Briques en Medgon moussues", + "item.middle-earth.mossy_medgon_pillar": "Pilier en Medgon moussue", + "item.middle-earth.mossy_medgon_tiles": "Medgon carrelée moussue", + "item.middle-earth.mossy_mixed_stones": "Pierres mixtes moussues", + "item.middle-earth.mossy_mixed_stones_slab": "Dalle en pierres mixtes moussues", + "item.middle-earth.mossy_mixed_stones_stairs": "Escalier en pierres mixtes moussues", + "item.middle-earth.mossy_mixed_stones_vertical_slab": "Dalle verticale en pierres mixtes moussues", + "item.middle-earth.mossy_mixed_stones_wall": "Muret en pierres mixtes moussues", + "item.middle-earth.mossy_nurgon_bricks": "Briques en Núrgon moussues", + "item.middle-earth.mossy_nurgon_pillar": "Pilier en Núrgon moussue", + "item.middle-earth.mossy_nurgon_tiles": "Núrgon carrelée moussue", + "item.middle-earth.mossy_polished_andesite": "Andésite polie moussue", + "item.middle-earth.mossy_polished_andesite_slab": "Dalle en andésite polie moussue", + "item.middle-earth.mossy_polished_andesite_stairs": "Escaliers en andésite polie moussue", + "item.middle-earth.mossy_polished_andesite_vertical_slab": "Dalle verticale en andésite polie moussue", + "item.middle-earth.mossy_polished_andesite_wall": "Muret en andésite polie moussue", + "item.middle-earth.mossy_polished_basalt": "Basalte poli moussu", + "item.middle-earth.mossy_polished_basalt_slab": "Dalle en basalte poli moussu", + "item.middle-earth.mossy_polished_basalt_stairs": "Escaliers en basalte poli moussu", + "item.middle-earth.mossy_polished_basalt_vertical_slab": "Dalle verticale en basalte poli moussu", + "item.middle-earth.mossy_polished_basalt_wall": "Muret en basalte poli moussu", + "item.middle-earth.mossy_polished_blackstone": "Pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_bricks": "Briques en pierre noire polie moussues", + "item.middle-earth.mossy_polished_blackstone_slab": "Dalle en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_stairs": "Escalier en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_wall": "Muret en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blue_tuff": "Tuf bleu poli moussu", + "item.middle-earth.mossy_polished_blue_tuff_slab": "Dalle en tuf bleu poli moussu", + "item.middle-earth.mossy_polished_blue_tuff_stairs": "Escaliers en tuf bleu poli moussu", + "item.middle-earth.mossy_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli moussu", + "item.middle-earth.mossy_polished_blue_tuff_wall": "Muret en tuf bleu poli moussu", + "item.middle-earth.mossy_polished_calcite": "Calcite polie moussue", + "item.middle-earth.mossy_polished_calcite_slab": "Dalle en calcite polie moussue", + "item.middle-earth.mossy_polished_calcite_stairs": "Escaliers en calcite polie moussue", + "item.middle-earth.mossy_polished_calcite_vertical_slab": "Dalle verticale en calcite polie moussue", + "item.middle-earth.mossy_polished_calcite_wall": "Muret en calcite polie moussue", + "item.middle-earth.mossy_polished_deepslate": "Ardoise des abîmes polie moussue", + "item.middle-earth.mossy_polished_deepslate_slab": "Dalle en ardoise des abîmes polie moussue", + "item.middle-earth.mossy_polished_deepslate_stairs": "Escaliers en ardoise des abîmes polie moussue", + "item.middle-earth.mossy_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie moussue", + "item.middle-earth.mossy_polished_deepslate_wall": "Muret en ardoise des abîmes polie moussue", + "item.middle-earth.mossy_polished_diorite": "Diorite polie moussue", + "item.middle-earth.mossy_polished_diorite_slab": "Dalle en diorite polie moussue", + "item.middle-earth.mossy_polished_diorite_stairs": "Escaliers en diorite polie moussue", + "item.middle-earth.mossy_polished_diorite_vertical_slab": "Dalle verticale en diorite polie moussue", + "item.middle-earth.mossy_polished_diorite_wall": "Muret en diorite polie moussue", + "item.middle-earth.mossy_polished_dolomite": "Dolomite polie moussue", + "item.middle-earth.mossy_polished_dolomite_slab": "Dalle en dolomite polie moussue", + "item.middle-earth.mossy_polished_dolomite_stairs": "Escaliers en dolomite polie moussue", + "item.middle-earth.mossy_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie moussue", + "item.middle-earth.mossy_polished_dolomite_wall": "Muret en dolomite polie moussue", + "item.middle-earth.mossy_polished_gabbro": "Gabbro poli moussu", + "item.middle-earth.mossy_polished_gabbro_slab": "Dalle en gabbro poli moussu", + "item.middle-earth.mossy_polished_gabbro_stairs": "Escalier en gabbro poli moussu", + "item.middle-earth.mossy_polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli moussu", + "item.middle-earth.mossy_polished_gabbro_wall": "Muret en gabbro poli moussu", + "item.middle-earth.mossy_polished_galonn": "Galonn polie moussue", + "item.middle-earth.mossy_polished_galonn_slab": "Dalle en Galonn polie moussue", + "item.middle-earth.mossy_polished_galonn_stairs": "Escalier en Galonn polie moussue", + "item.middle-earth.mossy_polished_galonn_vertical_slab": "Dalle verticale en Galonn polie moussue", + "item.middle-earth.mossy_polished_galonn_wall": "Muret en Galonn polie moussue", + "item.middle-earth.mossy_polished_gneiss": "Gneiss poli moussu", + "item.middle-earth.mossy_polished_gneiss_slab": "Dalle en gneiss poli moussu", + "item.middle-earth.mossy_polished_gneiss_stairs": "Escalier en gneiss poli moussu", + "item.middle-earth.mossy_polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli moussu", + "item.middle-earth.mossy_polished_gneiss_wall": "Muret en gneiss poli moussu", + "item.middle-earth.mossy_polished_granite": "Granite poli moussu", + "item.middle-earth.mossy_polished_granite_slab": "Dalle en granite poli moussu", + "item.middle-earth.mossy_polished_granite_stairs": "Escaliers en granite poli moussu", + "item.middle-earth.mossy_polished_granite_vertical_slab": "Dalle verticale en granite poli moussu", + "item.middle-earth.mossy_polished_granite_wall": "Muret en granite poli moussu", + "item.middle-earth.mossy_polished_hematite": "Hématite polie moussue", + "item.middle-earth.mossy_polished_hematite_slab": "Dalle en hématite polie moussue", + "item.middle-earth.mossy_polished_hematite_stairs": "Escalier en hématite polie moussue", + "item.middle-earth.mossy_polished_hematite_vertical_slab": "Dalle verticale en hématite polie moussue", + "item.middle-earth.mossy_polished_hematite_wall": "Muret en hématite polie moussue", + "item.middle-earth.mossy_polished_ironstone": "Pierre de fer polie moussue", + "item.middle-earth.mossy_polished_ironstone_slab": "Dalle en pierre de fer polie moussue", + "item.middle-earth.mossy_polished_ironstone_stairs": "Escalier en pierre de fer polie moussue", + "item.middle-earth.mossy_polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie moussue", + "item.middle-earth.mossy_polished_ironstone_wall": "Muret en pierre de fer polie moussue", + "item.middle-earth.mossy_polished_izheraban": "Izhêr'Aban polie moussue", + "item.middle-earth.mossy_polished_izheraban_slab": "Dalle en Izhêr'Aban polie moussue", + "item.middle-earth.mossy_polished_izheraban_stairs": "Escalier en Izhêr'Aban polie moussue", + "item.middle-earth.mossy_polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie moussue", + "item.middle-earth.mossy_polished_izheraban_wall": "Muret en Izhêr'Aban polie moussue", + "item.middle-earth.mossy_polished_limestone": "Calcaire poli moussu", + "item.middle-earth.mossy_polished_limestone_slab": "Dalle en calcaire poli moussu", + "item.middle-earth.mossy_polished_limestone_stairs": "Escaliers en calcaire poli moussu", + "item.middle-earth.mossy_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli moussu", + "item.middle-earth.mossy_polished_limestone_wall": "Muret en calcaire poli moussu", + "item.middle-earth.mossy_polished_medgon": "Medgon polie moussue", + "item.middle-earth.mossy_polished_medgon_slab": "Dalle en Medgon polie moussue", + "item.middle-earth.mossy_polished_medgon_stairs": "Escalier en Medgon polie moussue", + "item.middle-earth.mossy_polished_medgon_vertical_slab": "Dalle verticale en Medgon polie moussue", + "item.middle-earth.mossy_polished_medgon_wall": "Muret en Medgon polie moussue", + "item.middle-earth.mossy_polished_nurgon": "Núrgon polie moussue", + "item.middle-earth.mossy_polished_nurgon_slab": "Dalle en Núrgon polie moussue", + "item.middle-earth.mossy_polished_nurgon_stairs": "Escalier en Núrgon polie moussue", + "item.middle-earth.mossy_polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie moussue", + "item.middle-earth.mossy_polished_nurgon_wall": "Muret en Núrgon polie moussue", + "item.middle-earth.mossy_polished_pumice": "Pierre ponce polie moussue", + "item.middle-earth.mossy_polished_pumice_slab": "Dalle en pierre ponce polie moussue", + "item.middle-earth.mossy_polished_pumice_stairs": "Escalier en pierre ponce polie moussue", + "item.middle-earth.mossy_polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie moussue", + "item.middle-earth.mossy_polished_pumice_wall": "Muret en pierre ponce polie moussue", + "item.middle-earth.mossy_polished_slate": "Ardoise polie moussue", + "item.middle-earth.mossy_polished_slate_slab": "Dalle en ardoise polie moussue", + "item.middle-earth.mossy_polished_slate_stairs": "Escalier en ardoise polie moussue", + "item.middle-earth.mossy_polished_slate_vertical_slab": "Dalle verticale en ardoise polie moussue", + "item.middle-earth.mossy_polished_slate_wall": "Muret en ardoise polie moussue", + "item.middle-earth.mossy_polished_stone": "Roche polie moussue", + "item.middle-earth.mossy_polished_stone_slab": "Dalle en roche polie moussue", + "item.middle-earth.mossy_polished_stone_stairs": "Escalier en roche polie moussue", + "item.middle-earth.mossy_polished_stone_vertical_slab": "Dalle verticale en roche polie moussue", + "item.middle-earth.mossy_polished_stone_wall": "Muret en roche polie moussue", + "item.middle-earth.mossy_polished_tuff": "Tuf poli moussu", + "item.middle-earth.mossy_polished_tuff_slab": "Dalle en tuf poli moussu", + "item.middle-earth.mossy_polished_tuff_stairs": "Escalier en tuf poli moussu", + "item.middle-earth.mossy_polished_tuff_vertical_slab": "Dalle verticale en tuf poli moussu", + "item.middle-earth.mossy_polished_tuff_wall": "Muret en tuf poli moussu", + "item.middle-earth.mossy_polished_zigilaban": "Zigil'Aban polie moussue", + "item.middle-earth.mossy_polished_zigilaban_slab": "Dalle en Zigil'Aban polie moussue", + "item.middle-earth.mossy_polished_zigilaban_stairs": "Escalier en Zigil'Aban polie moussue", + "item.middle-earth.mossy_polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie moussue", + "item.middle-earth.mossy_polished_zigilaban_wall": "Muret en Zigil'Aban polie moussue", + "item.middle-earth.mossy_pumice_bricks": "Briques en pierre ponce moussues", + "item.middle-earth.mossy_pumice_pillar": "Pilier en pierre ponce moussue", + "item.middle-earth.mossy_pumice_tiles": "Pierre ponce carrelée moussue", + "item.middle-earth.mossy_slate_bricks": "Briques en ardoise moussues", + "item.middle-earth.mossy_slate_pillar": "Pilier en ardoise moussue", + "item.middle-earth.mossy_slate_tiles": "Ardoise carrelée moussue", + "item.middle-earth.mossy_smooth_andesite": "Andésite lisse moussue", + "item.middle-earth.mossy_smooth_andesite_slab": "Dalle en andésite lisse moussue", + "item.middle-earth.mossy_smooth_andesite_stairs": "Escalier en andésite lisse moussue", + "item.middle-earth.mossy_smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse moussue", + "item.middle-earth.mossy_smooth_andesite_wall": "Muret en andésite lisse moussue", + "item.middle-earth.mossy_smooth_basalt": "Basalte lisse moussu", + "item.middle-earth.mossy_smooth_basalt_slab": "Dalle en basalte lisse moussu", + "item.middle-earth.mossy_smooth_basalt_stairs": "Escalier en basalte lisse moussu", + "item.middle-earth.mossy_smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse moussu", + "item.middle-earth.mossy_smooth_basalt_wall": "Muret en basalte lisse moussu", + "item.middle-earth.mossy_smooth_blackstone": "Roche noire lisse moussue", + "item.middle-earth.mossy_smooth_blackstone_slab": "Dalle en roche noire lisse moussue", + "item.middle-earth.mossy_smooth_blackstone_stairs": "Escalier en roche noire lisse moussue", + "item.middle-earth.mossy_smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse moussue", + "item.middle-earth.mossy_smooth_blackstone_wall": "Muret en roche noire lisse moussue", + "item.middle-earth.mossy_smooth_calcite": "Calcite lisse moussue", + "item.middle-earth.mossy_smooth_calcite_slab": "Dalle en calcite lisse moussue", + "item.middle-earth.mossy_smooth_calcite_stairs": "Escalier en calcite lisse moussue", + "item.middle-earth.mossy_smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse moussue", + "item.middle-earth.mossy_smooth_calcite_wall": "Muret en calcite lisse moussue", + "item.middle-earth.mossy_smooth_deepslate": "Ardoise des abîmes lisse moussue", + "item.middle-earth.mossy_smooth_deepslate_slab": "Dalle en ardoise des abîmes lisse moussue", + "item.middle-earth.mossy_smooth_deepslate_stairs": "Escalier en ardoise des abîmes lisse moussue", + "item.middle-earth.mossy_smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse moussue", + "item.middle-earth.mossy_smooth_deepslate_wall": "Muret en ardoise des abîmes lisse moussue", + "item.middle-earth.mossy_smooth_diorite": "Diorite lisse moussue", + "item.middle-earth.mossy_smooth_diorite_slab": "Dalle en diorite lisse moussue", + "item.middle-earth.mossy_smooth_diorite_stairs": "Escalier en diorite lisse moussue", + "item.middle-earth.mossy_smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse moussue", + "item.middle-earth.mossy_smooth_diorite_wall": "Muret en diorite lisse moussue", + "item.middle-earth.mossy_smooth_dolomite": "Dolomite lisse moussue", + "item.middle-earth.mossy_smooth_dolomite_slab": "Dalle en dolomite lisse moussue", + "item.middle-earth.mossy_smooth_dolomite_stairs": "Escalier en dolomite lisse moussue", + "item.middle-earth.mossy_smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse moussue", + "item.middle-earth.mossy_smooth_dolomite_wall": "Muret en dolomite lisse moussue", + "item.middle-earth.mossy_smooth_galonn": "Galonn lisse moussue", + "item.middle-earth.mossy_smooth_galonn_slab": "Dalle en Galonn lisse moussue", + "item.middle-earth.mossy_smooth_galonn_stairs": "Escalier en Galonn lisse moussue", + "item.middle-earth.mossy_smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse moussue", + "item.middle-earth.mossy_smooth_galonn_wall": "Muret en Galonn lisse moussue", + "item.middle-earth.mossy_smooth_granite": "Granite lisse moussu", + "item.middle-earth.mossy_smooth_granite_slab": "Dalle en granite lisse moussu", + "item.middle-earth.mossy_smooth_granite_stairs": "Escalier en granite lisse moussu", + "item.middle-earth.mossy_smooth_granite_vertical_slab": "Dalle verticale en granite lisse moussu", + "item.middle-earth.mossy_smooth_granite_wall": "Muret en granite lisse moussu", + "item.middle-earth.mossy_smooth_izheraban": "Izhêr'Aban lisse moussue", + "item.middle-earth.mossy_smooth_izheraban_slab": "Dalle en Izhêr'Aban lisse moussue", + "item.middle-earth.mossy_smooth_izheraban_stairs": "Escalier en Izhêr'Aban lisse moussue", + "item.middle-earth.mossy_smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse moussue", + "item.middle-earth.mossy_smooth_izheraban_wall": "Muret en Izhêr'Aban lisse moussue", + "item.middle-earth.mossy_smooth_limestone": "Calcaire lisse moussu", + "item.middle-earth.mossy_smooth_limestone_slab": "Dalle en calcaire lisse moussu", + "item.middle-earth.mossy_smooth_limestone_stairs": "Escalier en calcaire lisse moussu", + "item.middle-earth.mossy_smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse moussu", + "item.middle-earth.mossy_smooth_limestone_wall": "Muret en calcaire lisse moussu", + "item.middle-earth.mossy_smooth_medgon": "Medgon lisse moussue", + "item.middle-earth.mossy_smooth_medgon_slab": "Dalle en Medgon lisse moussue", + "item.middle-earth.mossy_smooth_medgon_stairs": "Escalier en Medgon lisse moussue", + "item.middle-earth.mossy_smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse moussue", + "item.middle-earth.mossy_smooth_medgon_wall": "Muret en Medgon lisse moussue", + "item.middle-earth.mossy_smooth_stone": "Roche lisse moussue", + "item.middle-earth.mossy_smooth_stone_slab": "Dalle de roche lisse moussue", + "item.middle-earth.mossy_smooth_stone_stairs": "Escalier en roche lisse moussue", + "item.middle-earth.mossy_smooth_stone_vertical_slab": "Dalle verticale de roche lisse moussue", + "item.middle-earth.mossy_smooth_stone_wall": "Muret en roche lisse moussue", + "item.middle-earth.mossy_smooth_tuff": "Tuf lisse moussu", + "item.middle-earth.mossy_smooth_tuff_slab": "Dalle en tuf lisse moussu", + "item.middle-earth.mossy_smooth_tuff_stairs": "Escalier en tuf lisse moussu", + "item.middle-earth.mossy_smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse moussu", + "item.middle-earth.mossy_smooth_tuff_wall": "Muret en tuf lisse moussu", + "item.middle-earth.mossy_stone_brick_vertical_slab": "Dalle verticale en pierre taillée moussue", + "item.middle-earth.mossy_stone_pillar": "Pilier en roche moussue", + "item.middle-earth.mossy_stone_tiles": "Roche carrelée moussue", + "item.middle-earth.mossy_tuff_bricks": "Briques en tuf moussues", + "item.middle-earth.mossy_tuff_pillar": "Pilier en tuf moussu", + "item.middle-earth.mossy_tuff_tiles": "Tuf carrelé moussu", + "item.middle-earth.mossy_zigilaban_bricks": "Briques en Zigil'Aban moussues", + "item.middle-earth.mossy_zigilaban_pillar": "Pilier en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_tiles": "Zigil'Aban carrelée moussue", + "item.middle-earth.mud_brick_round_window": "Fenêtre ronde en brique de terre", + "item.middle-earth.mud_brick_round_window_pane": "Vitre ronde en brique de terre", + "item.middle-earth.mud_brick_vertical_slab": "Dalle verticale en brique de terre", + "item.middle-earth.mud_slab": "Dalle de boue", + "item.middle-earth.mud_stairs": "Escaliers de boue", + "item.middle-earth.mushroom_bench": "Banc en champignon", + "item.middle-earth.mushroom_button": "Bouton en champignon", + "item.middle-earth.mushroom_chair": "Chaise en champignon", + "item.middle-earth.mushroom_door": "Porte en champignon", + "item.middle-earth.mushroom_fence": "Barrière en champignon", + "item.middle-earth.mushroom_fence_gate": "Portillon en champignon", + "item.middle-earth.mushroom_ladder": "Échelle en champignon", + "item.middle-earth.mushroom_planks": "Planches de champignon", + "item.middle-earth.mushroom_pressure_plate": "Plaque de pression en champignon", + "item.middle-earth.mushroom_shingles": "Bardeaux de champignon", + "item.middle-earth.mushroom_shingles_slab": "Dalle en bardeaux de champignon", + "item.middle-earth.mushroom_shingles_stairs": "Escaliers en bardeaux de champignon", + "item.middle-earth.mushroom_shingles_vertical_slab": "Dalle verticale en bardeaux de champignon", + "item.middle-earth.mushroom_shingles_wall": "Muret en bardeaux de champignon", + "item.middle-earth.mushroom_slab": "Dalle en champignon", + "item.middle-earth.mushroom_stairs": "Escalier en champignon", + "item.middle-earth.mushroom_stem_fence": "Barrière en tige de champignon", + "item.middle-earth.mushroom_stem_wall": "Muret en tige de champignon", + "item.middle-earth.mushroom_stool": "Tabouret en champignon", + "item.middle-earth.mushroom_table": "Table en champignon", + "item.middle-earth.mushroom_trapdoor": "Trappe en champignon", + "item.middle-earth.mushroom_vertical_slab": "Dalle verticale en champignon", + "item.middle-earth.narsil": "Narsil", + "item.middle-earth.nazgul_hood": "Capuche de Nazgûl", + "item.middle-earth.nazgul_robes": "Robes de Nazgûl", + "item.middle-earth.nazgul_sword": "Épée de Nazgûl", + "item.middle-earth.net": "Filet", + "item.middle-earth.nether_brick_vertical_slab": "Dalle verticale en brique du nether", + "item.middle-earth.netherite_dagger": "Dague en Netherite", + "item.middle-earth.netherite_spear": "Lance en Netherite", + "item.middle-earth.noble_smithing_hammer": "Marteau de forge noble", + "item.middle-earth.noldorin_longsword": "Épée longue Noldorine", + "item.middle-earth.nurgon": "Núrgon", + "item.middle-earth.nurgon_bricks": "Briques en Núrgon", + "item.middle-earth.nurgon_button": "Bouton en Núrgon", + "item.middle-earth.nurgon_chair": "Chaise en Núrgon", + "item.middle-earth.nurgon_gold_ore": "Minerai d'or de Núrgon", + "item.middle-earth.nurgon_iron_ore": "Minerai de fer de Núrgon", + "item.middle-earth.nurgon_lead_ore": "Minerai de plomb de Núrgon", + "item.middle-earth.nurgon_pillar": "Pilier en Núrgon", + "item.middle-earth.nurgon_pressure_plate": "Plaque de pression en Núrgon", + "item.middle-earth.nurgon_rocks": "Éboulis de Núrgon", + "item.middle-earth.nurgon_silver_ore": "Minerai d'argent de Núrgon", + "item.middle-earth.nurgon_slab": "Dalle en Núrgon", + "item.middle-earth.nurgon_stairs": "Escalier en Núrgon", + "item.middle-earth.nurgon_stool": "Tabouret en Núrgon", + "item.middle-earth.nurgon_table": "Table en Núrgon", + "item.middle-earth.nurgon_tiles": "Núrgon carrelée", + "item.middle-earth.nurgon_tin_ore": "Minerai d'étain de Núrgon", + "item.middle-earth.nurgon_trapdoor": "Trappe en Núrgon", + "item.middle-earth.nurgon_vertical_slab": "Dalle verticale en Núrgon", + "item.middle-earth.nurgon_wall": "Muret en Núrgon", + "item.middle-earth.oak_bench": "Banc en chêne", + "item.middle-earth.oak_chair": "Chaise en chêne", + "item.middle-earth.oak_ladder": "Échelle en chêne", + "item.middle-earth.oak_shingles": "Bardeaux de chêne", + "item.middle-earth.oak_shingles_slab": "Dalle en bardeaux de chêne", + "item.middle-earth.oak_shingles_stairs": "Escaliers en bardeaux de chêne", + "item.middle-earth.oak_shingles_vertical_slab": "Dalle verticale en bardeaux de chêne", + "item.middle-earth.oak_shingles_wall": "Muret en bardeaux de chêne", + "item.middle-earth.oak_stable_door": "Porte d'écurie en chêne", + "item.middle-earth.oak_stool": "Tabouret en chêne", + "item.middle-earth.oak_table": "Table en chêne", + "item.middle-earth.oak_vertical_slab": "Dalle verticale en chêne", + "item.middle-earth.oak_wood_fence": "Barrière en bois de chêne", + "item.middle-earth.oak_wood_slab": "Dalle en bois de chêne", + "item.middle-earth.oak_wood_stairs": "Escalier en bois de chêne", + "item.middle-earth.oak_wood_vertical_slab": "Dalle verticale en bois de chêne", + "item.middle-earth.oak_wood_wall": "Muret en bois de chêne", + "item.middle-earth.off_blue_roof_tiles": "Tuiles de toit bleu délavé", + "item.middle-earth.off_brown_roof_tiles": "Tuiles de toit marron délavé", + "item.middle-earth.off_cyan_roof_tiles": "Tuiles de toit cyan délavé", + "item.middle-earth.off_gray_roof_tiles": "Tuiles de toit gris délavé", + "item.middle-earth.off_green_roof_tiles": "Tuiles de toit vert délavé", + "item.middle-earth.off_red_roof_tiles": "Tuiles de toit rouge délavé", + "item.middle-earth.off_yellow_roof_tiles": "Tuiles de toit jaune délavé", + "item.middle-earth.old_andesite": "Vieille andésite", + "item.middle-earth.old_andesite_slab": "Dalle de vieille andésite", + "item.middle-earth.old_andesite_stairs": "Escalier en vieille andésite", + "item.middle-earth.old_andesite_vertical_slab": "Dalle verticale de vieille andésite", + "item.middle-earth.old_andesite_wall": "Muret en vieille andésite", + "item.middle-earth.old_basalt": "Vieux basalte", + "item.middle-earth.old_basalt_slab": "Dalle de vieux basalte", + "item.middle-earth.old_basalt_stairs": "Escalier en vieux basalte", + "item.middle-earth.old_basalt_vertical_slab": "Dalle verticale de vieux basalte", + "item.middle-earth.old_basalt_wall": "Muret en vieux basalte", + "item.middle-earth.old_blackstone": "Vieille roche noire", + "item.middle-earth.old_blackstone_slab": "Dalle de vieille roche noire", + "item.middle-earth.old_blackstone_stairs": "Escalier en vieille roche noire", + "item.middle-earth.old_blackstone_vertical_slab": "Dalle verticale de vieille roche noire", + "item.middle-earth.old_blackstone_wall": "Muret en vieille roche noire", + "item.middle-earth.old_bricks": "Briques anciennes", + "item.middle-earth.old_calcite": "Vieille calcite", + "item.middle-earth.old_calcite_slab": "Dalle de vieille calcite", + "item.middle-earth.old_calcite_stairs": "Escalier en vieille calcite", + "item.middle-earth.old_calcite_vertical_slab": "Dalle verticale de vieille calcite", + "item.middle-earth.old_calcite_wall": "Muret en vieille calcite", + "item.middle-earth.old_deepslate": "Vieille ardoise des abîmes", + "item.middle-earth.old_deepslate_slab": "Dalle de vieille ardoise des abîmes", + "item.middle-earth.old_deepslate_stairs": "Escalier en vieille ardoise des abîmes", + "item.middle-earth.old_deepslate_vertical_slab": "Dalle verticale de vieille ardoise des abîmes", + "item.middle-earth.old_deepslate_wall": "Muret en vieille ardoise des abîmes", + "item.middle-earth.old_diorite": "Vieille diorite", + "item.middle-earth.old_diorite_slab": "Dalle de vieille diorite", + "item.middle-earth.old_diorite_stairs": "Escalier en vieille diorite", + "item.middle-earth.old_diorite_vertical_slab": "Dalle verticale de vieille diorite", + "item.middle-earth.old_diorite_wall": "Muret en vieille diorite", + "item.middle-earth.old_dolomite": "Vieille dolomite", + "item.middle-earth.old_dolomite_slab": "Dalle de vieille dolomite", + "item.middle-earth.old_dolomite_stairs": "Escalier en vieille dolomite", + "item.middle-earth.old_dolomite_vertical_slab": "Dalle verticale de vieille dolomite", + "item.middle-earth.old_dolomite_wall": "Muret en vieille dolomite", + "item.middle-earth.old_galonn": "Vieille Galonn", + "item.middle-earth.old_galonn_slab": "Dalle de vieille Galonn", + "item.middle-earth.old_galonn_stairs": "Escalier en vieille Galonn", + "item.middle-earth.old_galonn_vertical_slab": "Dalle verticale de vieille Galonn", + "item.middle-earth.old_galonn_wall": "Muret en vieille Galonn", + "item.middle-earth.old_granite": "Vieux granite", + "item.middle-earth.old_granite_slab": "Dalle de vieux granite", + "item.middle-earth.old_granite_stairs": "Escalier en vieux granite", + "item.middle-earth.old_granite_vertical_slab": "Dalle verticale de vieux granite", + "item.middle-earth.old_granite_wall": "Muret en vieux granite", + "item.middle-earth.old_izheraban": "Vieille Izhêr'Aban", + "item.middle-earth.old_izheraban_slab": "Dalle de vieille Izhêr'Aban", + "item.middle-earth.old_izheraban_stairs": "Escalier en vieille Izhêr'Aban", + "item.middle-earth.old_izheraban_vertical_slab": "Dalle verticale de vieille Izhêr'Aban", + "item.middle-earth.old_izheraban_wall": "Muret en vieille Izhêr'Aban", + "item.middle-earth.old_limestone": "Vieux calcaire", + "item.middle-earth.old_limestone_slab": "Dalle de vieux calcaire", + "item.middle-earth.old_limestone_stairs": "Escalier en vieux calcaire", + "item.middle-earth.old_limestone_vertical_slab": "Dalle verticale de vieux calcaire", + "item.middle-earth.old_limestone_wall": "Muret en vieux calcaire", + "item.middle-earth.old_medgon": "Vieille Medgon", + "item.middle-earth.old_medgon_slab": "Dalle de vieille Medgon", + "item.middle-earth.old_medgon_stairs": "Escalier en vieille Medgon", + "item.middle-earth.old_medgon_vertical_slab": "Dalle verticale de vieille Medgon", + "item.middle-earth.old_medgon_wall": "Muret en vieille Medgon", + "item.middle-earth.old_podzol": "Vieux podzol", + "item.middle-earth.old_stone": "Vieille roche", + "item.middle-earth.old_stone_slab": "Dalle de vieille roche", + "item.middle-earth.old_stone_stairs": "Escalier en vieille roche", + "item.middle-earth.old_stone_vertical_slab": "Dalle verticale de vieille roche", + "item.middle-earth.old_stone_wall": "Muret en vieille roche", + "item.middle-earth.old_thatch": "Chaume ancien", + "item.middle-earth.old_thatch_slab": "Dalle en chaume ancien", + "item.middle-earth.old_thatch_stairs": "Escaliers en chaume ancien", + "item.middle-earth.old_thatch_vertical_slab": "Dalle verticale en chaume ancien", + "item.middle-earth.old_thatch_wall": "Muret en chaume ancien", + "item.middle-earth.old_tuff": "Vieux tuf", + "item.middle-earth.old_tuff_slab": "Dalle de vieux tuf", + "item.middle-earth.old_tuff_stairs": "Escalier en vieux tuf", + "item.middle-earth.old_tuff_vertical_slab": "Dalle verticale de vieux tuf", + "item.middle-earth.old_tuff_wall": "Muret en vieux tuf", + "item.middle-earth.onion": "Oignon", + "item.middle-earth.open_face_helmet": "Casque à visage ouvert", + "item.middle-earth.orange_clay_tiling": "Tuile d'argile orange", + "item.middle-earth.orange_clay_tiling_slab": "Dalle en tuile d'argile orange", + "item.middle-earth.orange_clay_tiling_stairs": "Escaliers en tuile d'argile orange", + "item.middle-earth.orange_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile orange", + "item.middle-earth.orange_clay_tiling_wall": "Muret en tuile d'argile orange", + "item.middle-earth.orange_flowers": "Fleurs orange", + "item.middle-earth.orange_maple_leaves": "Feuilles d'érable orange", + "item.middle-earth.orange_stained_lead_glass": "Verre plombé orange", + "item.middle-earth.orange_stained_lead_glass_pane": "Vitre plombée orange", + "item.middle-earth.orange_wool_slab": "Dalle en laine orange", + "item.middle-earth.orange_wool_stairs": "Escaliers en laine orange", + "item.middle-earth.orange_wool_vertical_slab": "Dalle verticale en laine orange", + "item.middle-earth.orc_axe": "Hache orque", + "item.middle-earth.orc_broadblade": "Épée large orque", + "item.middle-earth.orc_knife": "Couteau orque", + "item.middle-earth.orc_spear": "Lance orque", + "item.middle-earth.orc_sword": "Épée orque", + "item.middle-earth.orcish_belly_plate_chestplate": "Plastron ventru orque", + "item.middle-earth.orcish_black_fur_boots": "Bottes en fourrure noire orques", + "item.middle-earth.orcish_black_fur_surcoat_with_bone": "Surcot orque en fourrure noire orné d'os", + "item.middle-earth.orcish_bow": "Arc orque", + "item.middle-earth.orcish_braced_helmet": "Casque à renforts orque", + "item.middle-earth.orcish_braced_sandals": "Sandales à renforts orques", + "item.middle-earth.orcish_brown_fur_boots": "Bottes en fourrure brune orques", + "item.middle-earth.orcish_brown_fur_surcoat_with_bone": "Surcot orque en fourrure brune orné d'os", + "item.middle-earth.orcish_cape": "Cape orque", + "item.middle-earth.orcish_elite_smithing_hammer": "Marteau de forge orque d'élite", + "item.middle-earth.orcish_gray_fur_boots": "Bottes en fourrure grise orques", + "item.middle-earth.orcish_gray_fur_surcoat_with_bone": "Surcot orque en fourrure grise orné d'os", + "item.middle-earth.orcish_helmet": "Casque orque", + "item.middle-earth.orcish_leather_chestplate": "Plastron en cuir orque", + "item.middle-earth.orcish_leather_scale_vest": "Gilet à écailles en cuir orque", + "item.middle-earth.orcish_leather_skirt": "Jupe en cuir orque", + "item.middle-earth.orcish_leather_strap": "Lanière en cuir orque", + "item.middle-earth.orcish_leg_bracer": "Jambart orque", + "item.middle-earth.orcish_long_cape": "Longue cape orque", + "item.middle-earth.orcish_mail_coat": "Cotte de maille orque", + "item.middle-earth.orcish_mail_coif": "Coiffe de maille orque", + "item.middle-earth.orcish_mail_hauberk": "Haubert de maille orque", + "item.middle-earth.orcish_mail_shirt": "Chemise de maille orque", + "item.middle-earth.orcish_reinforced_leather_skirt": "Jupe en cuir renforcée orque", + "item.middle-earth.orcish_reinforced_leg_bracer": "Jambart renforcé orque", + "item.middle-earth.orcish_reinforced_strip_leather_skirt": "Jupe en lanières de cuir renforcée orque", + "item.middle-earth.orcish_sallet": "Salade orque", + "item.middle-earth.orcish_sandals": "Sandales orques", + "item.middle-earth.orcish_scale_vest": "Gilet à écailles orque", + "item.middle-earth.orcish_sconce": "Applique murale orque", + "item.middle-earth.orcish_shoulders": "Épaulières orques", + "item.middle-earth.orcish_smithing_hammer": "Marteau de forge orque", + "item.middle-earth.orcish_strip_leather_skirt": "Jupe en lanières de cuir orque", + "item.middle-earth.orcish_tan_fur_boots": "Bottes en fourrure fauve orques", + "item.middle-earth.orcish_tan_fur_surcoat_with_bone": "Surcot orque en fourrure fauve orné d'os", + "item.middle-earth.orcish_treated_anvil": "Enclume orque traitée", + "item.middle-earth.orcish_white_fur_boots": "Bottes en fourrure blanche orques", + "item.middle-earth.orcish_white_fur_surcoat_with_bone": "Surcot orque en fourrure blanche orné d'os", + "item.middle-earth.orcrist": "Orcrist", + "item.middle-earth.orthanc_commander_helmet": "Casque de commandant d'Orthanc", + "item.middle-earth.orthanc_guard_boots": "Bottes de la garde d'Orthanc", + "item.middle-earth.orthanc_guard_cape": "Cape de la garde d'Orthanc", + "item.middle-earth.orthanc_guard_chestplate": "Plastron de la garde d'Orthanc", + "item.middle-earth.orthanc_guard_helmet": "Casque de la garde d'Orthanc", + "item.middle-earth.orthanc_guard_leggings": "Jambières de la garde d'Orthanc", + "item.middle-earth.oxidized_copper_bars": "Barreaux en cuivre oxydé", + "item.middle-earth.oxidized_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé oxydé", + "item.middle-earth.oxidized_cut_copper_wall": "Muret en cuivre taillé oxydé", + "item.middle-earth.packed_mire": "Bourbier tassé", + "item.middle-earth.packed_mire_slab": "Dalle de bourbier tassé", + "item.middle-earth.packed_mire_stairs": "Escaliers de bourbier tassé", + "item.middle-earth.packed_mire_vertical_slab": "Dalle verticale de bourbier tassé", + "item.middle-earth.packed_mire_wall": "Muret de bourbier tassé", + "item.middle-earth.packed_mud_slab": "Dalle de boue compactée", + "item.middle-earth.packed_mud_stairs": "Escalier de boue compactée", + "item.middle-earth.packed_mud_vertical_slab": "Dalle verticale de boue compactée", + "item.middle-earth.packed_mud_wall": "Muret de boue compactée", + "item.middle-earth.palm_bench": "Banc en palmier", + "item.middle-earth.palm_button": "Bouton en palmier", + "item.middle-earth.palm_chair": "Chaise en palmier", + "item.middle-earth.palm_door": "Porte en palmier", + "item.middle-earth.palm_fence": "Barrière en palmier", + "item.middle-earth.palm_fence_gate": "Portillon en palmier", + "item.middle-earth.palm_ladder": "Échelle en palmier", + "item.middle-earth.palm_leaves": "Feuilles de palmier", + "item.middle-earth.palm_log": "Bûche de palmier", + "item.middle-earth.palm_planks": "Planches de palmier", + "item.middle-earth.palm_pressure_plate": "Plaque de pression en palmier", + "item.middle-earth.palm_roofing": "Toiture en palmier", + "item.middle-earth.palm_roofing_slab": "Dalle de toiture en palmier", + "item.middle-earth.palm_roofing_stairs": "Escalier de toiture en palmier", + "item.middle-earth.palm_roofing_vertical_slab": "Dalle verticale de toiture en palmier", + "item.middle-earth.palm_roofing_wall": "Muret de toiture en palmier", + "item.middle-earth.palm_sapling": "Pousse de palmier", + "item.middle-earth.palm_shingles": "Bardeaux de palmier", + "item.middle-earth.palm_shingles_slab": "Dalle en bardeaux de palmier", + "item.middle-earth.palm_shingles_stairs": "Escaliers en bardeaux de palmier", + "item.middle-earth.palm_shingles_vertical_slab": "Dalle verticale en bardeaux de palmier", + "item.middle-earth.palm_shingles_wall": "Muret en bardeaux de palmier", + "item.middle-earth.palm_slab": "Dalle en palmier", + "item.middle-earth.palm_stairs": "Escaliers en palmier", + "item.middle-earth.palm_stool": "Tabouret en palmier", + "item.middle-earth.palm_table": "Table en palmier", + "item.middle-earth.palm_trapdoor": "Trappe en palmier", + "item.middle-earth.palm_vertical_slab": "Dalle verticale en palmier", + "item.middle-earth.palm_wood": "Bois de palmier", + "item.middle-earth.palm_wood_fence": "Barrière en bois de palmier", + "item.middle-earth.palm_wood_slab": "Dalle en bois de palmier", + "item.middle-earth.palm_wood_stairs": "Escaliers en bois de palmier", + "item.middle-earth.palm_wood_vertical_slab": "Dalle verticale en bois de palmier", + "item.middle-earth.palm_wood_wall": "Muret en bois de palmier", + "item.middle-earth.pebble": "Caillou", + "item.middle-earth.pickaxe_head": "Tête de pioche", + "item.middle-earth.pine_bench": "Banc en pin", + "item.middle-earth.pine_branches": "Branches de pin", + "item.middle-earth.pine_button": "Bouton en pin", + "item.middle-earth.pine_chair": "Chaise en pin", + "item.middle-earth.pine_door": "Porte en pin", + "item.middle-earth.pine_fence": "Barrière en pin", + "item.middle-earth.pine_fence_gate": "Portillon en pin", + "item.middle-earth.pine_ladder": "Échelle en pin", + "item.middle-earth.pine_leaves": "Feuilles de pin", + "item.middle-earth.pine_log": "Bûche de pin", + "item.middle-earth.pine_planks": "Planches de pin", + "item.middle-earth.pine_pressure_plate": "Plaque de pression en pin", + "item.middle-earth.pine_roofing": "Toiture en pin", + "item.middle-earth.pine_roofing_slab": "Dalle de toiture en pin", + "item.middle-earth.pine_roofing_stairs": "Escalier de toiture en pin", + "item.middle-earth.pine_roofing_vertical_slab": "Dalle verticale de toiture en pin", + "item.middle-earth.pine_roofing_wall": "Muret de toiture en pin", + "item.middle-earth.pine_sapling": "Pousse de pin", + "item.middle-earth.pine_shingles": "Bardeaux de pin", + "item.middle-earth.pine_shingles_slab": "Dalle en bardeaux de pin", + "item.middle-earth.pine_shingles_stairs": "Escaliers en bardeaux de pin", + "item.middle-earth.pine_shingles_vertical_slab": "Dalle verticale en bardeaux de pin", + "item.middle-earth.pine_shingles_wall": "Muret en bardeaux de pin", + "item.middle-earth.pine_slab": "Dalle en pin", + "item.middle-earth.pine_stairs": "Escaliers en pin", + "item.middle-earth.pine_stool": "Tabouret en pin", + "item.middle-earth.pine_table": "Table en pin", + "item.middle-earth.pine_trapdoor": "Trappe en pin", + "item.middle-earth.pine_vertical_slab": "Dalle verticale en pin", + "item.middle-earth.pine_wood": "Bois de pin", + "item.middle-earth.pine_wood_fence": "Barrière en bois de pin", + "item.middle-earth.pine_wood_slab": "Dalle en bois de pin", + "item.middle-earth.pine_wood_stairs": "Escaliers en bois de pin", + "item.middle-earth.pine_wood_vertical_slab": "Dalle verticale en bois de pin", + "item.middle-earth.pine_wood_wall": "Muret en bois de pin", + "item.middle-earth.pinecone": "Pomme de pin", + "item.middle-earth.pink_clay_tiling": "Tuile d'argile rose", + "item.middle-earth.pink_clay_tiling_slab": "Dalle en tuile d'argile rose", + "item.middle-earth.pink_clay_tiling_stairs": "Escaliers en tuile d'argile rose", + "item.middle-earth.pink_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile rose", + "item.middle-earth.pink_clay_tiling_wall": "Muret en tuile d'argile rose", + "item.middle-earth.pink_flower_growth": "Pousse de fleurs roses", + "item.middle-earth.pink_flowers": "Fleurs roses", + "item.middle-earth.pink_stained_lead_glass": "Verre plombé rose", + "item.middle-earth.pink_stained_lead_glass_pane": "Vitre plombée rose", + "item.middle-earth.pink_wool_slab": "Dalle en laine rose", + "item.middle-earth.pink_wool_stairs": "Escaliers en laine rose", + "item.middle-earth.pink_wool_vertical_slab": "Dalle verticale en laine rose", + "item.middle-earth.pipe": "Pipe", + "item.middle-earth.pipeweed": "Herbe à pipe", + "item.middle-earth.pipeweed_banner_pattern": "Motif de bannière à l'herbe à pipe", + "item.middle-earth.pipeweed_banner_pattern.desc": "Une gourmandise de la Comté", + "item.middle-earth.pipeweed_seeds": "Graines d'herbe à pipe", + "item.middle-earth.plaster": "Plâtre", + "item.middle-earth.plaster_hobbit_window": "Fenêtre Hobbit en plâtre", + "item.middle-earth.plaster_hobbit_window_pane": "Vitre Hobbit en plâtre", + "item.middle-earth.plaster_round_window": "Fenêtre ronde en plâtre", + "item.middle-earth.plaster_round_window_pane": "Vitre ronde en plâtre", + "item.middle-earth.plaster_slab": "Dalle en plâtre", + "item.middle-earth.plaster_stairs": "Escalier en plâtre", + "item.middle-earth.plaster_vertical_slab": "Dalle verticale en plâtre", + "item.middle-earth.plaster_wall": "Muret en plâtre", + "item.middle-earth.pointed_dolomite": "Dolomite pointue", + "item.middle-earth.pointed_galonn": "Galonn pointue", + "item.middle-earth.pointed_izheraban": "Izhêr'Aban pointue", + "item.middle-earth.pointed_limestone": "Calcaire pointu", + "item.middle-earth.polished_andesite_vertical_slab": "Dalle verticale en andésite polie", + "item.middle-earth.polished_basalt_slab": "Dalle en basalte poli", + "item.middle-earth.polished_basalt_stairs": "Escalier en basalte poli", + "item.middle-earth.polished_basalt_vertical_slab": "Dalle verticale en basalte poli", + "item.middle-earth.polished_basalt_wall": "Muret en basalte poli", + "item.middle-earth.polished_blackstone_brick_vertical_slab": "Dalle verticale en brique de pierre noire polie", + "item.middle-earth.polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie", + "item.middle-earth.polished_blue_tuff": "Tuf bleu poli", + "item.middle-earth.polished_blue_tuff_slab": "Dalle en tuf bleu poli", + "item.middle-earth.polished_blue_tuff_stairs": "Escaliers en tuf bleu poli", + "item.middle-earth.polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli", + "item.middle-earth.polished_blue_tuff_wall": "Muret en tuf bleu poli", + "item.middle-earth.polished_calcite": "Calcite polie", + "item.middle-earth.polished_calcite_slab": "Dalle en calcite polie", + "item.middle-earth.polished_calcite_stairs": "Escaliers en calcite polie", + "item.middle-earth.polished_calcite_vertical_slab": "Dalle verticale en calcite polie", + "item.middle-earth.polished_calcite_wall": "Muret en calcite polie", + "item.middle-earth.polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie", + "item.middle-earth.polished_diorite_vertical_slab": "Dalle verticale en diorite polie", + "item.middle-earth.polished_dolomite": "Dolomite polie", + "item.middle-earth.polished_dolomite_slab": "Dalle en dolomite polie", + "item.middle-earth.polished_dolomite_stairs": "Escaliers en dolomite polie", + "item.middle-earth.polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie", + "item.middle-earth.polished_dolomite_wall": "Muret en dolomite polie", + "item.middle-earth.polished_gabbro": "Gabbro poli", + "item.middle-earth.polished_gabbro_slab": "Dalle en gabbro poli", + "item.middle-earth.polished_gabbro_stairs": "Escalier en gabbro poli", + "item.middle-earth.polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli", + "item.middle-earth.polished_gabbro_wall": "Muret en gabbro poli", + "item.middle-earth.polished_galonn": "Galonn polie", + "item.middle-earth.polished_galonn_slab": "Dalle en Galonn polie", + "item.middle-earth.polished_galonn_stairs": "Escalier en Galonn polie", + "item.middle-earth.polished_galonn_vertical_slab": "Dalle verticale en Galonn polie", + "item.middle-earth.polished_galonn_wall": "Muret en Galonn polie", + "item.middle-earth.polished_gneiss": "Gneiss poli", + "item.middle-earth.polished_gneiss_slab": "Dalle en gneiss poli", + "item.middle-earth.polished_gneiss_stairs": "Escalier en gneiss poli", + "item.middle-earth.polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli", + "item.middle-earth.polished_gneiss_wall": "Muret en gneiss poli", + "item.middle-earth.polished_granite_vertical_slab": "Dalle verticale en granite poli", + "item.middle-earth.polished_green_tuff": "Tuf vert poli", + "item.middle-earth.polished_green_tuff_slab": "Dalle en tuf vert poli", + "item.middle-earth.polished_green_tuff_stairs": "Escaliers en tuf vert poli", + "item.middle-earth.polished_green_tuff_vertical_slab": "Dalle verticale en tuf vert poli", + "item.middle-earth.polished_green_tuff_wall": "Muret en tuf vert poli", + "item.middle-earth.polished_hematite": "Hématite polie", + "item.middle-earth.polished_hematite_slab": "Dalle en hématite polie", + "item.middle-earth.polished_hematite_stairs": "Escalier en hématite polie", + "item.middle-earth.polished_hematite_vertical_slab": "Dalle verticale en hématite polie", + "item.middle-earth.polished_hematite_wall": "Muret en hématite polie", + "item.middle-earth.polished_ironstone": "Pierre de fer polie", + "item.middle-earth.polished_ironstone_slab": "Dalle en pierre de fer polie", + "item.middle-earth.polished_ironstone_stairs": "Escalier en pierre de fer polie", + "item.middle-earth.polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie", + "item.middle-earth.polished_ironstone_wall": "Muret en pierre de fer polie", + "item.middle-earth.polished_izheraban": "Izhêr'Aban polie", + "item.middle-earth.polished_izheraban_slab": "Dalle en Izhêr'Aban polie", + "item.middle-earth.polished_izheraban_stairs": "Escalier en Izhêr'Aban polie", + "item.middle-earth.polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie", + "item.middle-earth.polished_izheraban_wall": "Muret en Izhêr'Aban polie", + "item.middle-earth.polished_jadeite": "Jadéite polie", + "item.middle-earth.polished_jadeite_slab": "Dalle en jadéite polie", + "item.middle-earth.polished_jadeite_stairs": "Escaliers en jadéite polie", + "item.middle-earth.polished_jadeite_vertical_slab": "Dalle verticale en jadéite polie", + "item.middle-earth.polished_jadeite_wall": "Muret en jadéite polie", + "item.middle-earth.polished_limestone": "Calcaire poli", + "item.middle-earth.polished_limestone_slab": "Dalle en calcaire poli", + "item.middle-earth.polished_limestone_stairs": "Escaliers en calcaire poli", + "item.middle-earth.polished_limestone_vertical_slab": "Dalle verticale en calcaire poli", + "item.middle-earth.polished_limestone_wall": "Muret en calcaire poli", + "item.middle-earth.polished_medgon": "Medgon polie", + "item.middle-earth.polished_medgon_slab": "Dalle en Medgon polie", + "item.middle-earth.polished_medgon_stairs": "Escalier en Medgon polie", + "item.middle-earth.polished_medgon_vertical_slab": "Dalle verticale en Medgon polie", + "item.middle-earth.polished_medgon_wall": "Muret en Medgon polie", + "item.middle-earth.polished_nurgon": "Núrgon polie", + "item.middle-earth.polished_nurgon_slab": "Dalle en Núrgon polie", + "item.middle-earth.polished_nurgon_stairs": "Escalier en Núrgon polie", + "item.middle-earth.polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie", + "item.middle-earth.polished_nurgon_wall": "Muret en Núrgon polie", + "item.middle-earth.polished_pumice": "Pierre ponce polie", + "item.middle-earth.polished_pumice_slab": "Dalle en pierre ponce polie", + "item.middle-earth.polished_pumice_stairs": "Escalier en pierre ponce polie", + "item.middle-earth.polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie", + "item.middle-earth.polished_pumice_wall": "Muret en pierre ponce polie", + "item.middle-earth.polished_quartzite": "Quartzite polie", + "item.middle-earth.polished_quartzite_slab": "Dalle en quartzite polie", + "item.middle-earth.polished_quartzite_stairs": "Escaliers en quartzite polie", + "item.middle-earth.polished_quartzite_vertical_slab": "Dalle verticale en quartzite polie", + "item.middle-earth.polished_quartzite_wall": "Muret en quartzite polie", + "item.middle-earth.polished_schist": "Schiste poli", + "item.middle-earth.polished_schist_slab": "Dalle en schiste poli", + "item.middle-earth.polished_schist_stairs": "Escalier en schiste poli", + "item.middle-earth.polished_schist_vertical_slab": "Dalle verticale en schiste poli", + "item.middle-earth.polished_schist_wall": "Muret en schiste poli", + "item.middle-earth.polished_slate": "Ardoise polie", + "item.middle-earth.polished_slate_slab": "Dalle en ardoise polie", + "item.middle-earth.polished_slate_stairs": "Escalier en ardoise polie", + "item.middle-earth.polished_slate_vertical_slab": "Dalle verticale en ardoise polie", + "item.middle-earth.polished_slate_wall": "Muret en ardoise polie", + "item.middle-earth.polished_stone": "Roche polie", + "item.middle-earth.polished_stone_slab": "Dalle en roche polie", + "item.middle-earth.polished_stone_stairs": "Escalier en roche polie", + "item.middle-earth.polished_stone_vertical_slab": "Dalle verticale en roche polie", + "item.middle-earth.polished_stone_wall": "Muret en roche polie", + "item.middle-earth.polished_tuff_vertical_slab": "Dalle verticale en tuf poli", + "item.middle-earth.polished_zigilaban": "Zigil'Aban polie", + "item.middle-earth.polished_zigilaban_slab": "Dalle en Zigil'Aban polie", + "item.middle-earth.polished_zigilaban_stairs": "Escalier en Zigil'Aban polie", + "item.middle-earth.polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie", + "item.middle-earth.polished_zigilaban_wall": "Muret en Zigil'Aban polie", + "item.middle-earth.poultry_meal": "Repas de volaille", + "item.middle-earth.prismarine_brick_vertical_slab": "Dalle verticale en brique de prismarine", + "item.middle-earth.prismarine_vertical_slab": "Dalle verticale en prismarine", + "item.middle-earth.pumice": "Pierre ponce", + "item.middle-earth.pumice_bricks": "Briques en pierre ponce", + "item.middle-earth.pumice_button": "Bouton en pierre ponce", + "item.middle-earth.pumice_chair": "Chaise en pierre ponce", + "item.middle-earth.pumice_pillar": "Pilier en pierre ponce", + "item.middle-earth.pumice_pressure_plate": "Plaque de pression en pierre ponce", + "item.middle-earth.pumice_rocks": "Éboulis de pierre ponce", + "item.middle-earth.pumice_slab": "Dalle en pierre ponce", + "item.middle-earth.pumice_stairs": "Escalier en pierre ponce", + "item.middle-earth.pumice_stool": "Tabouret en pierre ponce", + "item.middle-earth.pumice_table": "Table en pierre ponce", + "item.middle-earth.pumice_tiles": "Pierre ponce carrelée", + "item.middle-earth.pumice_trapdoor": "Trappe en pierre ponce", + "item.middle-earth.pumice_vertical_slab": "Dalle verticale en pierre ponce", + "item.middle-earth.pumice_wall": "Muret en pierre ponce", + "item.middle-earth.purple_clay_tiling": "Tuile d'argile violette", + "item.middle-earth.purple_clay_tiling_slab": "Dalle en tuile d'argile violette", + "item.middle-earth.purple_clay_tiling_stairs": "Escaliers en tuile d'argile violette", + "item.middle-earth.purple_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile violette", + "item.middle-earth.purple_clay_tiling_wall": "Muret en tuile d'argile violette", + "item.middle-earth.purple_flowers": "Fleurs violettes", + "item.middle-earth.purple_stained_lead_glass": "Verre plombé violet", + "item.middle-earth.purple_stained_lead_glass_pane": "Vitre plombée violette", + "item.middle-earth.purple_wool_slab": "Dalle en laine violette", + "item.middle-earth.purple_wool_stairs": "Escaliers en laine violette", + "item.middle-earth.purple_wool_vertical_slab": "Dalle verticale en laine violette", + "item.middle-earth.purpur_vertical_slab": "Dalle verticale en purpur", + "item.middle-earth.quartz_block": "Bloc de quartz", + "item.middle-earth.quartz_cluster": "Amas de quartz", + "item.middle-earth.quartz_shard": "Éclat de quartz", + "item.middle-earth.quartz_vertical_slab": "Dalle verticale en quartz", + "item.middle-earth.quartzite": "Quartzite", + "item.middle-earth.quartzite_bricks": "Briques de quartzite", + "item.middle-earth.quartzite_button": "Bouton en quartzite", + "item.middle-earth.quartzite_chair": "Chaise en quartzite", + "item.middle-earth.quartzite_pressure_plate": "Plaque de pression en quartzite", + "item.middle-earth.quartzite_rocks": "Éboulis de quartzite", + "item.middle-earth.quartzite_slab": "Dalle en quartzite", + "item.middle-earth.quartzite_stairs": "Escaliers en quartzite", + "item.middle-earth.quartzite_stool": "Tabouret en quartzite", + "item.middle-earth.quartzite_table": "Table en quartzite", + "item.middle-earth.quartzite_tiles": "Quartzite carrelée", + "item.middle-earth.quartzite_trapdoor": "Trappe en quartzite", + "item.middle-earth.quartzite_vertical_slab": "Dalle verticale en quartzite", + "item.middle-earth.quartzite_wall": "Muret en quartzite", + "item.middle-earth.ravenhill_boots": "Bottes de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_gilded_helmet": "Casque doré de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_helmet": "Casque de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_ornamented_tower_shield": "Pavois orné de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_reinforced_mail_hauberk": "Haubert de maille renforcé de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_reinforced_tower_shield": "Pavois renforcé de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_sentinel_boots": "Bottes de sentinelle de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_sentinel_cape": "Cape de sentinelle de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_sentinel_chestplate": "Plastron de sentinelle de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_sentinel_helmet": "Casque de sentinelle de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_sentinel_leggings": "Jambières de sentinelle de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_tower_shield": "Pavois de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_watchwarden_boots": "Bottes de guetteur de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_watchwarden_chestplate": "Plastron de guetteur de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_watchwarden_helmet": "Casque de guetteur de la Colline aux Corbeaux", + "item.middle-earth.ravenhill_watchwarden_leggings": "Jambières de guetteur de la Colline aux Corbeaux", + "item.middle-earth.raw_horse": "Cheval cru", + "item.middle-earth.raw_lead": "Plomb brut", + "item.middle-earth.raw_lead_block": "Bloc de plomb brut", + "item.middle-earth.raw_mithril": "Mithril brut", + "item.middle-earth.raw_mithril_block": "Bloc de mithril brut", + "item.middle-earth.raw_silver": "Argent brut", + "item.middle-earth.raw_silver_block": "Bloc d'argent brut", + "item.middle-earth.raw_tin": "Étain brut", + "item.middle-earth.raw_tin_block": "Bloc d'étain brut", + "item.middle-earth.red_agate_block": "Bloc d'agate rouge", + "item.middle-earth.red_agate_cluster": "Amas d'agate rouge", + "item.middle-earth.red_agate_shard": "Éclat d'agate rouge", + "item.middle-earth.red_clay_tiling": "Tuile d'argile rouge", + "item.middle-earth.red_clay_tiling_slab": "Dalle en tuile d'argile rouge", + "item.middle-earth.red_clay_tiling_stairs": "Escaliers en tuile d'argile rouge", + "item.middle-earth.red_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile rouge", + "item.middle-earth.red_clay_tiling_wall": "Muret en tuile d'argile rouge", + "item.middle-earth.red_cushion": "Coussin rouge", + "item.middle-earth.red_flower_growth": "Pousse de fleurs rouges", + "item.middle-earth.red_flowers": "Fleurs rouges", + "item.middle-earth.red_heather": "Bruyère rouge", + "item.middle-earth.red_hobbit_door": "Porte Hobbit rouge", + "item.middle-earth.red_maple_leaves": "Feuilles d'érable rouges", + "item.middle-earth.red_nether_brick_vertical_slab": "Dalle verticale en brique rouge du nether", + "item.middle-earth.red_roof_tiles": "Tuiles de toit rouges", + "item.middle-earth.red_sandstone_vertical_slab": "Dalle verticale en grès rouge", + "item.middle-earth.red_stained_lead_glass": "Verre plombé rouge", + "item.middle-earth.red_stained_lead_glass_pane": "Vitre plombée rouge", + "item.middle-earth.red_wattle_and_white_daub": "Clayonnage rouge et torchis blanc", + "item.middle-earth.red_wattle_and_white_daub_cross": "Clayonnage rouge et torchis blanc en croix", + "item.middle-earth.red_wattle_and_white_daub_diamond": "Clayonnage rouge et torchis blanc en losange", + "item.middle-earth.red_wattle_and_white_daub_left": "Clayonnage rouge et torchis blanc à gauche", + "item.middle-earth.red_wattle_and_white_daub_pillar": "Pilier de clayonnage rouge et torchis blanc", + "item.middle-earth.red_wattle_and_white_daub_right": "Clayonnage rouge et torchis blanc à droite", + "item.middle-earth.red_wattle_framed_window": "Fenêtre à clayonnage rouge", + "item.middle-earth.red_wattle_framed_window_pane": "Fenêtre plate à clayonnage rouge", + "item.middle-earth.red_wattle_trapdoor": "Trappe en clayonnage rouge", + "item.middle-earth.red_wool_slab": "Dalle en laine rouge", + "item.middle-earth.red_wool_stairs": "Escaliers en laine rouge", + "item.middle-earth.red_wool_vertical_slab": "Dalle verticale en laine rouge", + "item.middle-earth.reed_block": "Bloc de roseaux", + "item.middle-earth.reed_slab": "Dalle en roseau", + "item.middle-earth.reed_stairs": "Escalier en roseau", + "item.middle-earth.reed_vertical_slab": "Dalle verticale en roseau", + "item.middle-earth.reed_wall": "Muret en roseaux", + "item.middle-earth.reeds": "Roseaux", + "item.middle-earth.reinforced_black_pine_door": "Porte renforcée en pin noir", + "item.middle-earth.reinforced_chest": "Coffre renforcé", + "item.middle-earth.reinforced_spruce_door": "Porte renforcée en sapin", + "item.middle-earth.rickety_simple_larch_door": "Porte simple branlante en mélèze", + "item.middle-earth.ringwraith_boots": "Bottes de Spectre de l'Anneau", + "item.middle-earth.ringwraith_leggings": "Jambières de Spectre de l'Anneau", + "item.middle-earth.ringwraith_mail_hauberk": "Haubert de maille de Spectre de l'Anneau", + "item.middle-earth.river_sand": "Sable de rivière", + "item.middle-earth.riverbend_pipe": "Pipe de Coude-de-Rivière", + "item.middle-earth.rod": "Baguette", + "item.middle-earth.rohan_banner_pattern": "Motif de bannière du Rohan", + "item.middle-earth.rohan_banner_pattern.desc": "Tête de cheval du Rohan", + "item.middle-earth.rohirric_axe": "Hache Rohirrique", + "item.middle-earth.rohirric_bow": "Arc Rohirrique", + "item.middle-earth.rohirric_braced_mail_shirt": "Chemise de maille renforcée Rohirrique", + "item.middle-earth.rohirric_braced_militia_helmet": "Casque de milicien à renforts Rohirrique", + "item.middle-earth.rohirric_bucking_horse_shield": "Bouclier Rohirrique au cheval cabré", + "item.middle-earth.rohirric_cape": "Cape Rohirrique", + "item.middle-earth.rohirric_dagger": "Dague Rohirrique", + "item.middle-earth.rohirric_eorling_shield": "Bouclier Eorling Rohirrique", + "item.middle-earth.rohirric_galloping_horse_shield": "Bouclier Rohirrique au cheval au galop", + "item.middle-earth.rohirric_gambeson": "Gambison Rohirrique", + "item.middle-earth.rohirric_horse_armor": "Armure de cheval Rohirrique", + "item.middle-earth.rohirric_horse_head_shield": "Bouclier Rohirrique à tête de cheval", + "item.middle-earth.rohirric_leather_helmet": "Casque en cuir Rohirrique", + "item.middle-earth.rohirric_leather_scale_vest": "Gilet à écailles en cuir Rohirrique", + "item.middle-earth.rohirric_leather_vest": "Gilet en cuir Rohirrique", + "item.middle-earth.rohirric_longbow": "Arc long Rohirrique", + "item.middle-earth.rohirric_longsword": "Épée longue Rohirrique", + "item.middle-earth.rohirric_militia_helmet": "Casque de milicien Rohirrique", + "item.middle-earth.rohirric_noble_axe": "Hache Rohirrique noble", + "item.middle-earth.rohirric_noble_bow": "Arc Rohirrique noble", + "item.middle-earth.rohirric_noble_dagger": "Dague Rohirrique noble", + "item.middle-earth.rohirric_noble_longsword": "Épée longue Rohirrique noble", + "item.middle-earth.rohirric_noble_spear": "Lance Rohirrique noble", + "item.middle-earth.rohirric_noble_sword": "Épée Rohirrique noble", + "item.middle-earth.rohirric_ornamented_leather_helmet": "Casque en cuir orné Rohirrique", + "item.middle-earth.rohirric_ornamented_militia_helmet": "Casque de milicien orné Rohirrique", + "item.middle-earth.rohirric_ornamented_scale_hauberk": "Haubert à écailles orné Rohirrique", + "item.middle-earth.rohirric_ornamented_shield": "Bouclier Rohirrique orné", + "item.middle-earth.rohirric_ornamented_soldier_helmet": "Casque de soldat orné Rohirrique", + "item.middle-earth.rohirric_plainsman_shield": "Bouclier Rohirrique de l'homme des plaines", + "item.middle-earth.rohirric_reinforced_coat": "Manteau renforcé Rohirrique", + "item.middle-earth.rohirric_reinforced_leather_helmet": "Casque en cuir renforcé Rohirrique", + "item.middle-earth.rohirric_reinforced_leather_scale_vest": "Gilet à écailles en cuir renforcé Rohirrique", + "item.middle-earth.rohirric_reinforced_leather_vest": "Gilet en cuir renforcé Rohirrique", + "item.middle-earth.rohirric_reinforced_militia_helmet": "Casque de milicien renforcé Rohirrique", + "item.middle-earth.rohirric_royal_guard_cape": "Cape de la Garde Royale Rohirrique", + "item.middle-earth.rohirric_royal_guard_helmet": "Casque de la Garde Royale Rohirrique", + "item.middle-earth.rohirric_royal_guard_shield": "Bouclier de la Garde Royale Rohirrique", + "item.middle-earth.rohirric_scale_hauberk": "Haubert à écailles Rohirrique", + "item.middle-earth.rohirric_scale_jacket": "Veste à écailles Rohirrique", + "item.middle-earth.rohirric_shield": "Bouclier Rohirrique", + "item.middle-earth.rohirric_soldier_helmet": "Casque de soldat Rohirrique", + "item.middle-earth.rohirric_spear": "Lance Rohirrique", + "item.middle-earth.rohirric_sword": "Épée Rohirrique", + "item.middle-earth.rohirric_twin_horses_shield": "Bouclier Rohirrique aux deux chevaux", + "item.middle-earth.rooted_dirt_slab": "Dalle de terre racineuse", + "item.middle-earth.rooted_dirt_stairs": "Escaliers de terre racineuse", + "item.middle-earth.rope": "Corde", + "item.middle-earth.rope_ladder": "Échelle de corde", + "item.middle-earth.rotten_thatch": "Chaume pourri", + "item.middle-earth.rotten_thatch_slab": "Dalle en chaume pourri", + "item.middle-earth.rotten_thatch_stairs": "Escaliers en chaume pourri", + "item.middle-earth.rotten_thatch_vertical_slab": "Dalle verticale en chaume pourri", + "item.middle-earth.rotten_thatch_wall": "Muret en chaume pourri", + "item.middle-earth.round_shield": "Bouclier rond", + "item.middle-earth.round_shield.black": "Bouclier rond noir", + "item.middle-earth.round_shield.blue": "Bouclier rond bleu", + "item.middle-earth.round_shield.brown": "Bouclier rond marron", + "item.middle-earth.round_shield.cyan": "Bouclier rond cyan", + "item.middle-earth.round_shield.gray": "Bouclier rond gris", + "item.middle-earth.round_shield.green": "Bouclier rond vert", + "item.middle-earth.round_shield.light_blue": "Bouclier rond bleu clair", + "item.middle-earth.round_shield.light_gray": "Bouclier rond gris clair", + "item.middle-earth.round_shield.lime": "Bouclier rond vert clair", + "item.middle-earth.round_shield.magenta": "Bouclier rond magenta", + "item.middle-earth.round_shield.orange": "Bouclier rond orange", + "item.middle-earth.round_shield.pink": "Bouclier rond rose", + "item.middle-earth.round_shield.purple": "Bouclier rond violet", + "item.middle-earth.round_shield.red": "Bouclier rond rouge", + "item.middle-earth.round_shield.white": "Bouclier rond blanc", + "item.middle-earth.round_shield.yellow": "Bouclier rond jaune", + "item.middle-earth.ruined_dwarven_door": "Porte naine en ruine", + "item.middle-earth.rusted_mordor_chestplate": "Plastron rouillé de Mordor", + "item.middle-earth.rusted_mordor_crest_helmet": "Casque à crête rouillé de Mordor", + "item.middle-earth.rusted_mordor_cuirass": "Cuirasse rouillée de Mordor", + "item.middle-earth.rusted_mordor_gorget_hauberk": "Haubert à gorgerin rouillé de Mordor", + "item.middle-earth.rusted_mordor_great_helmet": "Heaume rouillé de Mordor", + "item.middle-earth.rusted_mordor_helmet": "Casque rouillé de Mordor", + "item.middle-earth.rusted_mordor_kettle_hat": "Chapel de fer rouillé de Mordor", + "item.middle-earth.rusted_mordor_kettle_hat_with_coif": "Chapel de fer rouillé de Mordor avec coiffe", + "item.middle-earth.rusted_mordor_mandible_helmet": "Casque à mandibule rouillé de Mordor", + "item.middle-earth.rusted_mordor_nasal_helmet": "Casque à nasal rouillé de Mordor", + "item.middle-earth.rusted_mordor_plate_boots": "Bottes de plates rouillées de Mordor", + "item.middle-earth.rusted_mordor_reinforced_coat": "Manteau renforcé rouillé de Mordor", + "item.middle-earth.rusted_mordor_sallet": "Salade rouillée de Mordor", + "item.middle-earth.rusted_mordor_snout_helmet": "Casque à museau rouillé de Mordor", + "item.middle-earth.rusted_orcish_mail_coat": "Cotte de maille orque rouillée", + "item.middle-earth.rusted_orcish_mail_coif": "Coiffe de maille orque rouillée", + "item.middle-earth.rusted_orcish_mail_hauberk": "Haubert de maille orque rouillé", + "item.middle-earth.rusted_orcish_mail_shirt": "Chemise de maille orque rouillée", + "item.middle-earth.rusted_orcish_reinforced_leather_skirt": "Jupe en cuir renforcée orque rouillée", + "item.middle-earth.rusted_orcish_reinforced_strip_leather_skirt": "Jupe en lanières de cuir renforcée orque rouillée", + "item.middle-earth.sack_of_horsefeed": "Sac de nourriture pour cheval", + "item.middle-earth.sallet": "Salade", + "item.middle-earth.sand_layer": "Couche de sable", + "item.middle-earth.sandstone_vertical_slab": "Dalle verticale en grès", + "item.middle-earth.scale": "Écaille", + "item.middle-earth.scale_mail": "Maille d'écaille", + "item.middle-earth.schist": "Schiste", + "item.middle-earth.schist_bricks": "Briques en schiste", + "item.middle-earth.schist_button": "Bouton en schiste", + "item.middle-earth.schist_chair": "Chaise en schiste", + "item.middle-earth.schist_pillar": "Pilier en schiste", + "item.middle-earth.schist_pressure_plate": "Plaque de pression en schiste", + "item.middle-earth.schist_rocks": "Éboulis de schiste", + "item.middle-earth.schist_slab": "Dalle en schiste", + "item.middle-earth.schist_stairs": "Escalier en schiste", + "item.middle-earth.schist_stool": "Tabouret en schiste", + "item.middle-earth.schist_table": "Table en schiste", + "item.middle-earth.schist_tiles": "Schiste carrelé", + "item.middle-earth.schist_trapdoor": "Trappe en schiste", + "item.middle-earth.schist_vertical_slab": "Dalle verticale en schiste", + "item.middle-earth.schist_wall": "Muret en schiste", + "item.middle-earth.sconce": "Applique murale", + "item.middle-earth.scorched_bench": "Banc en bois calciné", + "item.middle-earth.scorched_button": "Bouton en bois calciné", + "item.middle-earth.scorched_chair": "Chaise en bois calciné", + "item.middle-earth.scorched_door": "Porte en bois calciné", + "item.middle-earth.scorched_fence": "Barrière en bois calciné", + "item.middle-earth.scorched_fence_gate": "Portillon en bois calciné", + "item.middle-earth.scorched_grass": "Herbe calcinée", + "item.middle-earth.scorched_ladder": "Échelle en bois calciné", + "item.middle-earth.scorched_log": "Bûche calcinée", + "item.middle-earth.scorched_planks": "Planches calcinées", + "item.middle-earth.scorched_pressure_plate": "Plaque de pression en bois calciné", + "item.middle-earth.scorched_roofing": "Toiture en bois calciné", + "item.middle-earth.scorched_roofing_slab": "Dalle de toiture en bois calciné", + "item.middle-earth.scorched_roofing_stairs": "Escalier de toiture en bois calciné", + "item.middle-earth.scorched_roofing_vertical_slab": "Dalle verticale de toiture en bois calciné", + "item.middle-earth.scorched_roofing_wall": "Muret de toiture en bois calciné", + "item.middle-earth.scorched_shingles": "Bardeaux en bois calciné", + "item.middle-earth.scorched_shingles_slab": "Dalle en bardeaux de bois calciné", + "item.middle-earth.scorched_shingles_stairs": "Escaliers en bardeaux de bois calciné", + "item.middle-earth.scorched_shingles_vertical_slab": "Dalle verticale en bardeaux de bois calciné", + "item.middle-earth.scorched_shingles_wall": "Muret en bardeaux de bois calciné", + "item.middle-earth.scorched_shrub": "Arbuste calciné", + "item.middle-earth.scorched_slab": "Dalle en bois calciné", + "item.middle-earth.scorched_stairs": "Escaliers en bois calciné", + "item.middle-earth.scorched_stool": "Tabouret en bois calciné", + "item.middle-earth.scorched_table": "Table en bois calciné", + "item.middle-earth.scorched_trapdoor": "Trappe en bois calciné", + "item.middle-earth.scorched_tuft": "Touffe calcinée", + "item.middle-earth.scorched_vertical_slab": "Dalle verticale en bois calciné", + "item.middle-earth.scorched_wood": "Planches calcinées", + "item.middle-earth.scorched_wood_fence": "Barrière en bois calciné", + "item.middle-earth.scorched_wood_slab": "Dalle en bois calciné", + "item.middle-earth.scorched_wood_stairs": "Escaliers en bois calciné", + "item.middle-earth.scorched_wood_vertical_slab": "Dalle verticale en bois calciné", + "item.middle-earth.scorched_wood_wall": "Muret en bois calciné", + "item.middle-earth.sedum": "Orpin", + "item.middle-earth.shield_border": "Cadre de bouclier", + "item.middle-earth.shield_of_durins_guard": "Bouclier de la Garde de Durin", + "item.middle-earth.shield_of_the_king_under_the_mountain": "Bouclier du Roi sous la Montagne", + "item.middle-earth.shield_plate": "Plaque de bouclier", + "item.middle-earth.shirriff_hat": "Chapeau de Commissaire", + "item.middle-earth.shoes": "Chaussures", + "item.middle-earth.short_blade": "Lame courte", + "item.middle-earth.short_bulrush": "Petit jonc", + "item.middle-earth.short_cattails": "Petites quenouilles", + "item.middle-earth.short_icicles": "Petits glaçons", + "item.middle-earth.shovel_head": "Tête de pelle", + "item.middle-earth.shriveled_shrub": "Arbuste ratatiné", + "item.middle-earth.silver_bars": "Barreaux d'argent", + "item.middle-earth.silver_block": "Bloc d'argent", + "item.middle-earth.silver_coin": "Pièce d'argent", + "item.middle-earth.silver_ingot": "Lingot d'argent", + "item.middle-earth.silver_lantern": "Lanterne en argent", + "item.middle-earth.silver_maple_bench": "Banc en érable argenté", + "item.middle-earth.silver_maple_button": "Bouton en érable argenté", + "item.middle-earth.silver_maple_chair": "Chaise en érable argenté", + "item.middle-earth.silver_maple_door": "Porte en érable argenté", + "item.middle-earth.silver_maple_fence": "Barrière en érable argenté", + "item.middle-earth.silver_maple_fence_gate": "Portillon en érable argenté", + "item.middle-earth.silver_maple_ladder": "Échelle en érable argenté", + "item.middle-earth.silver_maple_log": "Bûche d'érable argenté", + "item.middle-earth.silver_maple_planks": "Planches d'érable argenté", + "item.middle-earth.silver_maple_pressure_plate": "Plaque de pression en érable argenté", + "item.middle-earth.silver_maple_roofing": "Toiture en érable argenté", + "item.middle-earth.silver_maple_roofing_slab": "Dalle de toiture en érable argenté", + "item.middle-earth.silver_maple_roofing_stairs": "Escalier de toiture en érable argenté", + "item.middle-earth.silver_maple_roofing_vertical_slab": "Dalle verticale de toiture en érable argenté", + "item.middle-earth.silver_maple_roofing_wall": "Muret de toiture en érable argenté", + "item.middle-earth.silver_maple_sapling": "Pousse d'érable argenté", + "item.middle-earth.silver_maple_shingles": "Bardeaux d'érable argenté", + "item.middle-earth.silver_maple_shingles_slab": "Dalle en bardeaux d'érable argenté", + "item.middle-earth.silver_maple_shingles_stairs": "Escaliers en bardeaux d'érable argenté", + "item.middle-earth.silver_maple_shingles_vertical_slab": "Dalle verticale en bardeaux d'érable argenté", + "item.middle-earth.silver_maple_shingles_wall": "Muret en bardeaux d'érable argenté", + "item.middle-earth.silver_maple_slab": "Dalle en érable argenté", + "item.middle-earth.silver_maple_stairs": "Escaliers en érable argenté", + "item.middle-earth.silver_maple_stool": "Tabouret en érable argenté", + "item.middle-earth.silver_maple_table": "Table en érable argenté", + "item.middle-earth.silver_maple_trapdoor": "Trappe en érable argenté", + "item.middle-earth.silver_maple_vertical_slab": "Dalle verticale en érable argenté", + "item.middle-earth.silver_maple_wood": "Bois d'érable argenté", + "item.middle-earth.silver_maple_wood_fence": "Barrière en bois d'érable argenté", + "item.middle-earth.silver_maple_wood_slab": "Dalle en bois d'érable argenté", + "item.middle-earth.silver_maple_wood_stairs": "Escaliers en bois d'érable argenté", + "item.middle-earth.silver_maple_wood_vertical_slab": "Dalle verticale en bois d'érable argenté", + "item.middle-earth.silver_maple_wood_wall": "Muret en bois d'érable argenté", + "item.middle-earth.silver_nugget": "Pépite d'argent", + "item.middle-earth.simple_larch_gate": "Portail simple en mélèze", + "item.middle-earth.sky_firecap": "Champi-feu de surface", + "item.middle-earth.sky_firecap_block": "Bloc de champi-feu de surface", + "item.middle-earth.sky_firecap_tiller": "Talle de champi-feu de surface", + "item.middle-earth.slate": "Ardoise", + "item.middle-earth.slate_bricks": "Briques en ardoise", + "item.middle-earth.slate_button": "Bouton en ardoise", + "item.middle-earth.slate_chair": "Chaise en ardoise", + "item.middle-earth.slate_coal_ore": "Minerai de charbon d'ardoise", + "item.middle-earth.slate_copper_ore": "Minerai de cuivre d'ardoise", + "item.middle-earth.slate_pillar": "Pilier en ardoise", + "item.middle-earth.slate_pressure_plate": "Plaque de pression en ardoise", + "item.middle-earth.slate_rocks": "Éboulis d'ardoise", + "item.middle-earth.slate_slab": "Dalle en ardoise", + "item.middle-earth.slate_stairs": "Escalier en ardoise", + "item.middle-earth.slate_stool": "Tabouret en ardoise", + "item.middle-earth.slate_table": "Table en ardoise", + "item.middle-earth.slate_tiles": "Ardoise carrelée", + "item.middle-earth.slate_tin_ore": "Minerai d'étain d'ardoise", + "item.middle-earth.slate_trapdoor": "Trappe en ardoise", + "item.middle-earth.slate_vertical_slab": "Dalle verticale en ardoise", + "item.middle-earth.slate_wall": "Muret en ardoise", + "item.middle-earth.small_brazier": "Petit brasero", + "item.middle-earth.small_citrine_bud": "Petit cristal de citrine", + "item.middle-earth.small_crate": "Petite caisse", + "item.middle-earth.small_dry_shrub": "Petit arbuste sec", + "item.middle-earth.small_flowering_lily_pads": "Petits nénuphars en fleurs", + "item.middle-earth.small_glowstone_bud": "Petit cristal de pierre lumineuse", + "item.middle-earth.small_lily_pads": "Petits nénuphars", + "item.middle-earth.small_quartz_bud": "Petit cristal de quartz", + "item.middle-earth.small_red_agate_bud": "Petit cristal d'agate rouge", + "item.middle-earth.smithing_hammer": "Marteau de forge", + "item.middle-earth.smooth_andesite": "Andésite lisse", + "item.middle-earth.smooth_andesite_slab": "Dalle en andésite lisse", + "item.middle-earth.smooth_andesite_stairs": "Escalier en andésite lisse", + "item.middle-earth.smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse", + "item.middle-earth.smooth_andesite_wall": "Muret en andésite lisse", + "item.middle-earth.smooth_basalt_slab": "Dalle en basalte lisse", + "item.middle-earth.smooth_basalt_stairs": "Escalier en basalte lisse", + "item.middle-earth.smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse", + "item.middle-earth.smooth_basalt_wall": "Muret en basalte lisse", + "item.middle-earth.smooth_blackstone": "Roche noire lisse", + "item.middle-earth.smooth_blackstone_slab": "Dalle en roche noire lisse", + "item.middle-earth.smooth_blackstone_stairs": "Escalier en roche noire lisse", + "item.middle-earth.smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse", + "item.middle-earth.smooth_blackstone_wall": "Muret en roche noire lisse", + "item.middle-earth.smooth_calcite": "Calcite lisse", + "item.middle-earth.smooth_calcite_slab": "Dalle en calcite lisse", + "item.middle-earth.smooth_calcite_stairs": "Escalier en calcite lisse", + "item.middle-earth.smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse", + "item.middle-earth.smooth_calcite_wall": "Muret en calcite lisse", + "item.middle-earth.smooth_deepslate": "Ardoise des abîmes lisse", + "item.middle-earth.smooth_deepslate_slab": "Dalle en ardoise des abîmes lisse", + "item.middle-earth.smooth_deepslate_stairs": "Escalier en ardoise des abîmes lisse", + "item.middle-earth.smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse", + "item.middle-earth.smooth_deepslate_wall": "Muret en ardoise des abîmes lisse", + "item.middle-earth.smooth_diorite": "Diorite lisse", + "item.middle-earth.smooth_diorite_slab": "Dalle en diorite lisse", + "item.middle-earth.smooth_diorite_stairs": "Escaliers en diorite lisse", + "item.middle-earth.smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse", + "item.middle-earth.smooth_diorite_wall": "Muret en diorite lisse", + "item.middle-earth.smooth_dolomite": "Dolomite lisse", + "item.middle-earth.smooth_dolomite_slab": "Dalle en dolomite lisse", + "item.middle-earth.smooth_dolomite_stairs": "Escalier en dolomite lisse", + "item.middle-earth.smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse", + "item.middle-earth.smooth_dolomite_wall": "Muret en dolomite lisse", + "item.middle-earth.smooth_galonn": "Galonn lisse", + "item.middle-earth.smooth_galonn_slab": "Dalle en Galonn lisse", + "item.middle-earth.smooth_galonn_stairs": "Escalier en Galonn lisse", + "item.middle-earth.smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse", + "item.middle-earth.smooth_galonn_wall": "Muret en Galonn lisse", + "item.middle-earth.smooth_gneiss": "Gneiss lisse", + "item.middle-earth.smooth_gneiss_slab": "Dalle en gneiss lisse", + "item.middle-earth.smooth_gneiss_stairs": "Escalier en gneiss lisse", + "item.middle-earth.smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse", + "item.middle-earth.smooth_gneiss_wall": "Muret en gneiss lisse", + "item.middle-earth.smooth_granite": "Granite lisse", + "item.middle-earth.smooth_granite_slab": "Dalle en granite lisse", + "item.middle-earth.smooth_granite_stairs": "Escalier en granite lisse", + "item.middle-earth.smooth_granite_vertical_slab": "Dalle verticale en granite lisse", + "item.middle-earth.smooth_granite_wall": "Muret en granite lisse", + "item.middle-earth.smooth_green_tuff": "Tuf vert lisse", + "item.middle-earth.smooth_green_tuff_slab": "Dalle en tuf vert lisse", + "item.middle-earth.smooth_green_tuff_stairs": "Escaliers en tuf vert lisse", + "item.middle-earth.smooth_green_tuff_vertical_slab": "Dalle verticale en tuf vert lisse", + "item.middle-earth.smooth_green_tuff_wall": "Muret en tuf vert lisse", + "item.middle-earth.smooth_hematite": "Hématite lisse", + "item.middle-earth.smooth_hematite_slab": "Dalle en hématite lisse", + "item.middle-earth.smooth_hematite_stairs": "Escalier en hématite lisse", + "item.middle-earth.smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse", + "item.middle-earth.smooth_hematite_wall": "Muret en hématite lisse", + "item.middle-earth.smooth_ironstone": "Pierre de fer lisse", + "item.middle-earth.smooth_ironstone_slab": "Dalle en pierre de fer lisse", + "item.middle-earth.smooth_ironstone_stairs": "Escalier en pierre de fer lisse", + "item.middle-earth.smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse", + "item.middle-earth.smooth_ironstone_wall": "Muret en pierre de fer lisse", + "item.middle-earth.smooth_izheraban": "Izhêr'Aban lisse", + "item.middle-earth.smooth_izheraban_slab": "Dalle en Izhêr'Aban lisse", + "item.middle-earth.smooth_izheraban_stairs": "Escalier en Izhêr'Aban lisse", + "item.middle-earth.smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse", + "item.middle-earth.smooth_izheraban_wall": "Muret en Izhêr'Aban lisse", + "item.middle-earth.smooth_limestone": "Calcaire lisse", + "item.middle-earth.smooth_limestone_slab": "Dalle en calcaire lisse", + "item.middle-earth.smooth_limestone_stairs": "Escalier en calcaire lisse", + "item.middle-earth.smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse", + "item.middle-earth.smooth_limestone_wall": "Muret en calcaire lisse", + "item.middle-earth.smooth_medgon": "Medgon lisse", + "item.middle-earth.smooth_medgon_slab": "Dalle en Medgon lisse", + "item.middle-earth.smooth_medgon_stairs": "Escalier en Medgon lisse", + "item.middle-earth.smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse", + "item.middle-earth.smooth_medgon_wall": "Muret en Medgon lisse", + "item.middle-earth.smooth_quartz_vertical_slab": "Dalle verticale en quartz lisse", + "item.middle-earth.smooth_red_sandstone_vertical_slab": "Dalle verticale en grès rouge lisse", + "item.middle-earth.smooth_sandstone_vertical_slab": "Dalle verticale en grès lisse", + "item.middle-earth.smooth_stone_vertical_slab": "Dalle verticale en roche lisse", + "item.middle-earth.smooth_tuff": "Tuf lisse", + "item.middle-earth.smooth_tuff_slab": "Dalle en tuf lisse", + "item.middle-earth.smooth_tuff_stairs": "Escalier en tuf lisse", + "item.middle-earth.smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse", + "item.middle-earth.smooth_tuff_wall": "Muret en tuf lisse", + "item.middle-earth.smooth_zigilaban": "Zigil'Aban lisse", + "item.middle-earth.smooth_zigilaban_slab": "Dalle en Zigil'Aban lisse", + "item.middle-earth.smooth_zigilaban_stairs": "Escalier en Zigil'Aban lisse", + "item.middle-earth.smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse", + "item.middle-earth.smooth_zigilaban_wall": "Muret en Zigil'Aban lisse", + "item.middle-earth.snail_banner_pattern": "Motif de bannière à l'escargot", + "item.middle-earth.snail_banner_pattern.desc": "Le Suzerain gluant", + "item.middle-earth.snow_troll_spawn_egg": "Œuf d'apparition de trolls des neiges", + "item.middle-earth.snowy_dirt": "Terre enneigée", + "item.middle-earth.snowy_dirt_slab": "Dalle de terre enneigée", + "item.middle-earth.snowy_dirt_stairs": "Escaliers de terre enneigée", + "item.middle-earth.snowy_grass_block": "Bloc d'herbe enneigée", + "item.middle-earth.spiky_chain": "Chaîne à pointes", + "item.middle-earth.spruce_bench": "Banc en sapin", + "item.middle-earth.spruce_chair": "Chaise en sapin", + "item.middle-earth.spruce_hobbit_door": "Porte Hobbit en sapin", + "item.middle-earth.spruce_ladder": "Échelle en sapin", + "item.middle-earth.spruce_shingles": "Bardeaux de sapin", + "item.middle-earth.spruce_shingles_slab": "Dalle en bardeaux de sapin", + "item.middle-earth.spruce_shingles_stairs": "Escaliers en bardeaux de sapin", + "item.middle-earth.spruce_shingles_vertical_slab": "Dalle verticale en bardeaux de sapin", + "item.middle-earth.spruce_shingles_wall": "Muret en bardeaux de sapin", + "item.middle-earth.spruce_stable_door": "Porte d'écurie en sapin", + "item.middle-earth.spruce_stool": "Tabouret en sapin", + "item.middle-earth.spruce_table": "Table en sapin", + "item.middle-earth.spruce_vertical_slab": "Dalle verticale en sapin", + "item.middle-earth.spruce_wood_fence": "Barrière en bois de sapin", + "item.middle-earth.spruce_wood_slab": "Dalle en bois de sapin", + "item.middle-earth.spruce_wood_stairs": "Escalier en bois de sapin", + "item.middle-earth.spruce_wood_vertical_slab": "Dalle verticale en bois de sapin", + "item.middle-earth.spruce_wood_wall": "Muret en bois de sapin", + "item.middle-earth.starlight_phial": "Fiole d'étoiles", + "item.middle-earth.steel_axe": "Hache en acier", + "item.middle-earth.steel_block": "Bloc d'acier", + "item.middle-earth.steel_hoe": "Houe en acier", + "item.middle-earth.steel_ingot": "Lingot d'acier", + "item.middle-earth.steel_nugget": "Pépite d'acier", + "item.middle-earth.steel_pickaxe": "Pioche en acier", + "item.middle-earth.steel_shovel": "Pelle en acier", + "item.middle-earth.steel_spear": "Lance en acier", + "item.middle-earth.steel_sword": "Épée en acier", + "item.middle-earth.sticky_ice": "Glace collante", + "item.middle-earth.sticky_snow": "Neige collante", + "item.middle-earth.sting": "Dard", + "item.middle-earth.stone_brick_vertical_slab": "Dalle verticale en pierre taillée", + "item.middle-earth.stone_brickwork": "Maçonnerie en roche", + "item.middle-earth.stone_brickwork_slab": "Dalle de maçonnerie en roche", + "item.middle-earth.stone_brickwork_stairs": "Escalier en maçonnerie de roche", + "item.middle-earth.stone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en roche", + "item.middle-earth.stone_brickwork_wall": "Muret en maçonnerie de roche", + "item.middle-earth.stone_chair": "Chaise en pierre", + "item.middle-earth.stone_dagger": "Dague en pierre", + "item.middle-earth.stone_mycelium": "Mycélium pierreux", + "item.middle-earth.stone_pillar": "Pilier en roche", + "item.middle-earth.stone_rocks": "Éboulis de roche", + "item.middle-earth.stone_spear": "Lance en pierre", + "item.middle-earth.stone_stool": "Tabouret en pierre", + "item.middle-earth.stone_table": "Table en pierre", + "item.middle-earth.stone_tiles": "Roche carrelée", + "item.middle-earth.stone_trapdoor": "Trappe en pierre", + "item.middle-earth.stone_troll_spawn_egg": "Œuf d'apparition de trolls de pierre", + "item.middle-earth.stone_vertical_slab": "Dalle verticale en roche", + "item.middle-earth.straw": "Paille", + "item.middle-earth.straw_bed": "Lit de paille", + "item.middle-earth.straw_block": "Bloc de paille", + "item.middle-earth.straw_hat": "Chapeau de paille", + "item.middle-earth.straw_slab": "Dalle en paille", + "item.middle-earth.straw_stairs": "Escaliers en paille", + "item.middle-earth.straw_vertical_slab": "Dalle verticale en paille", + "item.middle-earth.straw_wall": "Muret en paille", + "item.middle-earth.stripped_acacia_wood_fence": "Barrière en bois d'acacia écorcé", + "item.middle-earth.stripped_acacia_wood_slab": "Dalle en bois d'acacia écorcée", + "item.middle-earth.stripped_acacia_wood_stairs": "Escaliers en bois d'acacia écorcé", + "item.middle-earth.stripped_acacia_wood_vertical_slab": "Dalle verticale en bois d'acacia écorcé", + "item.middle-earth.stripped_acacia_wood_wall": "Muret en bois d'acacia écorcé", + "item.middle-earth.stripped_beech_log": "Bûche de hêtre écorcée", + "item.middle-earth.stripped_beech_wood": "Bois de hêtre écorcé", + "item.middle-earth.stripped_beech_wood_fence": "Clôture en bois de hêtre écorcé", + "item.middle-earth.stripped_beech_wood_slab": "Dalle en bois de hêtre écorcée", + "item.middle-earth.stripped_beech_wood_stairs": "Escaliers en bois de hêtre écorcée", + "item.middle-earth.stripped_beech_wood_vertical_slab": "Dalle verticale en bois de hêtre écorcée", + "item.middle-earth.stripped_beech_wood_wall": "Muret en hêtre écorcé", + "item.middle-earth.stripped_birch_wood_fence": "Barrière en bois de bouleau écorcé", + "item.middle-earth.stripped_birch_wood_slab": "Dalle en bois de bouleau écorcée", + "item.middle-earth.stripped_birch_wood_stairs": "Escaliers en bois de bouleau écorcé", + "item.middle-earth.stripped_birch_wood_vertical_slab": "Dalle verticale en bois de bouleau écorcé", + "item.middle-earth.stripped_birch_wood_wall": "Muret en bois de bouleau écorcé", + "item.middle-earth.stripped_black_lebethron_log": "Bûche de Lebethron noir écorcée", + "item.middle-earth.stripped_black_lebethron_wood": "Bois de Lebethron noir écorcé", + "item.middle-earth.stripped_black_lebethron_wood_fence": "Barrière en bois de Lebethron noir écorcé", + "item.middle-earth.stripped_black_lebethron_wood_slab": "Dalle en bois de Lebethron noir écorcé", + "item.middle-earth.stripped_black_lebethron_wood_stairs": "Escaliers en bois de Lebethron noir écorcé", + "item.middle-earth.stripped_black_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron noir écorcé", + "item.middle-earth.stripped_black_lebethron_wood_wall": "Muret en bois de Lebethron noir écorcé", + "item.middle-earth.stripped_black_pine_log": "Bûche de pin noir écorcée", + "item.middle-earth.stripped_black_pine_wood": "Bois de pin noir écorcé", + "item.middle-earth.stripped_black_pine_wood_fence": "Barrière en bois de pin noir écorcé", + "item.middle-earth.stripped_black_pine_wood_slab": "Dalle en bois de pin noir écorcé", + "item.middle-earth.stripped_black_pine_wood_stairs": "Escaliers en bois de pin noir écorcé", + "item.middle-earth.stripped_black_pine_wood_vertical_slab": "Dalle verticale en bois de pin noir écorcé", + "item.middle-earth.stripped_black_pine_wood_wall": "Muret en pin noir écorcé", + "item.middle-earth.stripped_cherry_wood_fence": "Barrière en bois de cerisier écorcé", + "item.middle-earth.stripped_cherry_wood_slab": "Dalle en bois de cerisier écorcé", + "item.middle-earth.stripped_cherry_wood_stairs": "Escaliers en bois de cerisier écorcé", + "item.middle-earth.stripped_cherry_wood_vertical_slab": "Dalle verticale en bois de cerisier écorcé", + "item.middle-earth.stripped_cherry_wood_wall": "Muret en bois de cerisier écorcé", + "item.middle-earth.stripped_chestnut_log": "Bûche de châtaignier écorcée", + "item.middle-earth.stripped_chestnut_wood": "Bois de châtaignier écorcé", + "item.middle-earth.stripped_chestnut_wood_fence": "Barrière en bois de châtaignier écorcé", + "item.middle-earth.stripped_chestnut_wood_slab": "Dalle en bois de châtaignier écorcé", + "item.middle-earth.stripped_chestnut_wood_stairs": "Escaliers en bois de châtaignier écorcé", + "item.middle-earth.stripped_chestnut_wood_vertical_slab": "Dalle verticale en bois de châtaignier écorcé", + "item.middle-earth.stripped_chestnut_wood_wall": "Muret en châtaignier écorcé", + "item.middle-earth.stripped_dark_oak_wood_fence": "Barrière en bois de chêne noir écorcé", + "item.middle-earth.stripped_dark_oak_wood_slab": "Dalle en bois de chêne noir écorcée", + "item.middle-earth.stripped_dark_oak_wood_stairs": "Escaliers en bois de chêne noir écorcé", + "item.middle-earth.stripped_dark_oak_wood_vertical_slab": "Dalle verticale en bois de chêne noir écorcé", + "item.middle-earth.stripped_dark_oak_wood_wall": "Muret en bois de chêne noir écorcé", + "item.middle-earth.stripped_holly_log": "Bûche de houx écorcée", + "item.middle-earth.stripped_holly_wood": "Bois de houx écorcé", + "item.middle-earth.stripped_holly_wood_fence": "Barrière en bois de houx écorcé", + "item.middle-earth.stripped_holly_wood_slab": "Dalle en bois de houx écorcé", + "item.middle-earth.stripped_holly_wood_stairs": "Escaliers en bois de houx écorcé", + "item.middle-earth.stripped_holly_wood_vertical_slab": "Dalle verticale en bois de houx écorcé", + "item.middle-earth.stripped_holly_wood_wall": "Muret en houx écorcé", + "item.middle-earth.stripped_jungle_wood_fence": "Barrière en bois d'acajou écorcé", + "item.middle-earth.stripped_jungle_wood_slab": "Dalle en bois d'acajou écorcée", + "item.middle-earth.stripped_jungle_wood_stairs": "Escaliers en bois d'acajou écorcé", + "item.middle-earth.stripped_jungle_wood_vertical_slab": "Dalle verticale en bois d'acajou écorcé", + "item.middle-earth.stripped_jungle_wood_wall": "Muret en bois d'acajou écorcé", + "item.middle-earth.stripped_larch_log": "Bûche de mélèze écorcée", + "item.middle-earth.stripped_larch_wood": "Bois de mélèze écorcé", + "item.middle-earth.stripped_larch_wood_fence": "Barrière en bois de mélèze écorcé", + "item.middle-earth.stripped_larch_wood_slab": "Dalle en bois de mélèze écorcé", + "item.middle-earth.stripped_larch_wood_stairs": "Escaliers en bois de mélèze écorcé", + "item.middle-earth.stripped_larch_wood_vertical_slab": "Dalle verticale en bois de mélèze écorcé", + "item.middle-earth.stripped_larch_wood_wall": "Muret en mélèze écorcé", + "item.middle-earth.stripped_mallorn_log": "Bûche de Mallorn écorcée", + "item.middle-earth.stripped_mallorn_wood": "Bois de Mallorn écorcé", + "item.middle-earth.stripped_mallorn_wood_fence": "Barrière en bois de Mallorn écorcé", + "item.middle-earth.stripped_mallorn_wood_slab": "Dalle en bois de Mallorn écorcé", + "item.middle-earth.stripped_mallorn_wood_stairs": "Escaliers en bois de Mallorn écorcé", + "item.middle-earth.stripped_mallorn_wood_vertical_slab": "Dalle verticale en bois de Mallorn écorcé", + "item.middle-earth.stripped_mallorn_wood_wall": "Muret en bois de Mallorn écorcé", + "item.middle-earth.stripped_mangrove_wood_fence": "Barrière en bois de palétuvier écorcé", + "item.middle-earth.stripped_mangrove_wood_slab": "Dalle en bois de palétuvier écorcé", + "item.middle-earth.stripped_mangrove_wood_stairs": "Escaliers en bois de palétuvier écorcé", + "item.middle-earth.stripped_mangrove_wood_vertical_slab": "Dalle verticale en bois de palétuvier écorcé", + "item.middle-earth.stripped_mangrove_wood_wall": "Muret en bois de palétuvier écorcé", + "item.middle-earth.stripped_maple_log": "Bûche d'érable écorcée", + "item.middle-earth.stripped_maple_wood": "Bois d'érable écorcé", + "item.middle-earth.stripped_maple_wood_fence": "Barrière en bois d'érable écorcé", + "item.middle-earth.stripped_maple_wood_slab": "Dalle en bois d'érable écorcé", + "item.middle-earth.stripped_maple_wood_stairs": "Escaliers en bois d'érable écorcé", + "item.middle-earth.stripped_maple_wood_vertical_slab": "Dalle verticale en bois d'érable écorcé", + "item.middle-earth.stripped_maple_wood_wall": "Muret en bois d'érable écorcé", + "item.middle-earth.stripped_mirkwood_log": "Bûche écorcée de la Forêt noire", + "item.middle-earth.stripped_mirkwood_wood": "Bois de la Forêt noire écorcé", + "item.middle-earth.stripped_mirkwood_wood_fence": "Barrière en bois de la Forêt noire écorcé", + "item.middle-earth.stripped_mirkwood_wood_slab": "Dalle en bois de la Forêt noire écorcé", + "item.middle-earth.stripped_mirkwood_wood_stairs": "Escaliers en bois de la Forêt noire écorcé", + "item.middle-earth.stripped_mirkwood_wood_vertical_slab": "Dalle verticale en bois de la Forêt noire écorcé", + "item.middle-earth.stripped_mirkwood_wood_wall": "Muret en bois de la Forêt noire écorcé", + "item.middle-earth.stripped_oak_wood_fence": "Barrière en bois de chêne écorcé", + "item.middle-earth.stripped_oak_wood_slab": "Dalle en bois de chêne écorcée", + "item.middle-earth.stripped_oak_wood_stairs": "Escaliers en bois de chêne écorcé", + "item.middle-earth.stripped_oak_wood_vertical_slab": "Dalle verticale en bois de chêne écorcé", + "item.middle-earth.stripped_oak_wood_wall": "Muret en bois de chêne écorcé", + "item.middle-earth.stripped_palm_log": "Bûche de palmier écorcée", + "item.middle-earth.stripped_palm_wood": "Bois de palmier écorcé", + "item.middle-earth.stripped_palm_wood_fence": "Barrière en bois de palmier écorcé", + "item.middle-earth.stripped_palm_wood_slab": "Dalle en bois de palmier écorcé", + "item.middle-earth.stripped_palm_wood_stairs": "Escaliers en bois de palmier écorcé", + "item.middle-earth.stripped_palm_wood_vertical_slab": "Dalle verticale en bois de palmier écorcé", + "item.middle-earth.stripped_palm_wood_wall": "Muret en bois de palmier écorcé", + "item.middle-earth.stripped_pine_log": "Bûche de pin écorcée", + "item.middle-earth.stripped_pine_wood": "Bois de pin écorcé", + "item.middle-earth.stripped_pine_wood_fence": "Barrière en bois de pin écorcé", + "item.middle-earth.stripped_pine_wood_slab": "Dalle en bois de pin écorcé", + "item.middle-earth.stripped_pine_wood_stairs": "Escaliers en bois de pin écorcé", + "item.middle-earth.stripped_pine_wood_vertical_slab": "Dalle verticale en bois de pin écorcé", + "item.middle-earth.stripped_pine_wood_wall": "Muret en pin écorcé", + "item.middle-earth.stripped_scorched_log": "Bûche calcinée écorcée", + "item.middle-earth.stripped_scorched_wood": "Bois calciné écorcé", + "item.middle-earth.stripped_scorched_wood_fence": "Barrière en bois calciné écorcé", + "item.middle-earth.stripped_scorched_wood_slab": "Dalle en bois calciné écorcé", + "item.middle-earth.stripped_scorched_wood_stairs": "Escaliers en bois calciné écorcé", + "item.middle-earth.stripped_scorched_wood_vertical_slab": "Dalle verticale en bois calciné écorcé", + "item.middle-earth.stripped_scorched_wood_wall": "Muret en bois calciné écorcé", + "item.middle-earth.stripped_silver_maple_log": "Bûche d'érable argenté écorcée", + "item.middle-earth.stripped_silver_maple_wood": "Bois d'érable argenté écorcé", + "item.middle-earth.stripped_silver_maple_wood_fence": "Barrière en bois d'érable argenté écorcé", + "item.middle-earth.stripped_silver_maple_wood_slab": "Dalle en bois d'érable argenté écorcé", + "item.middle-earth.stripped_silver_maple_wood_stairs": "Escaliers en bois d'érable argenté écorcé", + "item.middle-earth.stripped_silver_maple_wood_vertical_slab": "Dalle verticale en bois d'érable argenté écorcé", + "item.middle-earth.stripped_silver_maple_wood_wall": "Muret en bois d'érable argenté écorcé", + "item.middle-earth.stripped_spruce_wood_fence": "Barrière en bois de sapin écorcé", + "item.middle-earth.stripped_spruce_wood_slab": "Dalle en bois de sapin écorcée", + "item.middle-earth.stripped_spruce_wood_stairs": "Escaliers en bois de sapin écorcé", + "item.middle-earth.stripped_spruce_wood_vertical_slab": "Dalle verticale en bois de sapin écorcé", + "item.middle-earth.stripped_spruce_wood_wall": "Muret en bois de sapin écorcé", + "item.middle-earth.stripped_white_lebethron_log": "Bûche de Lebethron blanc écorcée", + "item.middle-earth.stripped_white_lebethron_wood": "Bois de Lebethron blanc écorcé", + "item.middle-earth.stripped_white_lebethron_wood_fence": "Barrière en bois de Lebethron blanc écorcé", + "item.middle-earth.stripped_white_lebethron_wood_slab": "Dalle en bois de Lebethron blanc écorcé", + "item.middle-earth.stripped_white_lebethron_wood_stairs": "Escaliers en bois de Lebethron blanc écorcé", + "item.middle-earth.stripped_white_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron blanc écorcé", + "item.middle-earth.stripped_white_lebethron_wood_wall": "Muret en bois de Lebethron blanc écorcé", + "item.middle-earth.stripped_white_palm_log": "Bûche de palmier blanc écorcée", + "item.middle-earth.stripped_white_palm_wood": "Bois de palmier blanc écorcé", + "item.middle-earth.stripped_white_palm_wood_fence": "Barrière en bois de palmier blanc écorcé", + "item.middle-earth.stripped_white_palm_wood_slab": "Dalle en bois de palmier blanc écorcé", + "item.middle-earth.stripped_white_palm_wood_stairs": "Escaliers en bois de palmier blanc écorcé", + "item.middle-earth.stripped_white_palm_wood_vertical_slab": "Dalle verticale en bois de palmier blanc écorcé", + "item.middle-earth.stripped_white_palm_wood_wall": "Muret en bois de palmier blanc écorcé", + "item.middle-earth.stripped_willow_log": "Bûche de saule écorcée", + "item.middle-earth.stripped_willow_wood": "Bois de saule écorcé", + "item.middle-earth.stripped_willow_wood_fence": "Barrière en bois de saule écorcé", + "item.middle-earth.stripped_willow_wood_slab": "Dalle en bois de saule écorcé", + "item.middle-earth.stripped_willow_wood_stairs": "Escalier en bois de saule écorcé", + "item.middle-earth.stripped_willow_wood_vertical_slab": "Dalle verticale en bois de saule écorcé", + "item.middle-earth.stripped_willow_wood_wall": "Muret en bois de saule écorcé", + "item.middle-earth.stucco": "Stuc", + "item.middle-earth.stucco_slab": "Dalle en stuc", + "item.middle-earth.stucco_stairs": "Escaliers en stuc", + "item.middle-earth.stucco_vertical_slab": "Dalle verticale en stuc", + "item.middle-earth.stucco_wall": "Muret en stuc", + "item.middle-earth.sturdy_boots": "Bottes robustes", + "item.middle-earth.surcoat": "Surcot", + "item.middle-earth.swan_feather": "Plume de cygne", + "item.middle-earth.sword_hilt": "Poignée d'épée", + "item.middle-earth.tall_black_pine_door": "Grande porte en pin noir", + "item.middle-earth.tall_bulrush": "Grand jonc", + "item.middle-earth.tall_cattails": "Grandes quenouilles", + "item.middle-earth.tall_hood": "Grande capuche", + "item.middle-earth.tall_trumpet_shroom": "Grande champi-trompette", + "item.middle-earth.tall_tubeshroom": "Grand champi-tube", + "item.middle-earth.tan_clay_bricks": "Briques d'argile fauve", + "item.middle-earth.tan_clay_brickwork": "Maçonnerie en argile fauve", + "item.middle-earth.tan_clay_brickwork_slab": "Dalle de maçonnerie en argile fauve", + "item.middle-earth.tan_clay_brickwork_stairs": "Escalier en maçonnerie d'argile fauve", + "item.middle-earth.tan_clay_brickwork_vertical_slab": "Dalle verticale de maçonnerie en argile fauve", + "item.middle-earth.tan_clay_brickwork_wall": "Muret en maçonnerie d'argile fauve", + "item.middle-earth.tan_clay_tiles": "Tuile d'argile fauve", + "item.middle-earth.tan_fur": "Fourrure fauve", + "item.middle-earth.tan_fur_cloak": "Manteau en fourrure fauve", + "item.middle-earth.tan_fur_hood": "Capuche en fourrure fauve", + "item.middle-earth.tan_shrub": "Arbuste bruni", + "item.middle-earth.temperate_grass": "Herbe tempérée", + "item.middle-earth.thatch": "Chaume", + "item.middle-earth.thatch_slab": "Dalle en chaume", + "item.middle-earth.thatch_stairs": "Escaliers en chaume", + "item.middle-earth.thatch_vertical_slab": "Dalle verticale en chaume", + "item.middle-earth.thatch_wall": "Muret en chaume", + "item.middle-earth.thin_barrel": "Tonneau fin", + "item.middle-earth.tin_block": "Bloc d'étain", + "item.middle-earth.tin_ingot": "Lingot d'étain", + "item.middle-earth.tin_nugget": "Pépite d'étain", + "item.middle-earth.tin_ore": "Minerai d'étain", + "item.middle-earth.tomato": "Tomate", + "item.middle-earth.tomato_seeds": "Graines de tomate", + "item.middle-earth.torch_of_orthanc": "Torche d'Orthanc", + "item.middle-earth.tough_berries": "Baies coriaces", + "item.middle-earth.travelling_boots": "Bottes de voyage", + "item.middle-earth.treated_anvil": "Enclume traitée", + "item.middle-earth.treated_steel_bars": "Barreaux en acier traité", + "item.middle-earth.treated_steel_door": "Porte en acier traité", + "item.middle-earth.treated_steel_rod": "Baguette en acier traité", + "item.middle-earth.treated_steel_trapdoor": "Trappe en acier traité", + "item.middle-earth.treated_wood": "Bois traité", + "item.middle-earth.treated_wood_beam": "Poutre en bois traité", + "item.middle-earth.treated_wood_beam_slab": "Dalle de poutre en bois traité", + "item.middle-earth.treated_wood_beam_stairs": "Escalier de poutre en bois traité", + "item.middle-earth.treated_wood_beam_vertical_slab": "Dalle verticale de poutre en bois traité", + "item.middle-earth.treated_wood_beam_wall": "Muret de poutre en bois traité", + "item.middle-earth.treated_wood_bench": "Banc en bois traité", + "item.middle-earth.treated_wood_carved_beam": "Poutre sculptée en bois traité", + "item.middle-earth.treated_wood_carved_beam_slab": "Dalle de poutre sculptée en bois traité", + "item.middle-earth.treated_wood_carved_beam_stairs": "Escalier de poutre sculptée en bois traité", + "item.middle-earth.treated_wood_carved_beam_vertical_slab": "Dalle verticale de poutre sculptée en bois traité", + "item.middle-earth.treated_wood_carved_beam_wall": "Muret de poutre sculptée en bois traité", + "item.middle-earth.treated_wood_chair": "Chaise en bois traité", + "item.middle-earth.treated_wood_ladder": "Échelle en bois traité", + "item.middle-earth.treated_wood_panels": "Panneaux en bois traité", + "item.middle-earth.treated_wood_panels_slab": "Dalle en panneaux de bois traité", + "item.middle-earth.treated_wood_panels_stairs": "Escalier en panneaux de bois traité", + "item.middle-earth.treated_wood_panels_vertical_slab": "Dalle verticale en panneaux de bois traité", + "item.middle-earth.treated_wood_panels_wall": "Muret en panneaux de bois traité", + "item.middle-earth.treated_wood_planks": "Planches de bois traité", + "item.middle-earth.treated_wood_planks_slab": "Dalle en planches de bois traité", + "item.middle-earth.treated_wood_planks_stairs": "Escalier en planches de bois traité", + "item.middle-earth.treated_wood_planks_vertical_slab": "Dalle verticale en planches de bois traité", + "item.middle-earth.treated_wood_planks_wall": "Muret en planches de bois traité", + "item.middle-earth.treated_wood_slab": "Dalle en bois traité", + "item.middle-earth.treated_wood_stairs": "Escalier en bois traité", + "item.middle-earth.treated_wood_stool": "Tabouret en bois traité", + "item.middle-earth.treated_wood_table": "Table en bois traité", + "item.middle-earth.treated_wood_tiling": "Carrelage en bois traité", + "item.middle-earth.treated_wood_tiling_slab": "Dalle de carrelage en bois traité", + "item.middle-earth.treated_wood_tiling_stairs": "Escalier de carrelage en bois traité", + "item.middle-earth.treated_wood_tiling_vertical_slab": "Dalle verticale de carrelage en bois traité", + "item.middle-earth.treated_wood_tiling_wall": "Muret de carrelage en bois traité", + "item.middle-earth.treated_wood_vertical_slab": "Dalle verticale en bois traité", + "item.middle-earth.treated_wood_wall": "Muret en bois traité", + "item.middle-earth.troll_statue": "Statue de troll", + "item.middle-earth.trumpet_shroom": "Champi-trompette", + "item.middle-earth.tubeshroom": "Champi-tube", + "item.middle-earth.tuff_brick_vertical_slab": "Dalle verticale en briques de tuf", + "item.middle-earth.tuff_brickwork": "Maçonnerie en tuf", + "item.middle-earth.tuff_brickwork_slab": "Dalle de maçonnerie en tuf", + "item.middle-earth.tuff_brickwork_stairs": "Escalier en maçonnerie de tuf", + "item.middle-earth.tuff_brickwork_vertical_slab": "Dalle verticale de maçonnerie en tuf", + "item.middle-earth.tuff_brickwork_wall": "Muret en maçonnerie de tuf", + "item.middle-earth.tuff_carved_window": "Fenêtre sculptée en tuf", + "item.middle-earth.tuff_chair": "Chaise en tuf", + "item.middle-earth.tuff_pillar": "Pilier en tuf", + "item.middle-earth.tuff_rocks": "Éboulis de tuf", + "item.middle-earth.tuff_stool": "Tabouret en tuf", + "item.middle-earth.tuff_table": "Table en tuf", + "item.middle-earth.tuff_tiles": "Tuf carrelé", + "item.middle-earth.tuff_trapdoor": "Trappe en tuf", + "item.middle-earth.tuff_vertical_slab": "Dalle verticale en tuf", + "item.middle-earth.turf": "Gazon", + "item.middle-earth.turf_slab": "Dalle de gazon", + "item.middle-earth.turf_stairs": "Escaliers de gazon", + "item.middle-earth.turf_vertical_slab": "Dalle verticale de gazon", + "item.middle-earth.uruk_hai_axe": "Hache Uruk-hai", + "item.middle-earth.uruk_hai_berserker_helmet": "Casque de berserker Uruk-hai", + "item.middle-earth.uruk_hai_boots": "Bottes Uruk-hai", + "item.middle-earth.uruk_hai_bow": "Arc Uruk-hai", + "item.middle-earth.uruk_hai_commander_helmet": "Casque de commandant Uruk-hai", + "item.middle-earth.uruk_hai_crossbow": "Arbalète Uruk-hai", + "item.middle-earth.uruk_hai_cuirass": "Cuirasse Uruk-hai", + "item.middle-earth.uruk_hai_falchion": "Fauchon Uruk-hai", + "item.middle-earth.uruk_hai_heater_shield": "Écu Uruk-hai", + "item.middle-earth.uruk_hai_knife": "Couteau Uruk-hai", + "item.middle-earth.uruk_hai_leather_chestplate": "Plastron en cuir Uruk-hai", + "item.middle-earth.uruk_hai_leather_hauberk": "Haubert en cuir Uruk-hai", + "item.middle-earth.uruk_hai_leather_scout_cap": "Calotte en cuir d'éclaireur Uruk-hai", + "item.middle-earth.uruk_hai_light_helmet": "Casque léger Uruk-hai", + "item.middle-earth.uruk_hai_mail_coat": "Cotte de maille Uruk-hai", + "item.middle-earth.uruk_hai_mail_hauberk": "Haubert de maille Uruk-hai", + "item.middle-earth.uruk_hai_mail_skirt": "Jupe de maille Uruk-hai", + "item.middle-earth.uruk_hai_painted_berserker_helmet": "Casque de berserker peint Uruk-hai", + "item.middle-earth.uruk_hai_painted_commander_helmet": "Casque de commandant peint Uruk-hai", + "item.middle-earth.uruk_hai_painted_leather_chestplate": "Plastron en cuir peint Uruk-hai", + "item.middle-earth.uruk_hai_painted_light_helmet": "Casque léger peint Uruk-hai", + "item.middle-earth.uruk_hai_painted_plate_helmet": "Casque de plates peint Uruk-hai", + "item.middle-earth.uruk_hai_painted_reinforced_helmet": "Casque renforcé peint Uruk-hai", + "item.middle-earth.uruk_hai_painted_sapper_helmet": "Casque de sapeur peint Uruk-hai", + "item.middle-earth.uruk_hai_painted_soldier_helmet": "Casque de soldat peint Uruk-hai", + "item.middle-earth.uruk_hai_plate_boots": "Bottes de plates Uruk-hai", + "item.middle-earth.uruk_hai_plate_chestplate": "Plastron de plates Uruk-hai", + "item.middle-earth.uruk_hai_plate_helmet": "Casque de plates Uruk-hai", + "item.middle-earth.uruk_hai_plate_leggings": "Jambières de plates Uruk-hai", + "item.middle-earth.uruk_hai_reinforced_helmet": "Casque renforcé Uruk-hai", + "item.middle-earth.uruk_hai_s_rune_shield": "Bouclier à la rune S Uruk-hai", + "item.middle-earth.uruk_hai_sapper_helmet": "Casque de sapeur Uruk-hai", + "item.middle-earth.uruk_hai_shield": "Bouclier Uruk-hai", + "item.middle-earth.uruk_hai_siege_shield": "Bouclier de siège Uruk-hai", + "item.middle-earth.uruk_hai_soldier_helmet": "Casque de soldat Uruk-hai", + "item.middle-earth.uruk_hai_spear": "Lance Uruk-hai", + "item.middle-earth.uruk_hai_warblade": "Lame de guerre Uruk-hai", + "item.middle-earth.uruk_hai_white_hand_shield": "Bouclier à la Main Blanche Uruk-hai", + "item.middle-earth.uruk_hai_white_palmprint_shield": "Bouclier à l'empreinte de main blanche Uruk-hai", + "item.middle-earth.varnished_dwarven_door": "Porte naine vernie", + "item.middle-earth.vegetable_skewer": "Brochette de légumes", + "item.middle-earth.vegetable_soup": "Soupe de légumes", + "item.middle-earth.violet_caps": "Champignon violet", + "item.middle-earth.violet_caps_tiller": "Talle de champignon violet", + "item.middle-earth.wanderer_hat": "Chapeau de voyageur", + "item.middle-earth.wanderer_robes": "Robes de voyageur", + "item.middle-earth.warg_gundabad_plate_armor": "Armure de plates de Warg de Gundabad", + "item.middle-earth.warg_isengard_plate_armor": "Armure de plates de Warg d'Isengard", + "item.middle-earth.warg_leather_armor": "Armure en cuir de Warg", + "item.middle-earth.warg_mordor_mail_armor": "Armure de maille de Warg de Mordor", + "item.middle-earth.warg_mordor_plate_armor": "Armure de plates de Warg de Mordor", + "item.middle-earth.warg_reinforced_leather_armor": "Armure en cuir renforcée de Warg", + "item.middle-earth.warg_spawn_egg": "Œuf d'apparition de Warg", + "item.middle-earth.warped_bench": "Banc biscornu", + "item.middle-earth.warped_chair": "Chaise biscornue", + "item.middle-earth.warped_ladder": "Échelle biscornue", + "item.middle-earth.warped_shingles": "Bardeaux biscornus", + "item.middle-earth.warped_shingles_slab": "Dalle en bardeaux biscornus", + "item.middle-earth.warped_shingles_stairs": "Escaliers en bardeaux biscornus", + "item.middle-earth.warped_shingles_vertical_slab": "Dalle verticale en bardeaux biscornus", + "item.middle-earth.warped_shingles_wall": "Muret en bardeaux biscornus", + "item.middle-earth.warped_stool": "Tabouret biscornu", + "item.middle-earth.warped_table": "Table biscornue", + "item.middle-earth.warped_vertical_slab": "Dalle verticale biscornue", + "item.middle-earth.water_phial": "Fiole d'eau", + "item.middle-earth.wattle_and_brick": "Clayonnage et brique", + "item.middle-earth.wattle_and_brick_cross": "Clayonnage et brique en croix", + "item.middle-earth.wattle_and_brick_diamond": "Clayonnage et brique en losange", + "item.middle-earth.wattle_and_brick_left": "Clayonnage et brique à gauche", + "item.middle-earth.wattle_and_brick_pillar": "Pilier de clayonnage et brique", + "item.middle-earth.wattle_and_brick_right": "Clayonnage et brique à droite", + "item.middle-earth.wattle_and_brick_window": "Fenêtre à clayonnage et brique", + "item.middle-earth.wattle_and_brick_window_pane": "Vitre à clayonnage et brique", + "item.middle-earth.wattle_and_white_daub": "Clayonnage et torchis blanc", + "item.middle-earth.wattle_and_white_daub_cross": "Clayonnage et torchis blanc en croix", + "item.middle-earth.wattle_and_white_daub_diamond": "Clayonnage et torchis blanc en losange", + "item.middle-earth.wattle_and_white_daub_left": "Clayonnage et torchis blanc à gauche", + "item.middle-earth.wattle_and_white_daub_pillar": "Pilier de clayonnage et torchis blanc", + "item.middle-earth.wattle_and_white_daub_right": "Clayonnage et torchis blanc à droite", + "item.middle-earth.wattle_and_yellow_daub": "Clayonnage et torchis jaune", + "item.middle-earth.wattle_and_yellow_daub_cross": "Clayonnage et torchis jaune en croix", + "item.middle-earth.wattle_and_yellow_daub_diamond": "Clayonnage et torchis jaune en losange", + "item.middle-earth.wattle_and_yellow_daub_left": "Clayonnage et torchis jaune à gauche", + "item.middle-earth.wattle_and_yellow_daub_pillar": "Pilier de clayonnage et torchis jaune", + "item.middle-earth.wattle_and_yellow_daub_right": "Clayonnage et torchis jaune à droite", + "item.middle-earth.wattle_framed_window": "Fenêtre à clayonnage", + "item.middle-earth.wattle_framed_window_pane": "Fenêtre plate à clayonnage", + "item.middle-earth.wattle_trapdoor": "Trappe en clayonnage", + "item.middle-earth.waxed_aged_thatch": "Chaume vieilli ciré", + "item.middle-earth.waxed_aged_thatch_slab": "Dalle en chaume vieilli ciré", + "item.middle-earth.waxed_aged_thatch_stairs": "Escaliers en chaume vieilli ciré", + "item.middle-earth.waxed_aged_thatch_vertical_slab": "Dalle verticale en chaume vieilli ciré", + "item.middle-earth.waxed_aged_thatch_wall": "Muret en chaume vieilli ciré", + "item.middle-earth.waxed_copper_bars": "Barreaux en cuivre ciré", + "item.middle-earth.waxed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé ciré", + "item.middle-earth.waxed_cut_copper_wall": "Muret en cuivre taillé ciré", + "item.middle-earth.waxed_exposed_copper_bars": "Barreaux en cuivre exposé ciré", + "item.middle-earth.waxed_exposed_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé exposé ciré", + "item.middle-earth.waxed_exposed_cut_copper_wall": "Muret en cuivre taillé exposé ciré", + "item.middle-earth.waxed_old_thatch": "Chaume ancien ciré", + "item.middle-earth.waxed_old_thatch_slab": "Dalle en chaume ancien ciré", + "item.middle-earth.waxed_old_thatch_stairs": "Escaliers en chaume ancien ciré", + "item.middle-earth.waxed_old_thatch_vertical_slab": "Dalle verticale en chaume ancien ciré", + "item.middle-earth.waxed_old_thatch_wall": "Muret en chaume ancien ciré", + "item.middle-earth.waxed_oxidized_copper_bars": "Barreaux en cuivre oxydé ciré", + "item.middle-earth.waxed_oxidized_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé oxydé ciré", + "item.middle-earth.waxed_oxidized_cut_copper_wall": "Muret en cuivre taillé oxydé ciré", + "item.middle-earth.waxed_rotten_thatch": "Chaume pourri ciré", + "item.middle-earth.waxed_rotten_thatch_slab": "Dalle en chaume pourri ciré", + "item.middle-earth.waxed_rotten_thatch_stairs": "Escaliers en chaume pourri ciré", + "item.middle-earth.waxed_rotten_thatch_vertical_slab": "Dalle verticale en chaume pourri ciré", + "item.middle-earth.waxed_rotten_thatch_wall": "Muret en chaume pourri ciré", + "item.middle-earth.waxed_thatch": "Chaume ciré", + "item.middle-earth.waxed_thatch_slab": "Dalle en chaume ciré", + "item.middle-earth.waxed_thatch_stairs": "Escaliers en chaume ciré", + "item.middle-earth.waxed_thatch_vertical_slab": "Dalle verticale en chaume ciré", + "item.middle-earth.waxed_thatch_wall": "Muret en chaume ciré", + "item.middle-earth.waxed_weathered_copper_bars": "Barreaux en cuivre érodé ciré", + "item.middle-earth.waxed_weathered_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé érodé ciré", + "item.middle-earth.waxed_weathered_cut_copper_wall": "Muret en cuivre taillé érodé ciré", + "item.middle-earth.waxed_weathered_thatch": "Chaume altéré ciré", + "item.middle-earth.waxed_weathered_thatch_slab": "Dalle en chaume altéré ciré", + "item.middle-earth.waxed_weathered_thatch_stairs": "Escaliers en chaume altéré ciré", + "item.middle-earth.waxed_weathered_thatch_vertical_slab": "Dalle verticale en chaume altéré ciré", + "item.middle-earth.waxed_weathered_thatch_wall": "Muret en chaume altéré ciré", + "item.middle-earth.weathered_copper_bars": "Barreaux en cuivre érodé", + "item.middle-earth.weathered_cut_copper_vertical_slab": "Dalle verticale en cuivre taillé érodé", + "item.middle-earth.weathered_cut_copper_wall": "Muret en cuivre taillé érodé", + "item.middle-earth.weathered_shingles": "Bardeaux usés", + "item.middle-earth.weathered_shingles_slab": "Dalle en bardeaux usés", + "item.middle-earth.weathered_shingles_stairs": "Escaliers en bardeaux usés", + "item.middle-earth.weathered_shingles_vertical_slab": "Dalle verticale en bardeaux usés", + "item.middle-earth.weathered_shingles_wall": "Muret en bardeaux usés", + "item.middle-earth.weathered_thatch": "Chaume altéré", + "item.middle-earth.weathered_thatch_slab": "Dalle en chaume altéré", + "item.middle-earth.weathered_thatch_stairs": "Escaliers en chaume altéré", + "item.middle-earth.weathered_thatch_vertical_slab": "Dalle verticale en chaume altéré", + "item.middle-earth.weathered_thatch_wall": "Muret en chaume altéré", + "item.middle-earth.wheatgrass": "Blé en herbe", + "item.middle-earth.white_clay_tiling": "Tuile d'argile blanche", + "item.middle-earth.white_clay_tiling_slab": "Dalle en tuile d'argile blanche", + "item.middle-earth.white_clay_tiling_stairs": "Escaliers en tuile d'argile blanche", + "item.middle-earth.white_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile blanche", + "item.middle-earth.white_clay_tiling_wall": "Muret en tuile d'argile blanche", + "item.middle-earth.white_daub": "Torchis blanc", + "item.middle-earth.white_daub_hobbit_window": "Torchis blanc et fenêtre Hobbit", + "item.middle-earth.white_daub_hobbit_window_pane": "Torchis blanc et fenêtre plate Hobbit", + "item.middle-earth.white_daub_round_window": "Fenêtre ronde en torchis blanc", + "item.middle-earth.white_daub_round_window_pane": "Vitre ronde en torchis blanc", + "item.middle-earth.white_daub_slab": "Dalle en torchis blanc", + "item.middle-earth.white_daub_stairs": "Escalier en torchis blanc", + "item.middle-earth.white_daub_vertical_slab": "Dalle verticale en torchis blanc", + "item.middle-earth.white_daub_wall": "Muret en torchis blanc", + "item.middle-earth.white_flower_growth": "Pousse de fleurs blanches", + "item.middle-earth.white_flowers": "Fleurs blanches", + "item.middle-earth.white_fur": "Fourrure blanche", + "item.middle-earth.white_fur_cloak": "Manteau en fourrure blanche", + "item.middle-earth.white_fur_hood": "Capuche en fourrure blanche", + "item.middle-earth.white_lebethron_bench": "Banc en Lebethron blanc", + "item.middle-earth.white_lebethron_button": "Bouton en Lebethron blanc", + "item.middle-earth.white_lebethron_chair": "Chaise en Lebethron blanc", + "item.middle-earth.white_lebethron_door": "Porte en Lebethron blanc", + "item.middle-earth.white_lebethron_fence": "Barrière en Lebethron blanc", + "item.middle-earth.white_lebethron_fence_gate": "Portillon en Lebethron blanc", + "item.middle-earth.white_lebethron_ladder": "Échelle en Lebethron blanc", + "item.middle-earth.white_lebethron_log": "Bûche de Lebethron blanc", + "item.middle-earth.white_lebethron_planks": "Planches de Lebethron blanc", + "item.middle-earth.white_lebethron_pressure_plate": "Plaque de pression en Lebethron blanc", + "item.middle-earth.white_lebethron_roofing": "Toiture en Lebethron blanc", + "item.middle-earth.white_lebethron_roofing_slab": "Dalle de toiture en Lebethron blanc", + "item.middle-earth.white_lebethron_roofing_stairs": "Escalier de toiture en Lebethron blanc", + "item.middle-earth.white_lebethron_roofing_vertical_slab": "Dalle verticale de toiture en Lebethron blanc", + "item.middle-earth.white_lebethron_roofing_wall": "Muret de toiture en Lebethron blanc", + "item.middle-earth.white_lebethron_sapling": "Pousse de Lebethron blanc", + "item.middle-earth.white_lebethron_shingles": "Bardeaux en Lebethron blanc", + "item.middle-earth.white_lebethron_shingles_slab": "Dalle en bardeaux de Lebethron blanc", + "item.middle-earth.white_lebethron_shingles_stairs": "Escaliers en bardeaux de Lebethron blanc", + "item.middle-earth.white_lebethron_shingles_vertical_slab": "Dalle verticale en bardeaux de Lebethron blanc", + "item.middle-earth.white_lebethron_shingles_wall": "Muret en bardeaux de Lebethron blanc", + "item.middle-earth.white_lebethron_slab": "Dalle en Lebethron blanc", + "item.middle-earth.white_lebethron_stairs": "Escaliers en Lebethron blanc", + "item.middle-earth.white_lebethron_stool": "Tabouret en Lebethron blanc", + "item.middle-earth.white_lebethron_table": "Table en Lebethron blanc", + "item.middle-earth.white_lebethron_trapdoor": "Trappe en Lebethron blanc", + "item.middle-earth.white_lebethron_vertical_slab": "Dalle verticale en Lebethron blanc", + "item.middle-earth.white_lebethron_wood": "Bois de Lebethron blanc", + "item.middle-earth.white_lebethron_wood_fence": "Barrière en bois de Lebethron blanc", + "item.middle-earth.white_lebethron_wood_slab": "Dalle en bois de Lebethron blanc", + "item.middle-earth.white_lebethron_wood_stairs": "Escaliers en bois de Lebethron blanc", + "item.middle-earth.white_lebethron_wood_vertical_slab": "Dalle verticale en bois de Lebethron blanc", + "item.middle-earth.white_lebethron_wood_wall": "Muret en bois de Lebethron blanc", + "item.middle-earth.white_mushroom": "Champignon blanc", + "item.middle-earth.white_mushroom_tiller": "Talle de champignon blanc", + "item.middle-earth.white_palm_bench": "Banc en palmier blanc", + "item.middle-earth.white_palm_button": "Bouton en palmier blanc", + "item.middle-earth.white_palm_chair": "Chaise en palmier blanc", + "item.middle-earth.white_palm_door": "Porte en palmier blanc", + "item.middle-earth.white_palm_fence": "Barrière en palmier blanc", + "item.middle-earth.white_palm_fence_gate": "Portillon en palmier blanc", + "item.middle-earth.white_palm_ladder": "Échelle en palmier blanc", + "item.middle-earth.white_palm_log": "Bûche de palmier blanc", + "item.middle-earth.white_palm_planks": "Planches de palmier blanc", + "item.middle-earth.white_palm_pressure_plate": "Plaque de pression en palmier blanc", + "item.middle-earth.white_palm_roofing": "Toiture en palmier blanc", + "item.middle-earth.white_palm_roofing_slab": "Dalle de toiture en palmier blanc", + "item.middle-earth.white_palm_roofing_stairs": "Escalier de toiture en palmier blanc", + "item.middle-earth.white_palm_roofing_vertical_slab": "Dalle verticale de toiture en palmier blanc", + "item.middle-earth.white_palm_roofing_wall": "Muret de toiture en palmier blanc", + "item.middle-earth.white_palm_sapling": "Pousse de palmier blanc", + "item.middle-earth.white_palm_shingles": "Bardeaux de palmier blanc", + "item.middle-earth.white_palm_shingles_slab": "Dalle en bardeaux de palmier blanc", + "item.middle-earth.white_palm_shingles_stairs": "Escaliers en bardeaux de palmier blanc", + "item.middle-earth.white_palm_shingles_vertical_slab": "Dalle verticale en bardeaux de palmier blanc", + "item.middle-earth.white_palm_shingles_wall": "Muret en bardeaux de palmier blanc", + "item.middle-earth.white_palm_slab": "Dalle en palmier blanc", + "item.middle-earth.white_palm_stairs": "Escaliers en palmier blanc", + "item.middle-earth.white_palm_stool": "Tabouret en palmier blanc", + "item.middle-earth.white_palm_table": "Table en palmier blanc", + "item.middle-earth.white_palm_trapdoor": "Trappe en palmier blanc", + "item.middle-earth.white_palm_vertical_slab": "Dalle verticale en palmier blanc", + "item.middle-earth.white_palm_wood": "Bois de palmier blanc", + "item.middle-earth.white_palm_wood_fence": "Barrière en bois de palmier blanc", + "item.middle-earth.white_palm_wood_slab": "Dalle en bois de palmier blanc", + "item.middle-earth.white_palm_wood_stairs": "Escaliers en bois de palmier blanc", + "item.middle-earth.white_palm_wood_vertical_slab": "Dalle verticale en bois de palmier blanc", + "item.middle-earth.white_palm_wood_wall": "Muret en bois de palmier blanc", + "item.middle-earth.white_sand": "Sable blanc", + "item.middle-earth.white_sand_layer": "Couche de sable blanc", + "item.middle-earth.white_stained_lead_glass": "Verre plombé blanc", + "item.middle-earth.white_stained_lead_glass_pane": "Vitre plombée blanche", + "item.middle-earth.white_wattle_framed_window": "Fenêtre à clayonnage blanc", + "item.middle-earth.white_wattle_framed_window_pane": "Fenêtre plate à clayonnage blanc", + "item.middle-earth.white_wool_slab": "Dalle en laine blanche", + "item.middle-earth.white_wool_stairs": "Escaliers en laine blanche", + "item.middle-earth.white_wool_vertical_slab": "Dalle verticale en laine blanche", + "item.middle-earth.wild_beetroot": "Betterave sauvage", + "item.middle-earth.wild_bell_pepper": "Poivron sauvage", + "item.middle-earth.wild_carrot": "Carotte sauvage", + "item.middle-earth.wild_cucumber": "Concombre sauvage", + "item.middle-earth.wild_flax": "Lin sauvage", + "item.middle-earth.wild_garlic": "Ail sauvage", + "item.middle-earth.wild_grass": "Herbe sauvage", + "item.middle-earth.wild_leek": "Poireau sauvage", + "item.middle-earth.wild_lettuce": "Laitue sauvage", + "item.middle-earth.wild_onion": "Oignon sauvage", + "item.middle-earth.wild_pipeweed": "Herbe à fumer sauvage", + "item.middle-earth.wild_potato": "Patate sauvage", + "item.middle-earth.wild_tomato": "Tomate sauvage", + "item.middle-earth.wildergrass": "Herbe folle", + "item.middle-earth.willow_bench": "Banc en saule", + "item.middle-earth.willow_button": "Bouton en saule", + "item.middle-earth.willow_chair": "Chaise en saule", + "item.middle-earth.willow_door": "Porte en saule", + "item.middle-earth.willow_fence": "Barrière en saule", + "item.middle-earth.willow_fence_gate": "Portillon en saule", + "item.middle-earth.willow_ladder": "Échelle en saule", + "item.middle-earth.willow_leaves": "Feuilles de saule", + "item.middle-earth.willow_log": "Bûche de saule", + "item.middle-earth.willow_planks": "Planches de saule", + "item.middle-earth.willow_pressure_plate": "Plaque de pression en saule", + "item.middle-earth.willow_roofing": "Toiture en saule", + "item.middle-earth.willow_roofing_slab": "Dalle de toiture en saule", + "item.middle-earth.willow_roofing_stairs": "Escalier de toiture en saule", + "item.middle-earth.willow_roofing_vertical_slab": "Dalle verticale de toiture en saule", + "item.middle-earth.willow_roofing_wall": "Muret de toiture en saule", + "item.middle-earth.willow_sapling": "Pousse de saule", + "item.middle-earth.willow_shingles": "Bardeaux de saule", + "item.middle-earth.willow_shingles_slab": "Dalle en bardeaux de saule", + "item.middle-earth.willow_shingles_stairs": "Escalier en bardeaux de saule", + "item.middle-earth.willow_shingles_vertical_slab": "Dalle verticale en bardeaux de saule", + "item.middle-earth.willow_shingles_wall": "Muret en bardeaux de saule", + "item.middle-earth.willow_slab": "Dalle en saule", + "item.middle-earth.willow_stairs": "Escaliers en saule", + "item.middle-earth.willow_stool": "Tabouret en saule", + "item.middle-earth.willow_table": "Table en saule", + "item.middle-earth.willow_trapdoor": "Trappe en saule", + "item.middle-earth.willow_vertical_slab": "Dalle verticale en saule", + "item.middle-earth.willow_wood": "Bois de saule", + "item.middle-earth.willow_wood_fence": "Barrière en bois de saule", + "item.middle-earth.willow_wood_slab": "Dalle en bois de saule", + "item.middle-earth.willow_wood_stairs": "Escalier en bois de saule", + "item.middle-earth.willow_wood_vertical_slab": "Dalle verticale en bois de saule", + "item.middle-earth.willow_wood_wall": "Muret en bois de saule", + "item.middle-earth.wood_framed_window": "Fenêtre encadrée en bois", + "item.middle-earth.wood_framed_window_pane": "Fenêtre plate encadrée en bois", + "item.middle-earth.wood_pile": "Tas de bois", + "item.middle-earth.wooden_bucket": "Seau en bois", + "item.middle-earth.wooden_dagger": "Dague en bois", + "item.middle-earth.wooden_spear": "Lance en bois", + "item.middle-earth.work_shoes": "Chaussures de travail", + "item.middle-earth.woven_hat": "Chapeau tressé", + "item.middle-earth.yellow_amanita": "Amanite jaune", + "item.middle-earth.yellow_amanita_block": "Bloc d'amanite jaune", + "item.middle-earth.yellow_amanita_tiller": "Talle d'amanite jaune", + "item.middle-earth.yellow_clay_tiling": "Tuile d'argile jaune", + "item.middle-earth.yellow_clay_tiling_slab": "Dalle en tuile d'argile jaune", + "item.middle-earth.yellow_clay_tiling_stairs": "Escaliers en tuile d'argile jaune", + "item.middle-earth.yellow_clay_tiling_vertical_slab": "Dalle verticale en tuile d'argile jaune", + "item.middle-earth.yellow_clay_tiling_wall": "Muret en tuile d'argile jaune", + "item.middle-earth.yellow_daub": "Torchis jaune", + "item.middle-earth.yellow_daub_hobbit_window": "Torchis jaune et fenêtre Hobbit", + "item.middle-earth.yellow_daub_hobbit_window_pane": "Torchis jaune et fenêtre plate Hobbit", + "item.middle-earth.yellow_daub_round_window": "Fenêtre ronde en torchis jaune", + "item.middle-earth.yellow_daub_round_window_pane": "Vitre ronde en torchis jaune", + "item.middle-earth.yellow_daub_slab": "Dalle en torchis jaune", + "item.middle-earth.yellow_daub_stairs": "Escaliers en torchis jaune", + "item.middle-earth.yellow_daub_vertical_slab": "Dalle verticale en torchis jaune", + "item.middle-earth.yellow_daub_wall": "Muret en torchis jaune", + "item.middle-earth.yellow_flower": "Fleur jaune", + "item.middle-earth.yellow_flower_growth": "Pousse de fleurs jaunes", + "item.middle-earth.yellow_flowers": "Fleurs jaunes", + "item.middle-earth.yellow_hobbit_door": "Porte Hobbit jaune", + "item.middle-earth.yellow_maple_leaves": "Feuilles d'érable jaunes", + "item.middle-earth.yellow_roof_tiles": "Tuiles de toit jaunes", + "item.middle-earth.yellow_sedum": "Orpin jaune", + "item.middle-earth.yellow_stained_lead_glass": "Verre plombé jaune", + "item.middle-earth.yellow_stained_lead_glass_pane": "Vitre plombée jaune", + "item.middle-earth.yellow_wool_slab": "Dalle en laine jaune", + "item.middle-earth.yellow_wool_stairs": "Escaliers en laine jaune", + "item.middle-earth.yellow_wool_vertical_slab": "Dalle verticale en laine jaune", + "item.middle-earth.zigilaban": "Zigil'Aban", + "item.middle-earth.zigilaban_bricks": "Briques en Zigil'Aban", + "item.middle-earth.zigilaban_brickwork": "Maçonnerie en Zigil'Aban", + "item.middle-earth.zigilaban_brickwork_slab": "Dalle de maçonnerie en Zigil'Aban", + "item.middle-earth.zigilaban_brickwork_stairs": "Escalier en maçonnerie de Zigil'Aban", + "item.middle-earth.zigilaban_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Zigil'Aban", + "item.middle-earth.zigilaban_brickwork_wall": "Muret en maçonnerie de Zigil'Aban", + "item.middle-earth.zigilaban_button": "Bouton en Zigil'Aban", + "item.middle-earth.zigilaban_chair": "Chaise en Zigil'Aban", + "item.middle-earth.zigilaban_pillar": "Pilier en Zigil'Aban", + "item.middle-earth.zigilaban_pressure_plate": "Plaque de pression en Zigil'Aban", + "item.middle-earth.zigilaban_rocks": "Éboulis de Zigil'Aban", + "item.middle-earth.zigilaban_slab": "Dalle en Zigil'Aban", + "item.middle-earth.zigilaban_stairs": "Escalier en Zigil'Aban", + "item.middle-earth.zigilaban_stool": "Tabouret en Zigil'Aban", + "item.middle-earth.zigilaban_table": "Table en Zigil'Aban", + "item.middle-earth.zigilaban_tiles": "Zigil'Aban carrelée", + "item.middle-earth.zigilaban_trapdoor": "Trappe en Zigil'Aban", + "item.middle-earth.zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban", + "item.middle-earth.zigilaban_wall": "Muret en Zigil'Aban", + "itemGroup.middle-earth.decorative_blocks": "Blocs décoratifs de la Terre du Milieu", + "itemGroup.middle-earth.equipment_items": "Équipement de la Terre du Milieu", + "itemGroup.middle-earth.food_items": "Nourriture de la Terre du Milieu", + "itemGroup.middle-earth.misc_blocks": "Blocs divers de la Terre du Milieu", + "itemGroup.middle-earth.nature_blocks": "Blocs naturels de la Terre du Milieu", + "itemGroup.middle-earth.resource_items": "Ressources de la Terre du Milieu", + "itemGroup.middle-earth.spawn_egg_items": "Œufs d'apparition de la Terre du Milieu", + "itemGroup.middle-earth.stone_blocks": "Blocs de pierre de la Terre du Milieu", + "itemGroup.middle-earth.tool_items": "Outils de la Terre du Milieu", + "itemGroup.middle-earth.weapon_items": "Armes de la Terre du Milieu", + "itemGroup.middle-earth.wood_blocks": "Blocs de bois de la Terre du Milieu", + "key.category.middle-earth.me": "Middle-earth", + "key.middle-earth.hood_state_toggle": "Basculer l'état de la capuche portée", + "modmenu.descriptionTranslation.me": "Rejoignez le monde légendaire de l'univers de Tolkien, du Seigneur des Anneaux au Hobbit, et bien plus encore !", "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "emi.category.me.forge": "Forge", - "emi.category.me.anvil_shaping": "Shaping Anvil", - "emi.category.me.artisan_table": "Artisan Table", - "tag.item.me.anvil_items": "Anvil Items", - "tag.item.me.bones": "Bones", - "tag.item.me.cloaks": "Cloaks", - "tag.item.me.cooked_poultry": "Cooked Poultry", - "tag.item.me.dyeable": "Dyeable", - "tag.item.me.feathers": "Feathers", - "tag.item.me.glowy": "Glowing Items", - "tag.item.me.ingot_shaping": "Ingot Shaping", - "tag.item.me.lead_ores": "Lead Ores", - "tag.item.me.mithril_ores": "Mithril Ores", - "tag.item.me.mod_planks": "Middle-earth Planks", - "tag.item.me.mod_stripped_logs": "Middle-earth Stripped Logs", - "tag.item.me.mushroom_stew_ingredient": "Mushroom Stew Ingredient", - "tag.item.me.nugget_shaping": "Nugget Shaping", - "tag.item.me.raw_poultry": "Raw Poultry", - "tag.item.me.shard": "Shard", - "tag.item.me.shingles": "Shingles", - "tag.item.me.silver_ores": "Silver Ores", - "tag.item.me.thatchy": "Thatch", - "tag.item.me.tin": "Tin", - "tag.item.me.tin_ores": "Tin Ores", - "tag.item.me.warg_food": "Warg Food", - "tag.item.me.worm": "Worm", - "painting.me.dwarf_portrait.author": "Boenndal", - "painting.me.dwarf_portrait.title": "Dwarf Portrait", - "painting.me.hobbit_portrait.author": "Boenndal", - "painting.me.hobbit_portrait.title": "Hobbit Portrait", - "painting.me.human_portrait.author": "Boenndal", - "painting.me.human_portrait.title": "Human Portrait", - "painting.me.orc_portrait.author": "Boenndal", - "painting.me.orc_portrait.title": "Orc Portrait", - "painting.me.note_board.author": "Boenndal", - "painting.me.note_board.title": "Note Board", - "painting.me.pan_board.author": "Boenndal", - "painting.me.pan_board.title": "Pan Board", - "painting.me.rohirric_tapestry.author": "Boenndal", - "painting.me.rohirric_tapestry.title": "Rohirric Tapestry", - "painting.me.small_mirror.author": "Boenndal", - "painting.me.small_mirror.title": "Small Mirror", - "painting.me.tall_mirror.author": "Boenndal", - "painting.me.tall_mirror.title": "Tall Mirror", - "painting.me.prancing_pony.author": "Boenndal", - "painting.me.prancing_pony.title": "Prancing Pony", - "painting.me.tool_board.author": "Boenndal", - "painting.me.tool_board.title": "Tool Board" -} \ No newline at end of file + "modmenu.summaryTranslation.me": "Rejoignez le monde légendaire de l'univers de Tolkien, du Seigneur des Anneaux au Hobbit, et bien plus encore !", + "painting.middle-earth.dwarf_portrait.title": "Portrait de Nain", + "painting.middle-earth.hobbit_portrait.title": "Portrait de Hobbit", + "painting.middle-earth.human_portrait.title": "Portrait d'Humain", + "painting.middle-earth.note_board.title": "Tableau de notes", + "painting.middle-earth.orc_portrait.title": "Portrait d'Orque", + "painting.middle-earth.pan_board.title": "Panneau de casseroles", + "painting.middle-earth.prancing_pony.title": "Poney Fringant", + "painting.middle-earth.rohirric_tapestry.title": "Tapisserie rohirrique", + "painting.middle-earth.small_mirror.title": "Petit miroir", + "painting.middle-earth.tall_mirror.title": "Grand miroir", + "painting.middle-earth.tool_board.title": "Panneau à outils", + "race.middle-earth.dwarf": "Nain", + "race.middle-earth.elf": "Elfe", + "race.middle-earth.hobbit": "Hobbit", + "race.middle-earth.human": "Humain", + "race.middle-earth.orc": "Orque", + "race.middle-earth.uruk": "Uruk", + "race_tooltip.middle-earth.attribute_header": "Attributs : ", + "screen.middle-earth.artisan_table.armors": "Armures", + "screen.middle-earth.artisan_table.axe": "Hache", + "screen.middle-earth.artisan_table.boots": "Bottes", + "screen.middle-earth.artisan_table.bow": "Arc", + "screen.middle-earth.artisan_table.chestplate": "Plastron", + "screen.middle-earth.artisan_table.crossbow": "Arbalète", + "screen.middle-earth.artisan_table.hat": "Chapeau", + "screen.middle-earth.artisan_table.heavy_shield": "Bouclier lourd", + "screen.middle-earth.artisan_table.helmet": "Casque", + "screen.middle-earth.artisan_table.hoe": "Houe", + "screen.middle-earth.artisan_table.leggings": "Jambières", + "screen.middle-earth.artisan_table.light_shield": "Bouclier léger", + "screen.middle-earth.artisan_table.medium_shield": "Bouclier moyen", + "screen.middle-earth.artisan_table.misc": "Divers", + "screen.middle-earth.artisan_table.mount_armor": "Armure de monture", + "screen.middle-earth.artisan_table.pickaxe": "Pioche", + "screen.middle-earth.artisan_table.pipe": "Pipe", + "screen.middle-earth.artisan_table.shields": "Boucliers", + "screen.middle-earth.artisan_table.shovel": "Pelle", + "screen.middle-earth.artisan_table.spear": "Lance", + "screen.middle-earth.artisan_table.sword": "Épée", + "screen.middle-earth.artisan_table.tools": "Outils", + "screen.middle-earth.artisan_table.weapons": "Armes", + "screen.middle-earth.button.confirm": "Confirmer", + "screen.middle-earth.button.faction_randomizer": "Faction aléatoire", + "screen.middle-earth.button.focus_current": "Basculer le focus", + "screen.middle-earth.button.zoom_in": "Zoom avant", + "screen.middle-earth.button.zoom_out": "Zoom arrière", + "screen.middle-earth.faction_selection_screen": "Sélection de faction", + "screen.middle-earth.forge": "Forge", + "screen.middle-earth.information.description": "Description", + "screen.middle-earth.information.races": "Race", + "screen.middle-earth.information.races.many": "Races", + "screen.middle-earth.information.subfaction": "Sous-faction : ", + "screen.middle-earth.reinforced_chest": "Coffre renforcé", + "screen.middle-earth.shaping_anvil": "Enclume de mise en forme", + "screen.middle-earth.wood_pile": "Tas de bois", + "sounds.middle-earth.bellows_push": "Soufflement des soufflets", + "sounds.middle-earth.nazgul_fade": "Nazgûl s'estompant", + "sounds.middle-earth.nazgul_scream": "Cri de Nazgûl", + "sounds.middle-earth.pipe_exhale": "Expiration de pipe", + "sounds.middle-earth.pipe_ignite": "Allumage de pipe", + "sounds.middle-earth.pipe_refill": "Remplissage de pipe", + "spawn.middle-earth.coordinates_base.custom": "[x,y,z] ", + "spawn.middle-earth.coordinates_base.dynamic": "[x,z] ", + "spawn.middle-earth.coordinates_base_values.custom": "%s, %s, %s", + "spawn.middle-earth.coordinates_base_values.dynamic": "%s, %s", + "spawn.middle-earth.dale.capital": "Capitale du Val", + "spawn.middle-earth.dale.esgaroth": "Esgaroth", + "spawn.middle-earth.gondor.anorien": "Anórien", + "spawn.middle-earth.gondor.dol_amroth": "Dol Amroth", + "spawn.middle-earth.gondor.ithilien": "Ithilien", + "spawn.middle-earth.gondor.lamedon": "Lamedon", + "spawn.middle-earth.gondor.lebennin": "Lebennin", + "spawn.middle-earth.gondor.lossarnach": "Lossarnach", + "spawn.middle-earth.gondor.minas_tirith": "Minas Tirith", + "spawn.middle-earth.gondor.pelargir": "Pelargir", + "spawn.middle-earth.gondor.ringlo_vale": "Val de Ringlo", + "spawn.middle-earth.isengard.orthanc": "Orthanc", + "spawn.middle-earth.longbeards.erebor.iron_hills": "Collines de fer", + "spawn.middle-earth.longbeards.erebor.iron_hills_spring": "Source des Collines de fer", + "spawn.middle-earth.longbeards.erebor.ravenhill": "Colline aux Corbeaux", + "spawn.middle-earth.lothlorien.cerin_amroth": "Cerin Amroth", + "spawn.middle-earth.mordor.black_gates": "Porte Noire", + "spawn.middle-earth.mordor.dol_guldur": "Dol Guldur", + "spawn.middle-earth.mordor.gorgoroth": "Gorgoroth", + "spawn.middle-earth.mordor.minas_morgul": "Minas Morgul", + "spawn.middle-earth.mordor.nurn": "Núrn", + "spawn.middle-earth.none": "Aucun", + "spawn.middle-earth.rohan.aldburg": "Aldburg", + "spawn.middle-earth.rohan.eastemnet": "Eastemnet", + "spawn.middle-earth.rohan.edoras": "Edoras", + "spawn.middle-earth.rohan.helms_deep": "Le Gouffre de Helm", + "spawn.middle-earth.rohan.the_wold": "Le Wold", + "spawn.middle-earth.rohan.westemnet": "Westemnet", + "spawn.middle-earth.shire.hobbiton": "Hobbiton", + "spawn.middle-earth.shire.willowbottom": "Sauloulet", + "tag.item.middle-earth.anvil_items": "Objets d'enclume", + "tag.item.middle-earth.bones": "Os", + "tag.item.middle-earth.cloaks": "Capes", + "tag.item.middle-earth.cooked_poultry": "Volaille cuite", + "tag.item.middle-earth.dyeable": "Teignable", + "tag.item.middle-earth.feathers": "Plumes", + "tag.item.middle-earth.glowy": "Objets lumineux", + "tag.item.middle-earth.ingot_shaping": "Mise en forme de lingots", + "tag.item.middle-earth.lead_ores": "Minerais de plomb", + "tag.item.middle-earth.mithril_ores": "Minerais de mithril", + "tag.item.middle-earth.mod_planks": "Planches de la Terre du Milieu", + "tag.item.middle-earth.mod_stripped_logs": "Bûches écorcées de la Terre du Milieu", + "tag.item.middle-earth.mushroom_stew_ingredient": "Ingrédient de soupe aux champignons", + "tag.item.middle-earth.nugget_shaping": "Mise en forme de pépites", + "tag.item.middle-earth.raw_poultry": "Volaille crue", + "tag.item.middle-earth.shard": "Éclat", + "tag.item.middle-earth.shingles": "Bardeaux", + "tag.item.middle-earth.silver_ores": "Minerais d'argent", + "tag.item.middle-earth.thatchy": "Chaume", + "tag.item.middle-earth.tin": "Étain", + "tag.item.middle-earth.tin_ores": "Minerais d'étain", + "tag.item.middle-earth.warg_food": "Nourriture pour Warg", + "tag.item.middle-earth.worm": "Ver", + "tooltip.middle-earth.aeglos_lore_0": "Surnommée « Pointe-de-Neige », cette lance légendaire fut portée au combat par", + "tooltip.middle-earth.aeglos_lore_1": "le Roi Gil-galad à travers de nombreux âges.", + "tooltip.middle-earth.anguirel_lore_0": "Une lame noire unique en son genre, forgée", + "tooltip.middle-earth.anguirel_lore_1": "aux Jours Anciens à partir d'une météorite.", + "tooltip.middle-earth.anorthann_lore_0": "Le Bouclier du Soleil, jumeau de Cûthann,", + "tooltip.middle-earth.anorthann_lore_1": "forgé il y a bien longtemps à Nargothrond.", + "tooltip.middle-earth.anvil_hammer": "Clic gauche sur l'enclume avec un", + "tooltip.middle-earth.anvil_hammer_2": "marteau de forge pour façonner le métal.", + "tooltip.middle-earth.artefact": "Artefact", + "tooltip.middle-earth.artisan": "Artisan : ", + "tooltip.middle-earth.axe": "Hache", + "tooltip.middle-earth.backstab": "§7+50% de dégâts en attaquant dans le dos", + "tooltip.middle-earth.barding_sergeant_cape": "Cape de sergent bardain", + "tooltip.middle-earth.barding_surcoat": "Surcot bardain", + "tooltip.middle-earth.barrow_blade_lore_0": "En forme de feuille et serties de joyaux ardents,", + "tooltip.middle-earth.barrow_blade_lore_1": "ces lames furent forgées pour les princes de Cardolan.", + "tooltip.middle-earth.black_fur": "Fourrure noire", + "tooltip.middle-earth.black_fur_cloak": "Manteau en fourrure noire", + "tooltip.middle-earth.black_fur_hood": "Capuche en fourrure noire", + "tooltip.middle-earth.blocks_range": " Blocs", + "tooltip.middle-earth.bow": "Arc", + "tooltip.middle-earth.broken": "Cassé", + "tooltip.middle-earth.brown_fur": "Fourrure brune", + "tooltip.middle-earth.brown_fur_cloak": "Manteau en fourrure brune", + "tooltip.middle-earth.brown_fur_hood": "Capuche en fourrure brune", + "tooltip.middle-earth.cape": "Cape", + "tooltip.middle-earth.cloak": "Manteau", + "tooltip.middle-earth.color": "Couleur", + "tooltip.middle-earth.crossbow": "Arbalète", + "tooltip.middle-earth.customizations": "§7Pièces personnalisées : §f", + "tooltip.middle-earth.cuthann_lore_0": "Le Bouclier de la Lune, jumeau d'Anorthann,", + "tooltip.middle-earth.cuthann_lore_1": "forgé il y a bien longtemps à Nargothrond.", + "tooltip.middle-earth.dagamarth_lore_0": "Une lame légendaire forgée par Narvi et Celebrimbor,", + "tooltip.middle-earth.dagamarth_lore_1": "que l'on croyait perdue.", + "tooltip.middle-earth.dagger": "Dague", + "tooltip.middle-earth.dalish_heyday_cloak": "Manteau du Val florissant", + "tooltip.middle-earth.door_size": "Taille de porte : ", + "tooltip.middle-earth.dwarven": "Nain", + "tooltip.middle-earth.dyed": "Teint : ", + "tooltip.middle-earth.elven": "Elfe", + "tooltip.middle-earth.eorling_marshal_cape": "Cape de maréchal Eorling", + "tooltip.middle-earth.erebor_cape": "Cape d'Erebor", + "tooltip.middle-earth.faction": "§6Faction : §f", + "tooltip.middle-earth.forge_output_mode0": "Pas assez de métal.", + "tooltip.middle-earth.forge_output_mode1": "1 pépite", + "tooltip.middle-earth.forge_output_mode2": "1 lingot", + "tooltip.middle-earth.forge_output_mode3": "2 lingots", + "tooltip.middle-earth.galadhrim_cape": "Cape Galadhrim", + "tooltip.middle-earth.galadhrim_hood": "Capuche Galadhrim", + "tooltip.middle-earth.galadhrim_lord_surcoat": "Surcot de seigneur Galadhrim", + "tooltip.middle-earth.generic": "Générique", + "tooltip.middle-earth.glamdring_lore_0": "Le Marteau des Ennemis, jumelle d'Orcrist,", + "tooltip.middle-earth.glamdring_lore_1": "jadis portée par le Roi de Gondolin.", + "tooltip.middle-earth.gondorian_captain_cape": "Cape de capitaine gondorien", + "tooltip.middle-earth.gondorian_citadel_guard_cape": "Cape de la garde de la citadelle", + "tooltip.middle-earth.gondorian_citadel_guard_hood": "Capuche de la garde de la citadelle", + "tooltip.middle-earth.gondorian_fountain_guard_cape": "Cape de la garde de la fontaine", + "tooltip.middle-earth.gondorian_hero_cape": "Cape de héros gondorien", + "tooltip.middle-earth.gondorian_kings_guard_cape": "Cape de la garde du roi", + "tooltip.middle-earth.gray_fur": "Fourrure grise", + "tooltip.middle-earth.gray_fur_cloak": "Manteau en fourrure grise", + "tooltip.middle-earth.gray_fur_hood": "Capuche en fourrure grise", + "tooltip.middle-earth.hammer_of_helm_hammerhand_lore_0": "Jadis manié par un Roi du Rohan,", + "tooltip.middle-earth.hammer_of_helm_hammerhand_lore_1": "qui périt au Gouffre de Helm.", + "tooltip.middle-earth.heavy_shield": "§cBouclier lourd", + "tooltip.middle-earth.helmet_of_helm_hammerhand_lore_0": "Heaume d'un puissant Roi du Rohan,", + "tooltip.middle-earth.helmet_of_helm_hammerhand_lore_1": "signe d'un grand pouvoir.", + "tooltip.middle-earth.herugrim_lore_0": "Une épée sertie de joyaux verts, transmise à travers", + "tooltip.middle-earth.herugrim_lore_1": "la lignée d'Eorl depuis des générations.", + "tooltip.middle-earth.hood": "Capuche", + "tooltip.middle-earth.horse_lord_cape": "Cape de seigneur des chevaux", + "tooltip.middle-earth.ingots_number": "Lingots", + "tooltip.middle-earth.light_shield": "§fBouclier léger", + "tooltip.middle-earth.liquid_bronze": "Bronze liquide", + "tooltip.middle-earth.liquid_burzum_steel": "Acier Uruk liquide", + "tooltip.middle-earth.liquid_copper": "Cuivre liquide", + "tooltip.middle-earth.liquid_crude": "Métal grossier liquide", + "tooltip.middle-earth.liquid_edhel_steel": "Acier d'Edhel liquide", + "tooltip.middle-earth.liquid_gold": "Or liquide", + "tooltip.middle-earth.liquid_iron": "Fer liquide", + "tooltip.middle-earth.liquid_khazad_steel": "Acier de Khâzad liquide", + "tooltip.middle-earth.liquid_lead": "Plomb liquide", + "tooltip.middle-earth.liquid_mithril": "Mithril liquide", + "tooltip.middle-earth.liquid_netherite": "Netherite liquide", + "tooltip.middle-earth.liquid_silver": "Argent liquide", + "tooltip.middle-earth.liquid_steel": "Acier liquide", + "tooltip.middle-earth.liquid_tin": "Étain liquide", + "tooltip.middle-earth.long_forgotten_longsword_lore_0": "Une mystérieuse épée longue,", + "tooltip.middle-earth.long_forgotten_longsword_lore_1": "fondue et brisée.", + "tooltip.middle-earth.longbow": "Arc long", + "tooltip.middle-earth.longsword": "Épée longue", + "tooltip.middle-earth.longsword_of_elder_kings_lore_0": "Une lame de belle facture,", + "tooltip.middle-earth.longsword_of_elder_kings_lore_1": "que l'on dit avoir appartenu au Roi de Nargothrond.", + "tooltip.middle-earth.lorien_marchwarden_cape": "Cape de gardien des Marches", + "tooltip.middle-earth.lorien_marchwarden_hood": "Capuche de gardien des Marches", + "tooltip.middle-earth.mace_of_sauron_lore_0": "Maniée par le Seigneur des Ténèbres,", + "tooltip.middle-earth.mace_of_sauron_lore_1": "cette arme a fauché de nombreuses vies.", + "tooltip.middle-earth.medium_shield": "§9Bouclier moyen", + "tooltip.middle-earth.mordor_black_numenorean_cape": "Cape Númenóréenne noire", + "tooltip.middle-earth.morgul_knife_lore_0": "Un couteau forgé par une sorcellerie funeste,", + "tooltip.middle-earth.morgul_knife_lore_1": "souvent porté par les Spectres de l'Anneau.", + "tooltip.middle-earth.mount_armor_addon_side": "Complément d'armure latéral : activé", + "tooltip.middle-earth.mount_armor_addon_top": "Complément d'armure supérieur : activé", + "tooltip.middle-earth.narsil_lore_0": "La Flamme Rouge et Blanche, portée par le Roi des Dúnedain.", + "tooltip.middle-earth.narsil_lore_1": "Elle fut brisée sur les pentes de la Montagne du Destin.", + "tooltip.middle-earth.nazgul_hood": "Capuche de Nazgûl", + "tooltip.middle-earth.nazgul_robes": "Robes de Nazgûl", + "tooltip.middle-earth.nazgul_sword_lore_0": "Froide comme la mort,", + "tooltip.middle-earth.nazgul_sword_lore_1": "à la pointe funeste.", + "tooltip.middle-earth.noldorin_longsword_lore_0": "De telles lames furent jadis portées au combat par", + "tooltip.middle-earth.noldorin_longsword_lore_1": "les Noldor, en des âges révolus.", + "tooltip.middle-earth.nuggets_number": "Pépites", + "tooltip.middle-earth.orc": "Orque", + "tooltip.middle-earth.orcish_black_fur_surcoat_with_bone": "Surcot orque en fourrure noire orné d'os", + "tooltip.middle-earth.orcish_brown_fur_surcoat_with_bone": "Surcot orque en fourrure brune orné d'os", + "tooltip.middle-earth.orcish_cape": "Cape orque", + "tooltip.middle-earth.orcish_gray_fur_surcoat_with_bone": "Surcot orque en fourrure grise orné d'os", + "tooltip.middle-earth.orcish_long_cape": "Longue cape orque", + "tooltip.middle-earth.orcish_shoulders": "Épaulières orques", + "tooltip.middle-earth.orcish_tan_fur_surcoat_with_bone": "Surcot orque en fourrure fauve orné d'os", + "tooltip.middle-earth.orcish_white_fur_surcoat_with_bone": "Surcot orque en fourrure blanche orné d'os", + "tooltip.middle-earth.orcrist_lore_0": "Le Pourfendeur de Gobelins, jumelle de Glamdring,", + "tooltip.middle-earth.orcrist_lore_1": "jadis maniée par Thorin Écu-de-Chêne.", + "tooltip.middle-earth.orthanc_guard_cape": "Cape de la garde d'Orthanc", + "tooltip.middle-earth.ravenhill_sentinel_cape": "Cape de sentinelle de la Colline aux Corbeaux", + "tooltip.middle-earth.reach": "Portée : ", + "tooltip.middle-earth.rohirric_cape": "Cape Rohirrique", + "tooltip.middle-earth.rohirric_royal_guard_cape": "Cape de la Garde Royale Rohirrique", + "tooltip.middle-earth.shield_of_durins_guard_lore_0": "Un bouclier bordé de mithril arborant fièrement", + "tooltip.middle-earth.shield_of_durins_guard_lore_1": "l'emblème de la lignée de Durin.", + "tooltip.middle-earth.shield_of_the_king_under_the_mountain_lore_0": "Un bouclier emblématique orné d'un", + "tooltip.middle-earth.shield_of_the_king_under_the_mountain_lore_1": "corbeau doré.", + "tooltip.middle-earth.skull": "Crâne", + "tooltip.middle-earth.spear": "Lance", + "tooltip.middle-earth.sting_lore_0": "Un couteau elfique, forgé à Gondolin il y a bien longtemps,", + "tooltip.middle-earth.sting_lore_1": "porté par Bilbo Sacquet de la Comté.", + "tooltip.middle-earth.sub_faction": "§7Sous-faction : §f", + "tooltip.middle-earth.surcoat": "Surcot", + "tooltip.middle-earth.sword": "Épée", + "tooltip.middle-earth.tall_hood": "Grande capuche", + "tooltip.middle-earth.tan_fur": "Fourrure fauve", + "tooltip.middle-earth.tan_fur_cloak": "Manteau en fourrure fauve", + "tooltip.middle-earth.tan_fur_hood": "Capuche en fourrure fauve", + "tooltip.middle-earth.temp_1": "Chaud", + "tooltip.middle-earth.temp_2": "Très chaud", + "tooltip.middle-earth.temp_3": "Brûlant", + "tooltip.middle-earth.temp_4": "Incandescent", + "tooltip.middle-earth.temp_5": "Ardent", + "tooltip.middle-earth.tier_basic": "§fArmure basique", + "tooltip.middle-earth.tier_clothing": "§fVêtement", + "tooltip.middle-earth.tier_heavy": "§cArmure lourde", + "tooltip.middle-earth.tier_light": "§aArmure légère", + "tooltip.middle-earth.tier_medium": "§9Armure moyenne", + "tooltip.middle-earth.tier_mithril": "§bMithril", + "tooltip.middle-earth.tier_sturdy": "§5Armure robuste", + "tooltip.middle-earth.wanderer_robes": "Robes de voyageur", + "tooltip.middle-earth.white_fur": "Fourrure blanche", + "tooltip.middle-earth.white_fur_cloak": "Manteau en fourrure blanche", + "tooltip.middle-earth.white_fur_hood": "Capuche en fourrure blanche", + "trim_material.middle-earth.bronze": "Bronze", + "trim_material.middle-earth.burzum_steel": "Acier Uruk", + "trim_material.middle-earth.crude": "Grossier", + "trim_material.middle-earth.edhel_steel": "Acier d'Edhel", + "trim_material.middle-earth.jade": "Jade", + "trim_material.middle-earth.khazad_steel": "Acier de Khâzad", + "trim_material.middle-earth.lead": "Plomb", + "trim_material.middle-earth.mithril": "Mithril", + "trim_material.middle-earth.morgul_steel": "Acier de Morgul", + "trim_material.middle-earth.silver": "Argent", + "trim_material.middle-earth.steel": "Acier", + "trim_material.middle-earth.tin": "Étain", + "trim_pattern.middle-earth.smithing_part": "Pièce de forge", + "ui.middle-earth.continue_character": "Continuer", + "ui.middle-earth.map_screen.button.fullscreen_toggle": "Basculer le plein écran", + "ui.middle-earth.map_screen.button.zoom_in": "Bouton de zoom avant", + "ui.middle-earth.map_screen.button.zoom_out": "Bouton de zoom arrière", + "ui.middle-earth.map_screen.map_title_text": "Carte de la Terre du Milieu", + "ui.middle-earth.map_screen.tooltip.coordinates_content": "%s, %s", + "ui.middle-earth.map_screen.tooltip.coordinates_label": "[x,z] ", + "ui.middle-earth.map_screen.tooltip.coordinates_title": "Coordonnées", + "ui.middle-earth.map_screen.tooltip.teleport_keybind": "Clic droit pour vous téléporter", + "ui.middle-earth.onboarding_selection.title": "Écran d'accueil", + "ui.middle-earth.reset_character": "Réinitialiser l'affiliation", + "ui.middle-earth.return_confirmation.continue_character.content": "Aller au monde principal", + "ui.middle-earth.return_confirmation.continue_character.title": "Bouton de retour", + "ui.middle-earth.return_confirmation.title": "Écran d'accueil", + "ui.middle-earth.search.label": "Rechercher...", + "ui.middle-earth.search.screen_click_button": "Bouton de clic écran", + "ui.middle-earth.search.toggle_button": "Basculer la barre de recherche", + "widget.middle-earth.marker.margin_front": " ", + "widget.middle-earth.marker.more": "Plus...", + "widget.middle-earth.marker.selected_title_container.after": "]", + "widget.middle-earth.marker.selected_title_container.before": "[", + "widget.middle-earth.spawn_tooltip_title": "Points d'apparition", + "#Comment:": "Interface de la carte de la Terre du Milieu", + "#Comment": "Tableaux", + "block.middle-earth.khagalaban": "Khagal'Aban", + "item.middle-earth.khagalaban": "Khagal'Aban", + "block.middle-earth.cobbled_khagalaban": "Pierre de Khagal'Aban", + "item.middle-earth.cobbled_khagalaban": "Pierre de Khagal'Aban", + "block.middle-earth.cobbled_khagalaban_slab": "Dalle en pierre de Khagal'Aban", + "item.middle-earth.cobbled_khagalaban_slab": "Dalle en pierre de Khagal'Aban", + "block.middle-earth.cobbled_khagalaban_stairs": "Escalier en pierre de Khagal'Aban", + "item.middle-earth.cobbled_khagalaban_stairs": "Escalier en pierre de Khagal'Aban", + "block.middle-earth.cobbled_khagalaban_vertical_slab": "Dalle verticale en pierre de Khagal'Aban", + "item.middle-earth.cobbled_khagalaban_vertical_slab": "Dalle verticale en pierre de Khagal'Aban", + "block.middle-earth.cobbled_khagalaban_wall": "Muret en pierre de Khagal'Aban", + "item.middle-earth.cobbled_khagalaban_wall": "Muret en pierre de Khagal'Aban", + "block.middle-earth.mossy_cobbled_khagalaban": "Pierre de Khagal'Aban moussue", + "item.middle-earth.mossy_cobbled_khagalaban": "Pierre de Khagal'Aban moussue", + "block.middle-earth.mossy_cobbled_khagalaban_slab": "Dalle en pierre de Khagal'Aban moussue", + "item.middle-earth.mossy_cobbled_khagalaban_slab": "Dalle en pierre de Khagal'Aban moussue", + "block.middle-earth.mossy_cobbled_khagalaban_stairs": "Escalier en pierre de Khagal'Aban moussue", + "item.middle-earth.mossy_cobbled_khagalaban_stairs": "Escalier en pierre de Khagal'Aban moussue", + "block.middle-earth.mossy_cobbled_khagalaban_vertical_slab": "Dalle verticale en pierre de Khagal'Aban moussue", + "item.middle-earth.mossy_cobbled_khagalaban_vertical_slab": "Dalle verticale en pierre de Khagal'Aban moussue", + "block.middle-earth.mossy_cobbled_khagalaban_wall": "Muret en pierre de Khagal'Aban moussue", + "item.middle-earth.mossy_cobbled_khagalaban_wall": "Muret en pierre de Khagal'Aban moussue", + "block.middle-earth.smooth_khagalaban": "Khagal'Aban lisse", + "item.middle-earth.smooth_khagalaban": "Khagal'Aban lisse", + "block.middle-earth.smooth_khagalaban_slab": "Dalle en Khagal'Aban lisse", + "item.middle-earth.smooth_khagalaban_slab": "Dalle en Khagal'Aban lisse", + "block.middle-earth.smooth_khagalaban_stairs": "Escalier en Khagal'Aban lisse", + "item.middle-earth.smooth_khagalaban_stairs": "Escalier en Khagal'Aban lisse", + "block.middle-earth.smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse", + "item.middle-earth.smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse", + "block.middle-earth.smooth_khagalaban_wall": "Muret en Khagal'Aban lisse", + "item.middle-earth.smooth_khagalaban_wall": "Muret en Khagal'Aban lisse", + "block.middle-earth.mossy_smooth_khagalaban": "Khagal'Aban lisse moussue", + "item.middle-earth.mossy_smooth_khagalaban": "Khagal'Aban lisse moussue", + "block.middle-earth.mossy_smooth_khagalaban_slab": "Dalle en Khagal'Aban lisse moussue", + "item.middle-earth.mossy_smooth_khagalaban_slab": "Dalle en Khagal'Aban lisse moussue", + "block.middle-earth.mossy_smooth_khagalaban_stairs": "Escalier en Khagal'Aban lisse moussue", + "item.middle-earth.mossy_smooth_khagalaban_stairs": "Escalier en Khagal'Aban lisse moussue", + "block.middle-earth.mossy_smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse moussue", + "item.middle-earth.mossy_smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse moussue", + "block.middle-earth.mossy_smooth_khagalaban_wall": "Muret en Khagal'Aban lisse moussue", + "item.middle-earth.mossy_smooth_khagalaban_wall": "Muret en Khagal'Aban lisse moussue", + "block.middle-earth.cracked_smooth_khagalaban": "Khagal'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_khagalaban": "Khagal'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_khagalaban_slab": "Dalle en Khagal'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_khagalaban_slab": "Dalle en Khagal'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_khagalaban_stairs": "Escalier en Khagal'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_khagalaban_stairs": "Escalier en Khagal'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_khagalaban_wall": "Muret en Khagal'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_khagalaban_wall": "Muret en Khagal'Aban lisse craquelée", + "block.middle-earth.chiseled_smooth_khagalaban": "Khagal'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_khagalaban": "Khagal'Aban lisse sculptée", + "block.middle-earth.chiseled_smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban lisse sculptée", + "block.middle-earth.chiseled_smooth_khagalaban_wall": "Muret en Khagal'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_khagalaban_wall": "Muret en Khagal'Aban lisse sculptée", + "block.middle-earth.old_khagalaban": "Vieux Khagal'Aban", + "item.middle-earth.old_khagalaban": "Vieux Khagal'Aban", + "block.middle-earth.old_khagalaban_slab": "Dalle de vieux Khagal'Aban", + "item.middle-earth.old_khagalaban_slab": "Dalle de vieux Khagal'Aban", + "block.middle-earth.old_khagalaban_stairs": "Escalier en vieux Khagal'Aban", + "item.middle-earth.old_khagalaban_stairs": "Escalier en vieux Khagal'Aban", + "block.middle-earth.old_khagalaban_vertical_slab": "Dalle verticale de vieux Khagal'Aban", + "item.middle-earth.old_khagalaban_vertical_slab": "Dalle verticale de vieux Khagal'Aban", + "block.middle-earth.old_khagalaban_wall": "Muret en vieux Khagal'Aban", + "item.middle-earth.old_khagalaban_wall": "Muret en vieux Khagal'Aban", + "block.middle-earth.khagalaban_pillar": "Pilier en Khagal'Aban", + "item.middle-earth.khagalaban_pillar": "Pilier en Khagal'Aban", + "block.middle-earth.mossy_khagalaban_pillar": "Pilier en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_pillar": "Pilier en Khagal'Aban moussue", + "block.middle-earth.cracked_khagalaban_pillar": "Pilier en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_pillar": "Pilier en Khagal'Aban craquelée", + "block.middle-earth.khagalaban_pillar_vertical_slab": "Dalle verticale de pilier en Khagal'Aban", + "item.middle-earth.khagalaban_pillar_vertical_slab": "Dalle verticale de pilier en Khagal'Aban", + "block.middle-earth.khagalaban_pillar_wall": "Muret de pilier en Khagal'Aban", + "item.middle-earth.khagalaban_pillar_wall": "Muret de pilier en Khagal'Aban", + "block.middle-earth.mossy_khagalaban_pillar_vertical_slab": "Dalle verticale de pilier en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_pillar_vertical_slab": "Dalle verticale de pilier en Khagal'Aban moussue", + "block.middle-earth.mossy_khagalaban_pillar_wall": "Muret de pilier en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_pillar_wall": "Muret de pilier en Khagal'Aban moussue", + "block.middle-earth.cracked_khagalaban_pillar_vertical_slab": "Dalle verticale de pilier en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_pillar_vertical_slab": "Dalle verticale de pilier en Khagal'Aban craquelée", + "block.middle-earth.cracked_khagalaban_pillar_wall": "Muret de pilier en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_pillar_wall": "Muret de pilier en Khagal'Aban craquelée", + "block.middle-earth.khagalaban_bricks": "Briques en Khagal'Aban", + "item.middle-earth.khagalaban_bricks": "Briques en Khagal'Aban", + "block.middle-earth.khagalaban_brick_slab": "Brique en Khagal'Aban", + "item.middle-earth.khagalaban_brick_slab": "Brique en Khagal'Aban", + "block.middle-earth.khagalaban_brick_stairs": "Escalier de brique en Khagal'Aban", + "item.middle-earth.khagalaban_brick_stairs": "Escalier de brique en Khagal'Aban", + "block.middle-earth.khagalaban_brick_vertical_slab": "Dalle verticale de brique en Khagal'Aban", + "item.middle-earth.khagalaban_brick_vertical_slab": "Dalle verticale de brique en Khagal'Aban", + "block.middle-earth.khagalaban_brick_wall": "Muret de brique en Khagal'Aban", + "item.middle-earth.khagalaban_brick_wall": "Muret de brique en Khagal'Aban", + "block.middle-earth.mossy_khagalaban_bricks": "Briques en Khagal'Aban moussues", + "item.middle-earth.mossy_khagalaban_bricks": "Briques en Khagal'Aban moussues", + "block.middle-earth.mossy_khagalaban_brick_slab": "Brique en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_brick_slab": "Brique en Khagal'Aban moussue", + "block.middle-earth.mossy_khagalaban_brick_stairs": "Escalier de brique en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_brick_stairs": "Escalier de brique en Khagal'Aban moussue", + "block.middle-earth.mossy_khagalaban_brick_vertical_slab": "Dalle verticale de brique en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_brick_vertical_slab": "Dalle verticale de brique en Khagal'Aban moussue", + "block.middle-earth.mossy_khagalaban_brick_wall": "Muret de brique en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_brick_wall": "Muret de brique en Khagal'Aban moussue", + "block.middle-earth.cracked_khagalaban_bricks": "Briques en Khagal'Aban craquelées", + "item.middle-earth.cracked_khagalaban_bricks": "Briques en Khagal'Aban craquelées", + "block.middle-earth.cracked_khagalaban_brick_slab": "Brique en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_brick_slab": "Brique en Khagal'Aban craquelée", + "block.middle-earth.cracked_khagalaban_brick_stairs": "Escalier de brique en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_brick_stairs": "Escalier de brique en Khagal'Aban craquelée", + "block.middle-earth.cracked_khagalaban_brick_vertical_slab": "Dalle verticale de brique en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_brick_vertical_slab": "Dalle verticale de brique en Khagal'Aban craquelée", + "block.middle-earth.cracked_khagalaban_brick_wall": "Muret de brique en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_brick_wall": "Muret de brique en Khagal'Aban craquelée", + "block.middle-earth.chiseled_khagalaban_bricks": "Briques en Khagal'Aban sculptées", + "item.middle-earth.chiseled_khagalaban_bricks": "Briques en Khagal'Aban sculptées", + "block.middle-earth.chiseled_khagalaban_bricks_vertical_slab": "Dalle verticale de briques en Khagal'Aban sculptées", + "item.middle-earth.chiseled_khagalaban_bricks_vertical_slab": "Dalle verticale de briques en Khagal'Aban sculptées", + "block.middle-earth.chiseled_khagalaban_bricks_wall": "Muret de briques en Khagal'Aban sculptées", + "item.middle-earth.chiseled_khagalaban_bricks_wall": "Muret de briques en Khagal'Aban sculptées", + "block.middle-earth.khagalaban_tiles": "Khagal'Aban carrelée", + "item.middle-earth.khagalaban_tiles": "Khagal'Aban carrelée", + "block.middle-earth.khagalaban_tile_slab": "Tuile en Khagal'Aban", + "item.middle-earth.khagalaban_tile_slab": "Tuile en Khagal'Aban", + "block.middle-earth.khagalaban_tile_stairs": "Escalier de tuile en Khagal'Aban", + "item.middle-earth.khagalaban_tile_stairs": "Escalier de tuile en Khagal'Aban", + "block.middle-earth.khagalaban_tile_vertical_slab": "Dalle verticale de tuile en Khagal'Aban", + "item.middle-earth.khagalaban_tile_vertical_slab": "Dalle verticale de tuile en Khagal'Aban", + "block.middle-earth.khagalaban_tile_wall": "Muret de tuile en Khagal'Aban", + "item.middle-earth.khagalaban_tile_wall": "Muret de tuile en Khagal'Aban", + "block.middle-earth.mossy_khagalaban_tiles": "Khagal'Aban carrelée moussue", + "item.middle-earth.mossy_khagalaban_tiles": "Khagal'Aban carrelée moussue", + "block.middle-earth.mossy_khagalaban_tile_slab": "Tuile en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_tile_slab": "Tuile en Khagal'Aban moussue", + "block.middle-earth.mossy_khagalaban_tile_stairs": "Escalier de tuile en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_tile_stairs": "Escalier de tuile en Khagal'Aban moussue", + "block.middle-earth.mossy_khagalaban_tile_vertical_slab": "Dalle verticale de tuile en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_tile_vertical_slab": "Dalle verticale de tuile en Khagal'Aban moussue", + "block.middle-earth.mossy_khagalaban_tile_wall": "Muret de tuile en Khagal'Aban moussue", + "item.middle-earth.mossy_khagalaban_tile_wall": "Muret de tuile en Khagal'Aban moussue", + "block.middle-earth.cracked_khagalaban_tiles": "Khagal'Aban carrelée craquelée", + "item.middle-earth.cracked_khagalaban_tiles": "Khagal'Aban carrelée craquelée", + "block.middle-earth.cracked_khagalaban_tile_slab": "Tuile en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_tile_slab": "Tuile en Khagal'Aban craquelée", + "block.middle-earth.cracked_khagalaban_tile_stairs": "Escalier de tuile en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_tile_stairs": "Escalier de tuile en Khagal'Aban craquelée", + "block.middle-earth.cracked_khagalaban_tile_vertical_slab": "Dalle verticale de tuile en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_tile_vertical_slab": "Dalle verticale de tuile en Khagal'Aban craquelée", + "block.middle-earth.cracked_khagalaban_tile_wall": "Muret de tuile en Khagal'Aban craquelée", + "item.middle-earth.cracked_khagalaban_tile_wall": "Muret de tuile en Khagal'Aban craquelée", + "block.middle-earth.chiseled_khagalaban_tiles": "Khagal'Aban carrelée sculptée", + "item.middle-earth.chiseled_khagalaban_tiles": "Khagal'Aban carrelée sculptée", + "block.middle-earth.chiseled_khagalaban_tiles_vertical_slab": "Dalle verticale de Khagal'Aban carrelée sculptée", + "item.middle-earth.chiseled_khagalaban_tiles_vertical_slab": "Dalle verticale de Khagal'Aban carrelée sculptée", + "block.middle-earth.chiseled_khagalaban_tiles_wall": "Muret de Khagal'Aban carrelée sculptée", + "item.middle-earth.chiseled_khagalaban_tiles_wall": "Muret de Khagal'Aban carrelée sculptée", + "block.middle-earth.polished_khagalaban": "Khagal'Aban polie", + "item.middle-earth.polished_khagalaban": "Khagal'Aban polie", + "block.middle-earth.polished_khagalaban_slab": "Dalle en Khagal'Aban polie", + "item.middle-earth.polished_khagalaban_slab": "Dalle en Khagal'Aban polie", + "block.middle-earth.polished_khagalaban_stairs": "Escalier en Khagal'Aban polie", + "item.middle-earth.polished_khagalaban_stairs": "Escalier en Khagal'Aban polie", + "block.middle-earth.polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie", + "item.middle-earth.polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie", + "block.middle-earth.polished_khagalaban_wall": "Muret en Khagal'Aban polie", + "item.middle-earth.polished_khagalaban_wall": "Muret en Khagal'Aban polie", + "block.middle-earth.mossy_polished_khagalaban": "Khagal'Aban polie moussue", + "item.middle-earth.mossy_polished_khagalaban": "Khagal'Aban polie moussue", + "block.middle-earth.mossy_polished_khagalaban_slab": "Dalle en Khagal'Aban polie moussue", + "item.middle-earth.mossy_polished_khagalaban_slab": "Dalle en Khagal'Aban polie moussue", + "block.middle-earth.mossy_polished_khagalaban_stairs": "Escalier en Khagal'Aban polie moussue", + "item.middle-earth.mossy_polished_khagalaban_stairs": "Escalier en Khagal'Aban polie moussue", + "block.middle-earth.mossy_polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie moussue", + "item.middle-earth.mossy_polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie moussue", + "block.middle-earth.mossy_polished_khagalaban_wall": "Muret en Khagal'Aban polie moussue", + "item.middle-earth.mossy_polished_khagalaban_wall": "Muret en Khagal'Aban polie moussue", + "block.middle-earth.cracked_polished_khagalaban": "Khagal'Aban polie craquelée", + "item.middle-earth.cracked_polished_khagalaban": "Khagal'Aban polie craquelée", + "block.middle-earth.cracked_polished_khagalaban_slab": "Dalle en Khagal'Aban polie craquelée", + "item.middle-earth.cracked_polished_khagalaban_slab": "Dalle en Khagal'Aban polie craquelée", + "block.middle-earth.cracked_polished_khagalaban_stairs": "Escalier en Khagal'Aban polie craquelée", + "item.middle-earth.cracked_polished_khagalaban_stairs": "Escalier en Khagal'Aban polie craquelée", + "block.middle-earth.cracked_polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie craquelée", + "item.middle-earth.cracked_polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie craquelée", + "block.middle-earth.cracked_polished_khagalaban_wall": "Muret en Khagal'Aban polie craquelée", + "item.middle-earth.cracked_polished_khagalaban_wall": "Muret en Khagal'Aban polie craquelée", + "block.middle-earth.chiseled_polished_khagalaban": "Khagal'Aban polie sculptée", + "item.middle-earth.chiseled_polished_khagalaban": "Khagal'Aban polie sculptée", + "block.middle-earth.chiseled_polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie sculptée", + "item.middle-earth.chiseled_polished_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban polie sculptée", + "block.middle-earth.chiseled_polished_khagalaban_wall": "Muret en Khagal'Aban polie sculptée", + "item.middle-earth.chiseled_polished_khagalaban_wall": "Muret en Khagal'Aban polie sculptée", + "block.middle-earth.khagalaban_brickwork": "Maçonnerie en Khagal'Aban", + "item.middle-earth.khagalaban_brickwork": "Maçonnerie en Khagal'Aban", + "block.middle-earth.khagalaban_brickwork_slab": "Dalle de maçonnerie en Khagal'Aban", + "item.middle-earth.khagalaban_brickwork_slab": "Dalle de maçonnerie en Khagal'Aban", + "block.middle-earth.khagalaban_brickwork_stairs": "Escalier en maçonnerie de Khagal'Aban", + "item.middle-earth.khagalaban_brickwork_stairs": "Escalier en maçonnerie de Khagal'Aban", + "block.middle-earth.khagalaban_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Khagal'Aban", + "item.middle-earth.khagalaban_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Khagal'Aban", + "block.middle-earth.khagalaban_brickwork_wall": "Muret en maçonnerie de Khagal'Aban", + "item.middle-earth.khagalaban_brickwork_wall": "Muret en maçonnerie de Khagal'Aban", + "block.middle-earth.khagalaban_button": "Bouton en Khagal'Aban", + "item.middle-earth.khagalaban_button": "Bouton en Khagal'Aban", + "block.middle-earth.khagalaban_pressure_plate": "Plaque de pression en Khagal'Aban", + "item.middle-earth.khagalaban_pressure_plate": "Plaque de pression en Khagal'Aban", + "block.middle-earth.khagalaban_trapdoor": "Trappe en Khagal'Aban", + "item.middle-earth.khagalaban_trapdoor": "Trappe en Khagal'Aban", + "block.middle-earth.khagalaban_rocks": "Éboulis de Khagal'Aban", + "item.middle-earth.khagalaban_rocks": "Éboulis de Khagal'Aban", + "block.middle-earth.khagalaban_stool": "Tabouret en Khagal'Aban", + "item.middle-earth.khagalaban_stool": "Tabouret en Khagal'Aban", + "block.middle-earth.khagalaban_table": "Table en Khagal'Aban", + "item.middle-earth.khagalaban_table": "Table en Khagal'Aban", + "block.middle-earth.khagalaban_chair": "Chaise en Khagal'Aban", + "item.middle-earth.khagalaban_chair": "Chaise en Khagal'Aban", + "block.middle-earth.khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban", + "item.middle-earth.khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban", + "block.middle-earth.khagalaban_slab": "Dalle en Khagal'Aban", + "item.middle-earth.khagalaban_slab": "Dalle en Khagal'Aban", + "block.middle-earth.khagalaban_stairs": "Escalier en Khagal'Aban", + "item.middle-earth.khagalaban_stairs": "Escalier en Khagal'Aban", + "block.middle-earth.khagalaban_wall": "Muret en Khagal'Aban", + "item.middle-earth.khagalaban_wall": "Muret en Khagal'Aban", + "block.middle-earth.khagalaban_carved_window": "Fenêtre sculptée en Khagal'Aban", + "item.middle-earth.khagalaban_carved_window": "Fenêtre sculptée en Khagal'Aban", + "block.middle-earth.khagalaban_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Khagal'Aban", + "item.middle-earth.khagalaban_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Khagal'Aban", + "block.middle-earth.khagalaban_coal_ore": "Minerai de charbon de Khagal'Aban", + "item.middle-earth.khagalaban_coal_ore": "Minerai de charbon de Khagal'Aban", + "block.middle-earth.khagalaban_copper_ore": "Minerai de cuivre de Khagal'Aban", + "item.middle-earth.khagalaban_copper_ore": "Minerai de cuivre de Khagal'Aban", + "block.middle-earth.khagalaban_tin_ore": "Minerai d'étain de Khagal'Aban", + "item.middle-earth.khagalaban_tin_ore": "Minerai d'étain de Khagal'Aban", + "item.middle-earth.khagalaban_statue": "Statue en Khagal'Aban", + "block.middle-earth.chiseled_khagalaban": "Khagal'Aban sculptée", + "item.middle-earth.chiseled_khagalaban": "Khagal'Aban sculptée", + "block.middle-earth.chiseled_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban sculptée", + "item.middle-earth.chiseled_khagalaban_vertical_slab": "Dalle verticale en Khagal'Aban sculptée", + "block.middle-earth.chiseled_khagalaban_wall": "Muret en Khagal'Aban sculptée", + "item.middle-earth.chiseled_khagalaban_wall": "Muret en Khagal'Aban sculptée", + "block.middle-earth.andesite_brick_slab": "Brique en andésite", + "item.middle-earth.andesite_brick_slab": "Brique en andésite", + "block.middle-earth.andesite_brick_stairs": "Escalier de brique en andésite", + "item.middle-earth.andesite_brick_stairs": "Escalier de brique en andésite", + "block.middle-earth.andesite_brick_vertical_slab": "Dalle verticale de brique en andésite", + "item.middle-earth.andesite_brick_vertical_slab": "Dalle verticale de brique en andésite", + "block.middle-earth.andesite_brick_wall": "Muret de brique en andésite", + "item.middle-earth.andesite_brick_wall": "Muret de brique en andésite", + "block.middle-earth.andesite_tile_slab": "Tuile en andésite", + "item.middle-earth.andesite_tile_slab": "Tuile en andésite", + "block.middle-earth.andesite_tile_stairs": "Escalier de tuile en andésite", + "item.middle-earth.andesite_tile_stairs": "Escalier de tuile en andésite", + "block.middle-earth.andesite_tile_vertical_slab": "Dalle verticale de tuile en andésite", + "item.middle-earth.andesite_tile_vertical_slab": "Dalle verticale de tuile en andésite", + "block.middle-earth.andesite_tile_wall": "Muret de tuile en andésite", + "item.middle-earth.andesite_tile_wall": "Muret de tuile en andésite", + "block.middle-earth.andesite_button": "Bouton en andésite", + "item.middle-earth.andesite_button": "Bouton en andésite", + "block.middle-earth.andesite_pressure_plate": "Plaque de pression en andésite", + "item.middle-earth.andesite_pressure_plate": "Plaque de pression en andésite", + "block.middle-earth.andesite_pillar_vertical_slab": "Dalle verticale de pilier en andésite", + "item.middle-earth.andesite_pillar_vertical_slab": "Dalle verticale de pilier en andésite", + "block.middle-earth.andesite_pillar_wall": "Muret de pilier en andésite", + "item.middle-earth.andesite_pillar_wall": "Muret de pilier en andésite", + "block.middle-earth.basalt_brick_slab": "Brique en basalte", + "item.middle-earth.basalt_brick_slab": "Brique en basalte", + "block.middle-earth.basalt_brick_stairs": "Escalier de brique en basalte", + "item.middle-earth.basalt_brick_stairs": "Escalier de brique en basalte", + "block.middle-earth.basalt_brick_vertical_slab": "Dalle verticale de brique en basalte", + "item.middle-earth.basalt_brick_vertical_slab": "Dalle verticale de brique en basalte", + "block.middle-earth.basalt_brick_wall": "Muret de brique en basalte", + "item.middle-earth.basalt_brick_wall": "Muret de brique en basalte", + "block.middle-earth.basalt_tile_slab": "Tuile en basalte", + "item.middle-earth.basalt_tile_slab": "Tuile en basalte", + "block.middle-earth.basalt_tile_stairs": "Escalier de tuile en basalte", + "item.middle-earth.basalt_tile_stairs": "Escalier de tuile en basalte", + "block.middle-earth.basalt_tile_vertical_slab": "Dalle verticale de tuile en basalte", + "item.middle-earth.basalt_tile_vertical_slab": "Dalle verticale de tuile en basalte", + "block.middle-earth.basalt_tile_wall": "Muret de tuile en basalte", + "item.middle-earth.basalt_tile_wall": "Muret de tuile en basalte", + "block.middle-earth.basalt_pillar_vertical_slab": "Dalle verticale de pilier en basalte", + "item.middle-earth.basalt_pillar_vertical_slab": "Dalle verticale de pilier en basalte", + "block.middle-earth.basalt_pillar_wall": "Muret de pilier en basalte", + "item.middle-earth.basalt_pillar_wall": "Muret de pilier en basalte", + "block.middle-earth.basalt_carved_window": "Fenêtre sculptée en basalte", + "item.middle-earth.basalt_carved_window": "Fenêtre sculptée en basalte", + "block.middle-earth.basalt_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en basalte", + "item.middle-earth.basalt_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en basalte", + "item.middle-earth.basalt_statue": "Statue en basalte", + "block.middle-earth.tuff_tile_slab": "Tuile en tuf", + "item.middle-earth.tuff_tile_slab": "Tuile en tuf", + "block.middle-earth.tuff_tile_stairs": "Escalier de tuile en tuf", + "item.middle-earth.tuff_tile_stairs": "Escalier de tuile en tuf", + "block.middle-earth.tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf", + "item.middle-earth.tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf", + "block.middle-earth.tuff_tile_wall": "Muret de tuile en tuf", + "item.middle-earth.tuff_tile_wall": "Muret de tuile en tuf", + "block.middle-earth.tuff_button": "Bouton en tuf", + "item.middle-earth.tuff_button": "Bouton en tuf", + "block.middle-earth.tuff_pressure_plate": "Plaque de pression en tuf", + "item.middle-earth.tuff_pressure_plate": "Plaque de pression en tuf", + "block.middle-earth.tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf", + "item.middle-earth.tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf", + "block.middle-earth.tuff_pillar_wall": "Muret de pilier en tuf", + "item.middle-earth.tuff_pillar_wall": "Muret de pilier en tuf", + "block.middle-earth.tuff_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en tuf", + "item.middle-earth.tuff_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en tuf", + "item.middle-earth.tuff_statue": "Statue en tuf", + "block.middle-earth.blue_tuff_brick_slab": "Brique en tuf bleu", + "item.middle-earth.blue_tuff_brick_slab": "Brique en tuf bleu", + "block.middle-earth.blue_tuff_brick_stairs": "Escalier de brique en tuf bleu", + "item.middle-earth.blue_tuff_brick_stairs": "Escalier de brique en tuf bleu", + "block.middle-earth.blue_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf bleu", + "item.middle-earth.blue_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf bleu", + "block.middle-earth.blue_tuff_brick_wall": "Muret de brique en tuf bleu", + "item.middle-earth.blue_tuff_brick_wall": "Muret de brique en tuf bleu", + "block.middle-earth.blue_tuff_tile_slab": "Tuile en tuf bleu", + "item.middle-earth.blue_tuff_tile_slab": "Tuile en tuf bleu", + "block.middle-earth.blue_tuff_tile_stairs": "Escalier de tuile en tuf bleu", + "item.middle-earth.blue_tuff_tile_stairs": "Escalier de tuile en tuf bleu", + "block.middle-earth.blue_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf bleu", + "item.middle-earth.blue_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf bleu", + "block.middle-earth.blue_tuff_tile_wall": "Muret de tuile en tuf bleu", + "item.middle-earth.blue_tuff_tile_wall": "Muret de tuile en tuf bleu", + "block.middle-earth.blue_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf bleu", + "item.middle-earth.blue_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf bleu", + "block.middle-earth.blue_tuff_pillar_wall": "Muret de pilier en tuf bleu", + "item.middle-earth.blue_tuff_pillar_wall": "Muret de pilier en tuf bleu", + "block.middle-earth.blue_tuff_carved_window": "Fenêtre sculptée en tuf bleu", + "item.middle-earth.blue_tuff_carved_window": "Fenêtre sculptée en tuf bleu", + "block.middle-earth.blue_tuff_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en tuf bleu", + "item.middle-earth.blue_tuff_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en tuf bleu", + "block.middle-earth.green_tuff_brick_slab": "Brique en tuf vert", + "item.middle-earth.green_tuff_brick_slab": "Brique en tuf vert", + "block.middle-earth.green_tuff_brick_stairs": "Escalier de brique en tuf vert", + "item.middle-earth.green_tuff_brick_stairs": "Escalier de brique en tuf vert", + "block.middle-earth.green_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf vert", + "item.middle-earth.green_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf vert", + "block.middle-earth.green_tuff_brick_wall": "Muret de brique en tuf vert", + "item.middle-earth.green_tuff_brick_wall": "Muret de brique en tuf vert", + "block.middle-earth.green_tuff_tile_slab": "Tuile en tuf vert", + "item.middle-earth.green_tuff_tile_slab": "Tuile en tuf vert", + "block.middle-earth.green_tuff_tile_stairs": "Escalier de tuile en tuf vert", + "item.middle-earth.green_tuff_tile_stairs": "Escalier de tuile en tuf vert", + "block.middle-earth.green_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf vert", + "item.middle-earth.green_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf vert", + "block.middle-earth.green_tuff_tile_wall": "Muret de tuile en tuf vert", + "item.middle-earth.green_tuff_tile_wall": "Muret de tuile en tuf vert", + "block.middle-earth.green_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf vert", + "item.middle-earth.green_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf vert", + "block.middle-earth.green_tuff_pillar_wall": "Muret de pilier en tuf vert", + "item.middle-earth.green_tuff_pillar_wall": "Muret de pilier en tuf vert", + "block.middle-earth.green_tuff_carved_window": "Fenêtre sculptée en tuf vert", + "item.middle-earth.green_tuff_carved_window": "Fenêtre sculptée en tuf vert", + "block.middle-earth.green_tuff_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en tuf vert", + "item.middle-earth.green_tuff_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en tuf vert", + "block.middle-earth.granite_brick_slab": "Brique en granite", + "item.middle-earth.granite_brick_slab": "Brique en granite", + "block.middle-earth.granite_brick_stairs": "Escalier de brique en granite", + "item.middle-earth.granite_brick_stairs": "Escalier de brique en granite", + "block.middle-earth.granite_brick_vertical_slab": "Dalle verticale de brique en granite", + "item.middle-earth.granite_brick_vertical_slab": "Dalle verticale de brique en granite", + "block.middle-earth.granite_brick_wall": "Muret de brique en granite", + "item.middle-earth.granite_brick_wall": "Muret de brique en granite", + "block.middle-earth.granite_tile_slab": "Tuile en granite", + "item.middle-earth.granite_tile_slab": "Tuile en granite", + "block.middle-earth.granite_tile_stairs": "Escalier de tuile en granite", + "item.middle-earth.granite_tile_stairs": "Escalier de tuile en granite", + "block.middle-earth.granite_tile_vertical_slab": "Dalle verticale de tuile en granite", + "item.middle-earth.granite_tile_vertical_slab": "Dalle verticale de tuile en granite", + "block.middle-earth.granite_tile_wall": "Muret de tuile en granite", + "item.middle-earth.granite_tile_wall": "Muret de tuile en granite", + "block.middle-earth.granite_button": "Bouton en granite", + "item.middle-earth.granite_button": "Bouton en granite", + "block.middle-earth.granite_pressure_plate": "Plaque de pression en granite", + "item.middle-earth.granite_pressure_plate": "Plaque de pression en granite", + "block.middle-earth.granite_pillar_vertical_slab": "Dalle verticale de pilier en granite", + "item.middle-earth.granite_pillar_vertical_slab": "Dalle verticale de pilier en granite", + "block.middle-earth.granite_pillar_wall": "Muret de pilier en granite", + "item.middle-earth.granite_pillar_wall": "Muret de pilier en granite", + "block.middle-earth.diorite_brick_slab": "Brique en diorite", + "item.middle-earth.diorite_brick_slab": "Brique en diorite", + "block.middle-earth.diorite_brick_stairs": "Escalier de brique en diorite", + "item.middle-earth.diorite_brick_stairs": "Escalier de brique en diorite", + "block.middle-earth.diorite_brick_vertical_slab": "Dalle verticale de brique en diorite", + "item.middle-earth.diorite_brick_vertical_slab": "Dalle verticale de brique en diorite", + "block.middle-earth.diorite_brick_wall": "Muret de brique en diorite", + "item.middle-earth.diorite_brick_wall": "Muret de brique en diorite", + "block.middle-earth.diorite_tile_slab": "Tuile en diorite", + "item.middle-earth.diorite_tile_slab": "Tuile en diorite", + "block.middle-earth.diorite_tile_stairs": "Escalier de tuile en diorite", + "item.middle-earth.diorite_tile_stairs": "Escalier de tuile en diorite", + "block.middle-earth.diorite_tile_vertical_slab": "Dalle verticale de tuile en diorite", + "item.middle-earth.diorite_tile_vertical_slab": "Dalle verticale de tuile en diorite", + "block.middle-earth.diorite_tile_wall": "Muret de tuile en diorite", + "item.middle-earth.diorite_tile_wall": "Muret de tuile en diorite", + "block.middle-earth.diorite_button": "Bouton en diorite", + "item.middle-earth.diorite_button": "Bouton en diorite", + "block.middle-earth.diorite_pressure_plate": "Plaque de pression en diorite", + "item.middle-earth.diorite_pressure_plate": "Plaque de pression en diorite", + "block.middle-earth.diorite_pillar_vertical_slab": "Dalle verticale de pilier en diorite", + "item.middle-earth.diorite_pillar_vertical_slab": "Dalle verticale de pilier en diorite", + "block.middle-earth.diorite_pillar_wall": "Muret de pilier en diorite", + "item.middle-earth.diorite_pillar_wall": "Muret de pilier en diorite", + "item.middle-earth.diorite_statue": "Statue en diorite", + "block.middle-earth.gneiss_brick_slab": "Brique en gneiss", + "item.middle-earth.gneiss_brick_slab": "Brique en gneiss", + "block.middle-earth.gneiss_brick_stairs": "Escalier de brique en gneiss", + "item.middle-earth.gneiss_brick_stairs": "Escalier de brique en gneiss", + "block.middle-earth.gneiss_brick_vertical_slab": "Dalle verticale de brique en gneiss", + "item.middle-earth.gneiss_brick_vertical_slab": "Dalle verticale de brique en gneiss", + "block.middle-earth.gneiss_brick_wall": "Muret de brique en gneiss", + "item.middle-earth.gneiss_brick_wall": "Muret de brique en gneiss", + "block.middle-earth.gneiss_tile_slab": "Tuile en gneiss", + "item.middle-earth.gneiss_tile_slab": "Tuile en gneiss", + "block.middle-earth.gneiss_tile_stairs": "Escalier de tuile en gneiss", + "item.middle-earth.gneiss_tile_stairs": "Escalier de tuile en gneiss", + "block.middle-earth.gneiss_tile_vertical_slab": "Dalle verticale de tuile en gneiss", + "item.middle-earth.gneiss_tile_vertical_slab": "Dalle verticale de tuile en gneiss", + "block.middle-earth.gneiss_tile_wall": "Muret de tuile en gneiss", + "item.middle-earth.gneiss_tile_wall": "Muret de tuile en gneiss", + "block.middle-earth.gneiss_pillar_vertical_slab": "Dalle verticale de pilier en gneiss", + "item.middle-earth.gneiss_pillar_vertical_slab": "Dalle verticale de pilier en gneiss", + "block.middle-earth.gneiss_pillar_wall": "Muret de pilier en gneiss", + "item.middle-earth.gneiss_pillar_wall": "Muret de pilier en gneiss", + "block.middle-earth.gneiss_carved_window": "Fenêtre sculptée en gneiss", + "item.middle-earth.gneiss_carved_window": "Fenêtre sculptée en gneiss", + "block.middle-earth.gneiss_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en gneiss", + "item.middle-earth.gneiss_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en gneiss", + "block.middle-earth.schist_brick_slab": "Brique en schiste", + "item.middle-earth.schist_brick_slab": "Brique en schiste", + "block.middle-earth.schist_brick_stairs": "Escalier de brique en schiste", + "item.middle-earth.schist_brick_stairs": "Escalier de brique en schiste", + "block.middle-earth.schist_brick_vertical_slab": "Dalle verticale de brique en schiste", + "item.middle-earth.schist_brick_vertical_slab": "Dalle verticale de brique en schiste", + "block.middle-earth.schist_brick_wall": "Muret de brique en schiste", + "item.middle-earth.schist_brick_wall": "Muret de brique en schiste", + "block.middle-earth.schist_tile_slab": "Tuile en schiste", + "item.middle-earth.schist_tile_slab": "Tuile en schiste", + "block.middle-earth.schist_tile_stairs": "Escalier de tuile en schiste", + "item.middle-earth.schist_tile_stairs": "Escalier de tuile en schiste", + "block.middle-earth.schist_tile_vertical_slab": "Dalle verticale de tuile en schiste", + "item.middle-earth.schist_tile_vertical_slab": "Dalle verticale de tuile en schiste", + "block.middle-earth.schist_tile_wall": "Muret de tuile en schiste", + "item.middle-earth.schist_tile_wall": "Muret de tuile en schiste", + "block.middle-earth.schist_pillar_vertical_slab": "Dalle verticale de pilier en schiste", + "item.middle-earth.schist_pillar_vertical_slab": "Dalle verticale de pilier en schiste", + "block.middle-earth.schist_pillar_wall": "Muret de pilier en schiste", + "item.middle-earth.schist_pillar_wall": "Muret de pilier en schiste", + "block.middle-earth.limestone_brick_slab": "Brique en calcaire", + "item.middle-earth.limestone_brick_slab": "Brique en calcaire", + "block.middle-earth.limestone_brick_stairs": "Escalier de brique en calcaire", + "item.middle-earth.limestone_brick_stairs": "Escalier de brique en calcaire", + "block.middle-earth.limestone_brick_vertical_slab": "Dalle verticale de brique en calcaire", + "item.middle-earth.limestone_brick_vertical_slab": "Dalle verticale de brique en calcaire", + "block.middle-earth.limestone_brick_wall": "Muret de brique en calcaire", + "item.middle-earth.limestone_brick_wall": "Muret de brique en calcaire", + "block.middle-earth.limestone_tile_slab": "Tuile en calcaire", + "item.middle-earth.limestone_tile_slab": "Tuile en calcaire", + "block.middle-earth.limestone_tile_stairs": "Escalier de tuile en calcaire", + "item.middle-earth.limestone_tile_stairs": "Escalier de tuile en calcaire", + "block.middle-earth.limestone_tile_vertical_slab": "Dalle verticale de tuile en calcaire", + "item.middle-earth.limestone_tile_vertical_slab": "Dalle verticale de tuile en calcaire", + "block.middle-earth.limestone_tile_wall": "Muret de tuile en calcaire", + "item.middle-earth.limestone_tile_wall": "Muret de tuile en calcaire", + "block.middle-earth.limestone_pillar_vertical_slab": "Dalle verticale de pilier en calcaire", + "item.middle-earth.limestone_pillar_vertical_slab": "Dalle verticale de pilier en calcaire", + "block.middle-earth.limestone_pillar_wall": "Muret de pilier en calcaire", + "item.middle-earth.limestone_pillar_wall": "Muret de pilier en calcaire", + "block.middle-earth.limestone_carved_window": "Fenêtre sculptée en calcaire", + "item.middle-earth.limestone_carved_window": "Fenêtre sculptée en calcaire", + "block.middle-earth.limestone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en calcaire", + "item.middle-earth.limestone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en calcaire", + "block.middle-earth.gabbro_brick_slab": "Brique en gabbro", + "item.middle-earth.gabbro_brick_slab": "Brique en gabbro", + "block.middle-earth.gabbro_brick_stairs": "Escalier de brique en gabbro", + "item.middle-earth.gabbro_brick_stairs": "Escalier de brique en gabbro", + "block.middle-earth.gabbro_brick_vertical_slab": "Dalle verticale de brique en gabbro", + "item.middle-earth.gabbro_brick_vertical_slab": "Dalle verticale de brique en gabbro", + "block.middle-earth.gabbro_brick_wall": "Muret de brique en gabbro", + "item.middle-earth.gabbro_brick_wall": "Muret de brique en gabbro", + "block.middle-earth.gabbro_tile_slab": "Tuile en gabbro", + "item.middle-earth.gabbro_tile_slab": "Tuile en gabbro", + "block.middle-earth.gabbro_tile_stairs": "Escalier de tuile en gabbro", + "item.middle-earth.gabbro_tile_stairs": "Escalier de tuile en gabbro", + "block.middle-earth.gabbro_tile_vertical_slab": "Dalle verticale de tuile en gabbro", + "item.middle-earth.gabbro_tile_vertical_slab": "Dalle verticale de tuile en gabbro", + "block.middle-earth.gabbro_tile_wall": "Muret de tuile en gabbro", + "item.middle-earth.gabbro_tile_wall": "Muret de tuile en gabbro", + "block.middle-earth.gabbro_pillar_vertical_slab": "Dalle verticale de pilier en gabbro", + "item.middle-earth.gabbro_pillar_vertical_slab": "Dalle verticale de pilier en gabbro", + "block.middle-earth.gabbro_pillar_wall": "Muret de pilier en gabbro", + "item.middle-earth.gabbro_pillar_wall": "Muret de pilier en gabbro", + "block.middle-earth.gabbro_carved_window": "Fenêtre sculptée en gabbro", + "item.middle-earth.gabbro_carved_window": "Fenêtre sculptée en gabbro", + "block.middle-earth.gabbro_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en gabbro", + "item.middle-earth.gabbro_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en gabbro", + "item.middle-earth.gabbro_statue": "Statue en gabbro", + "block.middle-earth.slate_brick_slab": "Brique en ardoise", + "item.middle-earth.slate_brick_slab": "Brique en ardoise", + "block.middle-earth.slate_brick_stairs": "Escalier de brique en ardoise", + "item.middle-earth.slate_brick_stairs": "Escalier de brique en ardoise", + "block.middle-earth.slate_brick_vertical_slab": "Dalle verticale de brique en ardoise", + "item.middle-earth.slate_brick_vertical_slab": "Dalle verticale de brique en ardoise", + "block.middle-earth.slate_brick_wall": "Muret de brique en ardoise", + "item.middle-earth.slate_brick_wall": "Muret de brique en ardoise", + "block.middle-earth.slate_tile_slab": "Tuile en ardoise", + "item.middle-earth.slate_tile_slab": "Tuile en ardoise", + "block.middle-earth.slate_tile_stairs": "Escalier de tuile en ardoise", + "item.middle-earth.slate_tile_stairs": "Escalier de tuile en ardoise", + "block.middle-earth.slate_tile_vertical_slab": "Dalle verticale de tuile en ardoise", + "item.middle-earth.slate_tile_vertical_slab": "Dalle verticale de tuile en ardoise", + "block.middle-earth.slate_tile_wall": "Muret de tuile en ardoise", + "item.middle-earth.slate_tile_wall": "Muret de tuile en ardoise", + "block.middle-earth.slate_pillar_vertical_slab": "Dalle verticale de pilier en ardoise", + "item.middle-earth.slate_pillar_vertical_slab": "Dalle verticale de pilier en ardoise", + "block.middle-earth.slate_pillar_wall": "Muret de pilier en ardoise", + "item.middle-earth.slate_pillar_wall": "Muret de pilier en ardoise", + "block.middle-earth.slate_carved_window": "Fenêtre sculptée en ardoise", + "item.middle-earth.slate_carved_window": "Fenêtre sculptée en ardoise", + "block.middle-earth.slate_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en ardoise", + "item.middle-earth.slate_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en ardoise", + "block.middle-earth.quartzite_brick_slab": "Brique en quartzite", + "item.middle-earth.quartzite_brick_slab": "Brique en quartzite", + "block.middle-earth.quartzite_brick_stairs": "Escalier de brique en quartzite", + "item.middle-earth.quartzite_brick_stairs": "Escalier de brique en quartzite", + "block.middle-earth.quartzite_brick_vertical_slab": "Dalle verticale de brique en quartzite", + "item.middle-earth.quartzite_brick_vertical_slab": "Dalle verticale de brique en quartzite", + "block.middle-earth.quartzite_brick_wall": "Muret de brique en quartzite", + "item.middle-earth.quartzite_brick_wall": "Muret de brique en quartzite", + "block.middle-earth.quartzite_tile_slab": "Tuile en quartzite", + "item.middle-earth.quartzite_tile_slab": "Tuile en quartzite", + "block.middle-earth.quartzite_tile_stairs": "Escalier de tuile en quartzite", + "item.middle-earth.quartzite_tile_stairs": "Escalier de tuile en quartzite", + "block.middle-earth.quartzite_tile_vertical_slab": "Dalle verticale de tuile en quartzite", + "item.middle-earth.quartzite_tile_vertical_slab": "Dalle verticale de tuile en quartzite", + "block.middle-earth.quartzite_tile_wall": "Muret de tuile en quartzite", + "item.middle-earth.quartzite_tile_wall": "Muret de tuile en quartzite", + "block.middle-earth.ironstone_brick_slab": "Brique en pierre de fer", + "item.middle-earth.ironstone_brick_slab": "Brique en pierre de fer", + "block.middle-earth.ironstone_brick_stairs": "Escalier de brique en pierre de fer", + "item.middle-earth.ironstone_brick_stairs": "Escalier de brique en pierre de fer", + "block.middle-earth.ironstone_brick_vertical_slab": "Dalle verticale de brique en pierre de fer", + "item.middle-earth.ironstone_brick_vertical_slab": "Dalle verticale de brique en pierre de fer", + "block.middle-earth.ironstone_brick_wall": "Muret de brique en pierre de fer", + "item.middle-earth.ironstone_brick_wall": "Muret de brique en pierre de fer", + "block.middle-earth.ironstone_tile_slab": "Tuile en pierre de fer", + "item.middle-earth.ironstone_tile_slab": "Tuile en pierre de fer", + "block.middle-earth.ironstone_tile_stairs": "Escalier de tuile en pierre de fer", + "item.middle-earth.ironstone_tile_stairs": "Escalier de tuile en pierre de fer", + "block.middle-earth.ironstone_tile_vertical_slab": "Dalle verticale de tuile en pierre de fer", + "item.middle-earth.ironstone_tile_vertical_slab": "Dalle verticale de tuile en pierre de fer", + "block.middle-earth.ironstone_tile_wall": "Muret de tuile en pierre de fer", + "item.middle-earth.ironstone_tile_wall": "Muret de tuile en pierre de fer", + "block.middle-earth.ironstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre de fer", + "item.middle-earth.ironstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre de fer", + "block.middle-earth.ironstone_pillar_wall": "Muret de pilier en pierre de fer", + "item.middle-earth.ironstone_pillar_wall": "Muret de pilier en pierre de fer", + "block.middle-earth.ironstone_carved_window": "Fenêtre sculptée en pierre de fer", + "item.middle-earth.ironstone_carved_window": "Fenêtre sculptée en pierre de fer", + "block.middle-earth.ironstone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre de fer", + "item.middle-earth.ironstone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre de fer", + "block.middle-earth.hematite_brick_slab": "Brique en hématite", + "item.middle-earth.hematite_brick_slab": "Brique en hématite", + "block.middle-earth.hematite_brick_stairs": "Escalier de brique en hématite", + "item.middle-earth.hematite_brick_stairs": "Escalier de brique en hématite", + "block.middle-earth.hematite_brick_vertical_slab": "Dalle verticale de brique en hématite", + "item.middle-earth.hematite_brick_vertical_slab": "Dalle verticale de brique en hématite", + "block.middle-earth.hematite_brick_wall": "Muret de brique en hématite", + "item.middle-earth.hematite_brick_wall": "Muret de brique en hématite", + "block.middle-earth.hematite_tile_slab": "Tuile en hématite", + "item.middle-earth.hematite_tile_slab": "Tuile en hématite", + "block.middle-earth.hematite_tile_stairs": "Escalier de tuile en hématite", + "item.middle-earth.hematite_tile_stairs": "Escalier de tuile en hématite", + "block.middle-earth.hematite_tile_vertical_slab": "Dalle verticale de tuile en hématite", + "item.middle-earth.hematite_tile_vertical_slab": "Dalle verticale de tuile en hématite", + "block.middle-earth.hematite_tile_wall": "Muret de tuile en hématite", + "item.middle-earth.hematite_tile_wall": "Muret de tuile en hématite", + "block.middle-earth.hematite_pillar_vertical_slab": "Dalle verticale de pilier en hématite", + "item.middle-earth.hematite_pillar_vertical_slab": "Dalle verticale de pilier en hématite", + "block.middle-earth.hematite_pillar_wall": "Muret de pilier en hématite", + "item.middle-earth.hematite_pillar_wall": "Muret de pilier en hématite", + "block.middle-earth.hematite_carved_window": "Fenêtre sculptée en hématite", + "item.middle-earth.hematite_carved_window": "Fenêtre sculptée en hématite", + "block.middle-earth.hematite_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en hématite", + "item.middle-earth.hematite_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en hématite", + "block.middle-earth.zigilaban_brick_slab": "Brique en Zigil'Aban", + "item.middle-earth.zigilaban_brick_slab": "Brique en Zigil'Aban", + "block.middle-earth.zigilaban_brick_stairs": "Escalier de brique en Zigil'Aban", + "item.middle-earth.zigilaban_brick_stairs": "Escalier de brique en Zigil'Aban", + "block.middle-earth.zigilaban_brick_vertical_slab": "Dalle verticale de brique en Zigil'Aban", + "item.middle-earth.zigilaban_brick_vertical_slab": "Dalle verticale de brique en Zigil'Aban", + "block.middle-earth.zigilaban_brick_wall": "Muret de brique en Zigil'Aban", + "item.middle-earth.zigilaban_brick_wall": "Muret de brique en Zigil'Aban", + "block.middle-earth.zigilaban_tile_slab": "Tuile en Zigil'Aban", + "item.middle-earth.zigilaban_tile_slab": "Tuile en Zigil'Aban", + "block.middle-earth.zigilaban_tile_stairs": "Escalier de tuile en Zigil'Aban", + "item.middle-earth.zigilaban_tile_stairs": "Escalier de tuile en Zigil'Aban", + "block.middle-earth.zigilaban_tile_vertical_slab": "Dalle verticale de tuile en Zigil'Aban", + "item.middle-earth.zigilaban_tile_vertical_slab": "Dalle verticale de tuile en Zigil'Aban", + "block.middle-earth.zigilaban_tile_wall": "Muret de tuile en Zigil'Aban", + "item.middle-earth.zigilaban_tile_wall": "Muret de tuile en Zigil'Aban", + "block.middle-earth.zigilaban_pillar_vertical_slab": "Dalle verticale de pilier en Zigil'Aban", + "item.middle-earth.zigilaban_pillar_vertical_slab": "Dalle verticale de pilier en Zigil'Aban", + "block.middle-earth.zigilaban_pillar_wall": "Muret de pilier en Zigil'Aban", + "item.middle-earth.zigilaban_pillar_wall": "Muret de pilier en Zigil'Aban", + "block.middle-earth.zigilaban_carved_window": "Fenêtre sculptée en Zigil'Aban", + "item.middle-earth.zigilaban_carved_window": "Fenêtre sculptée en Zigil'Aban", + "block.middle-earth.zigilaban_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Zigil'Aban", + "item.middle-earth.zigilaban_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Zigil'Aban", + "item.middle-earth.zigilaban_statue": "Statue en Zigil'Aban", + "block.middle-earth.izheraban_brick_slab": "Brique en Izhêr'Aban", + "item.middle-earth.izheraban_brick_slab": "Brique en Izhêr'Aban", + "block.middle-earth.izheraban_brick_stairs": "Escalier de brique en Izhêr'Aban", + "item.middle-earth.izheraban_brick_stairs": "Escalier de brique en Izhêr'Aban", + "block.middle-earth.izheraban_brick_vertical_slab": "Dalle verticale de brique en Izhêr'Aban", + "item.middle-earth.izheraban_brick_vertical_slab": "Dalle verticale de brique en Izhêr'Aban", + "block.middle-earth.izheraban_brick_wall": "Muret de brique en Izhêr'Aban", + "item.middle-earth.izheraban_brick_wall": "Muret de brique en Izhêr'Aban", + "block.middle-earth.izheraban_tile_slab": "Tuile en Izhêr'Aban", + "item.middle-earth.izheraban_tile_slab": "Tuile en Izhêr'Aban", + "block.middle-earth.izheraban_tile_stairs": "Escalier de tuile en Izhêr'Aban", + "item.middle-earth.izheraban_tile_stairs": "Escalier de tuile en Izhêr'Aban", + "block.middle-earth.izheraban_tile_vertical_slab": "Dalle verticale de tuile en Izhêr'Aban", + "item.middle-earth.izheraban_tile_vertical_slab": "Dalle verticale de tuile en Izhêr'Aban", + "block.middle-earth.izheraban_tile_wall": "Muret de tuile en Izhêr'Aban", + "item.middle-earth.izheraban_tile_wall": "Muret de tuile en Izhêr'Aban", + "block.middle-earth.izheraban_pillar_vertical_slab": "Dalle verticale de pilier en Izhêr'Aban", + "item.middle-earth.izheraban_pillar_vertical_slab": "Dalle verticale de pilier en Izhêr'Aban", + "block.middle-earth.izheraban_pillar_wall": "Muret de pilier en Izhêr'Aban", + "item.middle-earth.izheraban_pillar_wall": "Muret de pilier en Izhêr'Aban", + "block.middle-earth.izheraban_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Izhêr'Aban", + "item.middle-earth.izheraban_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Izhêr'Aban", + "block.middle-earth.nurgon_brick_slab": "Brique en Núrgon", + "item.middle-earth.nurgon_brick_slab": "Brique en Núrgon", + "block.middle-earth.nurgon_brick_stairs": "Escalier de brique en Núrgon", + "item.middle-earth.nurgon_brick_stairs": "Escalier de brique en Núrgon", + "block.middle-earth.nurgon_brick_vertical_slab": "Dalle verticale de brique en Núrgon", + "item.middle-earth.nurgon_brick_vertical_slab": "Dalle verticale de brique en Núrgon", + "block.middle-earth.nurgon_brick_wall": "Muret de brique en Núrgon", + "item.middle-earth.nurgon_brick_wall": "Muret de brique en Núrgon", + "block.middle-earth.nurgon_tile_slab": "Tuile en Núrgon", + "item.middle-earth.nurgon_tile_slab": "Tuile en Núrgon", + "block.middle-earth.nurgon_tile_stairs": "Escalier de tuile en Núrgon", + "item.middle-earth.nurgon_tile_stairs": "Escalier de tuile en Núrgon", + "block.middle-earth.nurgon_tile_vertical_slab": "Dalle verticale de tuile en Núrgon", + "item.middle-earth.nurgon_tile_vertical_slab": "Dalle verticale de tuile en Núrgon", + "block.middle-earth.nurgon_tile_wall": "Muret de tuile en Núrgon", + "item.middle-earth.nurgon_tile_wall": "Muret de tuile en Núrgon", + "block.middle-earth.nurgon_pillar_vertical_slab": "Dalle verticale de pilier en Núrgon", + "item.middle-earth.nurgon_pillar_vertical_slab": "Dalle verticale de pilier en Núrgon", + "block.middle-earth.nurgon_pillar_wall": "Muret de pilier en Núrgon", + "item.middle-earth.nurgon_pillar_wall": "Muret de pilier en Núrgon", + "block.middle-earth.nurgon_carved_window": "Fenêtre sculptée en Núrgon", + "item.middle-earth.nurgon_carved_window": "Fenêtre sculptée en Núrgon", + "block.middle-earth.nurgon_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Núrgon", + "item.middle-earth.nurgon_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Núrgon", + "block.middle-earth.medgon_brick_slab": "Brique en Medgon", + "item.middle-earth.medgon_brick_slab": "Brique en Medgon", + "block.middle-earth.medgon_brick_stairs": "Escalier de brique en Medgon", + "item.middle-earth.medgon_brick_stairs": "Escalier de brique en Medgon", + "block.middle-earth.medgon_brick_vertical_slab": "Dalle verticale de brique en Medgon", + "item.middle-earth.medgon_brick_vertical_slab": "Dalle verticale de brique en Medgon", + "block.middle-earth.medgon_brick_wall": "Muret de brique en Medgon", + "item.middle-earth.medgon_brick_wall": "Muret de brique en Medgon", + "block.middle-earth.medgon_tile_slab": "Tuile en Medgon", + "item.middle-earth.medgon_tile_slab": "Tuile en Medgon", + "block.middle-earth.medgon_tile_stairs": "Escalier de tuile en Medgon", + "item.middle-earth.medgon_tile_stairs": "Escalier de tuile en Medgon", + "block.middle-earth.medgon_tile_vertical_slab": "Dalle verticale de tuile en Medgon", + "item.middle-earth.medgon_tile_vertical_slab": "Dalle verticale de tuile en Medgon", + "block.middle-earth.medgon_tile_wall": "Muret de tuile en Medgon", + "item.middle-earth.medgon_tile_wall": "Muret de tuile en Medgon", + "block.middle-earth.medgon_pillar_vertical_slab": "Dalle verticale de pilier en Medgon", + "item.middle-earth.medgon_pillar_vertical_slab": "Dalle verticale de pilier en Medgon", + "block.middle-earth.medgon_pillar_wall": "Muret de pilier en Medgon", + "item.middle-earth.medgon_pillar_wall": "Muret de pilier en Medgon", + "block.middle-earth.medgon_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Medgon", + "item.middle-earth.medgon_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Medgon", + "block.middle-earth.galonn_brick_slab": "Brique en Galonn", + "item.middle-earth.galonn_brick_slab": "Brique en Galonn", + "block.middle-earth.galonn_brick_stairs": "Escalier de brique en Galonn", + "item.middle-earth.galonn_brick_stairs": "Escalier de brique en Galonn", + "block.middle-earth.galonn_brick_vertical_slab": "Dalle verticale de brique en Galonn", + "item.middle-earth.galonn_brick_vertical_slab": "Dalle verticale de brique en Galonn", + "block.middle-earth.galonn_brick_wall": "Muret de brique en Galonn", + "item.middle-earth.galonn_brick_wall": "Muret de brique en Galonn", + "block.middle-earth.galonn_tile_slab": "Tuile en Galonn", + "item.middle-earth.galonn_tile_slab": "Tuile en Galonn", + "block.middle-earth.galonn_tile_stairs": "Escalier de tuile en Galonn", + "item.middle-earth.galonn_tile_stairs": "Escalier de tuile en Galonn", + "block.middle-earth.galonn_tile_vertical_slab": "Dalle verticale de tuile en Galonn", + "item.middle-earth.galonn_tile_vertical_slab": "Dalle verticale de tuile en Galonn", + "block.middle-earth.galonn_tile_wall": "Muret de tuile en Galonn", + "item.middle-earth.galonn_tile_wall": "Muret de tuile en Galonn", + "block.middle-earth.galonn_pillar_vertical_slab": "Dalle verticale de pilier en Galonn", + "item.middle-earth.galonn_pillar_vertical_slab": "Dalle verticale de pilier en Galonn", + "block.middle-earth.galonn_pillar_wall": "Muret de pilier en Galonn", + "item.middle-earth.galonn_pillar_wall": "Muret de pilier en Galonn", + "block.middle-earth.galonn_carved_window": "Fenêtre sculptée en Galonn", + "item.middle-earth.galonn_carved_window": "Fenêtre sculptée en Galonn", + "block.middle-earth.galonn_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Galonn", + "item.middle-earth.galonn_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en Galonn", + "item.middle-earth.galonn_statue": "Statue en Galonn", + "block.middle-earth.jadeite_brick_slab": "Brique en jadéite", + "item.middle-earth.jadeite_brick_slab": "Brique en jadéite", + "block.middle-earth.jadeite_brick_stairs": "Escalier de brique en jadéite", + "item.middle-earth.jadeite_brick_stairs": "Escalier de brique en jadéite", + "block.middle-earth.jadeite_brick_vertical_slab": "Dalle verticale de brique en jadéite", + "item.middle-earth.jadeite_brick_vertical_slab": "Dalle verticale de brique en jadéite", + "block.middle-earth.jadeite_brick_wall": "Muret de brique en jadéite", + "item.middle-earth.jadeite_brick_wall": "Muret de brique en jadéite", + "block.middle-earth.jadeite_tile_slab": "Tuile en jadéite", + "item.middle-earth.jadeite_tile_slab": "Tuile en jadéite", + "block.middle-earth.jadeite_tile_stairs": "Escalier de tuile en jadéite", + "item.middle-earth.jadeite_tile_stairs": "Escalier de tuile en jadéite", + "block.middle-earth.jadeite_tile_vertical_slab": "Dalle verticale de tuile en jadéite", + "item.middle-earth.jadeite_tile_vertical_slab": "Dalle verticale de tuile en jadéite", + "block.middle-earth.jadeite_tile_wall": "Muret de tuile en jadéite", + "item.middle-earth.jadeite_tile_wall": "Muret de tuile en jadéite", + "block.middle-earth.jadeite_pillar_vertical_slab": "Dalle verticale de pilier en jadéite", + "item.middle-earth.jadeite_pillar_vertical_slab": "Dalle verticale de pilier en jadéite", + "block.middle-earth.jadeite_pillar_wall": "Muret de pilier en jadéite", + "item.middle-earth.jadeite_pillar_wall": "Muret de pilier en jadéite", + "block.middle-earth.calcite_brick_slab": "Brique en calcite", + "item.middle-earth.calcite_brick_slab": "Brique en calcite", + "block.middle-earth.calcite_brick_stairs": "Escalier de brique en calcite", + "item.middle-earth.calcite_brick_stairs": "Escalier de brique en calcite", + "block.middle-earth.calcite_brick_vertical_slab": "Dalle verticale de brique en calcite", + "item.middle-earth.calcite_brick_vertical_slab": "Dalle verticale de brique en calcite", + "block.middle-earth.calcite_brick_wall": "Muret de brique en calcite", + "item.middle-earth.calcite_brick_wall": "Muret de brique en calcite", + "block.middle-earth.calcite_tile_slab": "Tuile en calcite", + "item.middle-earth.calcite_tile_slab": "Tuile en calcite", + "block.middle-earth.calcite_tile_stairs": "Escalier de tuile en calcite", + "item.middle-earth.calcite_tile_stairs": "Escalier de tuile en calcite", + "block.middle-earth.calcite_tile_vertical_slab": "Dalle verticale de tuile en calcite", + "item.middle-earth.calcite_tile_vertical_slab": "Dalle verticale de tuile en calcite", + "block.middle-earth.calcite_tile_wall": "Muret de tuile en calcite", + "item.middle-earth.calcite_tile_wall": "Muret de tuile en calcite", + "block.middle-earth.calcite_pillar_vertical_slab": "Dalle verticale de pilier en calcite", + "item.middle-earth.calcite_pillar_vertical_slab": "Dalle verticale de pilier en calcite", + "block.middle-earth.calcite_pillar_wall": "Muret de pilier en calcite", + "item.middle-earth.calcite_pillar_wall": "Muret de pilier en calcite", + "block.middle-earth.calcite_carved_window": "Fenêtre sculptée en calcite", + "item.middle-earth.calcite_carved_window": "Fenêtre sculptée en calcite", + "block.middle-earth.calcite_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en calcite", + "item.middle-earth.calcite_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en calcite", + "item.middle-earth.calcite_statue": "Statue en calcite", + "block.middle-earth.dolomite_brick_slab": "Brique en dolomite", + "item.middle-earth.dolomite_brick_slab": "Brique en dolomite", + "block.middle-earth.dolomite_brick_stairs": "Escalier de brique en dolomite", + "item.middle-earth.dolomite_brick_stairs": "Escalier de brique en dolomite", + "block.middle-earth.dolomite_brick_vertical_slab": "Dalle verticale de brique en dolomite", + "item.middle-earth.dolomite_brick_vertical_slab": "Dalle verticale de brique en dolomite", + "block.middle-earth.dolomite_brick_wall": "Muret de brique en dolomite", + "item.middle-earth.dolomite_brick_wall": "Muret de brique en dolomite", + "block.middle-earth.dolomite_tile_slab": "Tuile en dolomite", + "item.middle-earth.dolomite_tile_slab": "Tuile en dolomite", + "block.middle-earth.dolomite_tile_stairs": "Escalier de tuile en dolomite", + "item.middle-earth.dolomite_tile_stairs": "Escalier de tuile en dolomite", + "block.middle-earth.dolomite_tile_vertical_slab": "Dalle verticale de tuile en dolomite", + "item.middle-earth.dolomite_tile_vertical_slab": "Dalle verticale de tuile en dolomite", + "block.middle-earth.dolomite_tile_wall": "Muret de tuile en dolomite", + "item.middle-earth.dolomite_tile_wall": "Muret de tuile en dolomite", + "block.middle-earth.dolomite_pillar_vertical_slab": "Dalle verticale de pilier en dolomite", + "item.middle-earth.dolomite_pillar_vertical_slab": "Dalle verticale de pilier en dolomite", + "block.middle-earth.dolomite_pillar_wall": "Muret de pilier en dolomite", + "item.middle-earth.dolomite_pillar_wall": "Muret de pilier en dolomite", + "block.middle-earth.dolomite_carved_window": "Fenêtre sculptée en dolomite", + "item.middle-earth.dolomite_carved_window": "Fenêtre sculptée en dolomite", + "block.middle-earth.dolomite_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en dolomite", + "item.middle-earth.dolomite_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en dolomite", + "block.middle-earth.pumice_brick_slab": "Brique en pierre ponce", + "item.middle-earth.pumice_brick_slab": "Brique en pierre ponce", + "block.middle-earth.pumice_brick_stairs": "Escalier de brique en pierre ponce", + "item.middle-earth.pumice_brick_stairs": "Escalier de brique en pierre ponce", + "block.middle-earth.pumice_brick_vertical_slab": "Dalle verticale de brique en pierre ponce", + "item.middle-earth.pumice_brick_vertical_slab": "Dalle verticale de brique en pierre ponce", + "block.middle-earth.pumice_brick_wall": "Muret de brique en pierre ponce", + "item.middle-earth.pumice_brick_wall": "Muret de brique en pierre ponce", + "block.middle-earth.pumice_tile_slab": "Tuile en pierre ponce", + "item.middle-earth.pumice_tile_slab": "Tuile en pierre ponce", + "block.middle-earth.pumice_tile_stairs": "Escalier de tuile en pierre ponce", + "item.middle-earth.pumice_tile_stairs": "Escalier de tuile en pierre ponce", + "block.middle-earth.pumice_tile_vertical_slab": "Dalle verticale de tuile en pierre ponce", + "item.middle-earth.pumice_tile_vertical_slab": "Dalle verticale de tuile en pierre ponce", + "block.middle-earth.pumice_tile_wall": "Muret de tuile en pierre ponce", + "item.middle-earth.pumice_tile_wall": "Muret de tuile en pierre ponce", + "block.middle-earth.pumice_pillar_vertical_slab": "Dalle verticale de pilier en pierre ponce", + "item.middle-earth.pumice_pillar_vertical_slab": "Dalle verticale de pilier en pierre ponce", + "block.middle-earth.pumice_pillar_wall": "Muret de pilier en pierre ponce", + "item.middle-earth.pumice_pillar_wall": "Muret de pilier en pierre ponce", + "block.middle-earth.pumice_carved_window": "Fenêtre sculptée en pierre ponce", + "item.middle-earth.pumice_carved_window": "Fenêtre sculptée en pierre ponce", + "block.middle-earth.pumice_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre ponce", + "item.middle-earth.pumice_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre ponce", + "item.middle-earth.pumice_statue": "Statue en pierre ponce", + "block.middle-earth.blue_tuff_brickwork": "Maçonnerie en tuf bleu", + "item.middle-earth.blue_tuff_brickwork": "Maçonnerie en tuf bleu", + "block.middle-earth.blue_tuff_brickwork_slab": "Dalle de maçonnerie en tuf bleu", + "item.middle-earth.blue_tuff_brickwork_slab": "Dalle de maçonnerie en tuf bleu", + "block.middle-earth.blue_tuff_brickwork_stairs": "Escalier en maçonnerie de tuf bleu", + "item.middle-earth.blue_tuff_brickwork_stairs": "Escalier en maçonnerie de tuf bleu", + "block.middle-earth.blue_tuff_brickwork_vertical_slab": "Dalle verticale de maçonnerie en tuf bleu", + "item.middle-earth.blue_tuff_brickwork_vertical_slab": "Dalle verticale de maçonnerie en tuf bleu", + "block.middle-earth.blue_tuff_brickwork_wall": "Muret en maçonnerie de tuf bleu", + "item.middle-earth.blue_tuff_brickwork_wall": "Muret en maçonnerie de tuf bleu", + "block.middle-earth.slate_brickwork": "Maçonnerie en ardoise", + "item.middle-earth.slate_brickwork": "Maçonnerie en ardoise", + "block.middle-earth.slate_brickwork_slab": "Dalle de maçonnerie en ardoise", + "item.middle-earth.slate_brickwork_slab": "Dalle de maçonnerie en ardoise", + "block.middle-earth.slate_brickwork_stairs": "Escalier en maçonnerie d'ardoise", + "item.middle-earth.slate_brickwork_stairs": "Escalier en maçonnerie d'ardoise", + "block.middle-earth.slate_brickwork_vertical_slab": "Dalle verticale de maçonnerie en ardoise", + "item.middle-earth.slate_brickwork_vertical_slab": "Dalle verticale de maçonnerie en ardoise", + "block.middle-earth.slate_brickwork_wall": "Muret en maçonnerie d'ardoise", + "item.middle-earth.slate_brickwork_wall": "Muret en maçonnerie d'ardoise", + "block.middle-earth.ironstone_brickwork": "Maçonnerie en pierre de fer", + "item.middle-earth.ironstone_brickwork": "Maçonnerie en pierre de fer", + "block.middle-earth.ironstone_brickwork_slab": "Dalle de maçonnerie en pierre de fer", + "item.middle-earth.ironstone_brickwork_slab": "Dalle de maçonnerie en pierre de fer", + "block.middle-earth.ironstone_brickwork_stairs": "Escalier en maçonnerie de pierre de fer", + "item.middle-earth.ironstone_brickwork_stairs": "Escalier en maçonnerie de pierre de fer", + "block.middle-earth.ironstone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierre de fer", + "item.middle-earth.ironstone_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierre de fer", + "block.middle-earth.ironstone_brickwork_wall": "Muret en maçonnerie de pierre de fer", + "item.middle-earth.ironstone_brickwork_wall": "Muret en maçonnerie de pierre de fer", + "block.middle-earth.nurgon_brickwork": "Maçonnerie en Núrgon", + "item.middle-earth.nurgon_brickwork": "Maçonnerie en Núrgon", + "block.middle-earth.nurgon_brickwork_slab": "Dalle de maçonnerie en Núrgon", + "item.middle-earth.nurgon_brickwork_slab": "Dalle de maçonnerie en Núrgon", + "block.middle-earth.nurgon_brickwork_stairs": "Escalier en maçonnerie de Núrgon", + "item.middle-earth.nurgon_brickwork_stairs": "Escalier en maçonnerie de Núrgon", + "block.middle-earth.nurgon_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Núrgon", + "item.middle-earth.nurgon_brickwork_vertical_slab": "Dalle verticale de maçonnerie en Núrgon", + "block.middle-earth.nurgon_brickwork_wall": "Muret en maçonnerie de Núrgon", + "item.middle-earth.nurgon_brickwork_wall": "Muret en maçonnerie de Núrgon", + "block.middle-earth.pumice_brickwork": "Maçonnerie en pierre ponce", + "item.middle-earth.pumice_brickwork": "Maçonnerie en pierre ponce", + "block.middle-earth.pumice_brickwork_slab": "Dalle de maçonnerie en pierre ponce", + "item.middle-earth.pumice_brickwork_slab": "Dalle de maçonnerie en pierre ponce", + "block.middle-earth.pumice_brickwork_stairs": "Escalier en maçonnerie de pierre ponce", + "item.middle-earth.pumice_brickwork_stairs": "Escalier en maçonnerie de pierre ponce", + "block.middle-earth.pumice_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierre ponce", + "item.middle-earth.pumice_brickwork_vertical_slab": "Dalle verticale de maçonnerie en pierre ponce", + "block.middle-earth.pumice_brickwork_wall": "Muret en maçonnerie de pierre ponce", + "item.middle-earth.pumice_brickwork_wall": "Muret en maçonnerie de pierre ponce", + "block.middle-earth.basalt_slab": "Dalle en basalte", + "item.middle-earth.basalt_slab": "Dalle en basalte", + "block.middle-earth.basalt_stairs": "Escalier en basalte", + "item.middle-earth.basalt_stairs": "Escalier en basalte", + "block.middle-earth.basalt_vertical_slab": "Dalle verticale en basalte", + "item.middle-earth.basalt_vertical_slab": "Dalle verticale en basalte", + "block.middle-earth.basalt_wall": "Muret en basalte", + "item.middle-earth.basalt_wall": "Muret en basalte", + "block.middle-earth.gabbro_coal_ore": "Minerai de charbon de Gabbro", + "item.middle-earth.gabbro_coal_ore": "Minerai de charbon de Gabbro", + "block.middle-earth.gabbro_copper_ore": "Minerai de cuivre de Gabbro", + "item.middle-earth.gabbro_copper_ore": "Minerai de cuivre de Gabbro", + "block.middle-earth.gabbro_tin_ore": "Minerai d'étain de Gabbro", + "item.middle-earth.gabbro_tin_ore": "Minerai d'étain de Gabbro", + "block.middle-earth.nurgon_emerald_ore": "Minerai d'émeraude de Núrgon", + "item.middle-earth.nurgon_emerald_ore": "Minerai d'émeraude de Núrgon", + "block.middle-earth.nurgon_ruby_ore": "Minerai de rubis de Núrgon", + "item.middle-earth.nurgon_ruby_ore": "Minerai de rubis de Núrgon", + "block.middle-earth.nurgon_sapphire_ore": "Minerai de saphir de Núrgon", + "item.middle-earth.nurgon_sapphire_ore": "Minerai de saphir de Núrgon", + "block.middle-earth.medgon_adamant_ore": "Minerai d'adamant de Medgon", + "item.middle-earth.medgon_adamant_ore": "Minerai d'adamant de Medgon", + "block.middle-earth.medgon_emerald_ore": "Minerai d'émeraude de Medgon", + "item.middle-earth.medgon_emerald_ore": "Minerai d'émeraude de Medgon", + "block.middle-earth.medgon_ruby_ore": "Minerai de rubis de Medgon", + "item.middle-earth.medgon_ruby_ore": "Minerai de rubis de Medgon", + "block.middle-earth.medgon_sapphire_ore": "Minerai de saphir de Medgon", + "item.middle-earth.medgon_sapphire_ore": "Minerai de saphir de Medgon", + "biome.middle-earth.izheraban_cave": "Caverne d'Izhêr'Aban", + "item.middle-earth.medgon_spike": "Pointe en Medgon", + "block.middle-earth.ashenstone": "Roche cendrée", + "item.middle-earth.ashenstone": "Roche cendrée", + "block.middle-earth.ashenstone_slab": "Dalle cendrée", + "item.middle-earth.ashenstone_slab": "Dalle cendrée", + "block.middle-earth.ashenstone_stairs": "Escalier cendré", + "item.middle-earth.ashenstone_stairs": "Escalier cendré", + "block.middle-earth.ashenstone_vertical_slab": "Dalle verticale cendrée", + "item.middle-earth.ashenstone_vertical_slab": "Dalle verticale cendrée", + "block.middle-earth.ashenstone_wall": "Muret cendré", + "item.middle-earth.ashenstone_wall": "Muret cendré", + "block.middle-earth.cobbled_ashenstone": "Pierre cendrée", + "item.middle-earth.cobbled_ashenstone": "Pierre cendrée", + "block.middle-earth.cobbled_ashenstone_slab": "Dalle de pierre cendrée", + "item.middle-earth.cobbled_ashenstone_slab": "Dalle de pierre cendrée", + "block.middle-earth.cobbled_ashenstone_stairs": "Escalier en pierre cendrée", + "item.middle-earth.cobbled_ashenstone_stairs": "Escalier en pierre cendrée", + "block.middle-earth.cobbled_ashenstone_vertical_slab": "Dalle verticale de pierre cendrée", + "item.middle-earth.cobbled_ashenstone_vertical_slab": "Dalle verticale de pierre cendrée", + "block.middle-earth.cobbled_ashenstone_wall": "Muret en pierre cendrée", + "item.middle-earth.cobbled_ashenstone_wall": "Muret en pierre cendrée", + "block.middle-earth.smooth_ashenstone": "Roche cendrée lisse", + "item.middle-earth.smooth_ashenstone": "Roche cendrée lisse", + "block.middle-earth.smooth_ashenstone_slab": "Dalle en roche cendrée lisse", + "item.middle-earth.smooth_ashenstone_slab": "Dalle en roche cendrée lisse", + "block.middle-earth.smooth_ashenstone_stairs": "Escalier en roche cendrée lisse", + "item.middle-earth.smooth_ashenstone_stairs": "Escalier en roche cendrée lisse", + "block.middle-earth.smooth_ashenstone_vertical_slab": "Dalle verticale en roche cendrée lisse", + "item.middle-earth.smooth_ashenstone_vertical_slab": "Dalle verticale en roche cendrée lisse", + "block.middle-earth.smooth_ashenstone_wall": "Muret en roche cendrée lisse", + "item.middle-earth.smooth_ashenstone_wall": "Muret en roche cendrée lisse", + "block.middle-earth.old_ashenstone": "Vieille roche cendrée", + "item.middle-earth.old_ashenstone": "Vieille roche cendrée", + "block.middle-earth.old_ashenstone_slab": "Dalle de vieille roche cendrée", + "item.middle-earth.old_ashenstone_slab": "Dalle de vieille roche cendrée", + "block.middle-earth.old_ashenstone_stairs": "Escalier en vieille roche cendrée", + "item.middle-earth.old_ashenstone_stairs": "Escalier en vieille roche cendrée", + "block.middle-earth.old_ashenstone_vertical_slab": "Dalle verticale de vieille roche cendrée", + "item.middle-earth.old_ashenstone_vertical_slab": "Dalle verticale de vieille roche cendrée", + "block.middle-earth.old_ashenstone_wall": "Muret en vieille roche cendrée", + "item.middle-earth.old_ashenstone_wall": "Muret en vieille roche cendrée", + "block.middle-earth.ashenstone_pillar": "Pilier cendré", + "item.middle-earth.ashenstone_pillar": "Pilier cendré", + "block.middle-earth.ashenstone_pillar_vertical_slab": "Dalle verticale de pilier cendré", + "item.middle-earth.ashenstone_pillar_vertical_slab": "Dalle verticale de pilier cendré", + "block.middle-earth.ashenstone_pillar_wall": "Muret de pilier cendré", + "item.middle-earth.ashenstone_pillar_wall": "Muret de pilier cendré", + "block.middle-earth.cracked_ashenstone_pillar": "Pilier cendré craquelé", + "item.middle-earth.cracked_ashenstone_pillar": "Pilier cendré craquelé", + "block.middle-earth.cracked_ashenstone_pillar_vertical_slab": "Dalle verticale de pilier cendré craquelé", + "item.middle-earth.cracked_ashenstone_pillar_vertical_slab": "Dalle verticale de pilier cendré craquelé", + "block.middle-earth.cracked_ashenstone_pillar_wall": "Muret de pilier cendré craquelé", + "item.middle-earth.cracked_ashenstone_pillar_wall": "Muret de pilier cendré craquelé", + "block.middle-earth.ashenstone_bricks": "Briques cendrées", + "item.middle-earth.ashenstone_bricks": "Briques cendrées", + "block.middle-earth.ashenstone_brick_slab": "Brique cendrée", + "item.middle-earth.ashenstone_brick_slab": "Brique cendrée", + "block.middle-earth.ashenstone_brick_stairs": "Escalier de brique cendrée", + "item.middle-earth.ashenstone_brick_stairs": "Escalier de brique cendrée", + "block.middle-earth.ashenstone_brick_vertical_slab": "Dalle verticale de brique cendrée", + "item.middle-earth.ashenstone_brick_vertical_slab": "Dalle verticale de brique cendrée", + "block.middle-earth.ashenstone_brick_wall": "Muret de brique cendrée", + "item.middle-earth.ashenstone_brick_wall": "Muret de brique cendrée", + "block.middle-earth.cracked_ashenstone_bricks": "Briques cendrées craquelées", + "item.middle-earth.cracked_ashenstone_bricks": "Briques cendrées craquelées", + "block.middle-earth.cracked_ashenstone_brick_slab": "Brique cendrée craquelée", + "item.middle-earth.cracked_ashenstone_brick_slab": "Brique cendrée craquelée", + "block.middle-earth.cracked_ashenstone_brick_stairs": "Escalier de brique cendrée craquelée", + "item.middle-earth.cracked_ashenstone_brick_stairs": "Escalier de brique cendrée craquelée", + "block.middle-earth.cracked_ashenstone_brick_vertical_slab": "Dalle verticale de brique cendrée craquelée", + "item.middle-earth.cracked_ashenstone_brick_vertical_slab": "Dalle verticale de brique cendrée craquelée", + "block.middle-earth.cracked_ashenstone_brick_wall": "Muret de brique cendrée craquelée", + "item.middle-earth.cracked_ashenstone_brick_wall": "Muret de brique cendrée craquelée", + "block.middle-earth.chiseled_ashenstone_bricks": "Briques cendrées sculptées", + "item.middle-earth.chiseled_ashenstone_bricks": "Briques cendrées sculptées", + "block.middle-earth.chiseled_ashenstone_bricks_vertical_slab": "Dalle verticale de briques cendrées sculptées", + "item.middle-earth.chiseled_ashenstone_bricks_vertical_slab": "Dalle verticale de briques cendrées sculptées", + "block.middle-earth.chiseled_ashenstone_bricks_wall": "Muret de briques cendrées sculptées", + "item.middle-earth.chiseled_ashenstone_bricks_wall": "Muret de briques cendrées sculptées", + "block.middle-earth.ashenstone_tiles": "Pierre cendrée carrelée", + "item.middle-earth.ashenstone_tiles": "Pierre cendrée carrelée", + "block.middle-earth.ashenstone_tile_slab": "Tuile cendrée", + "item.middle-earth.ashenstone_tile_slab": "Tuile cendrée", + "block.middle-earth.ashenstone_tile_stairs": "Escalier de tuile cendrée", + "item.middle-earth.ashenstone_tile_stairs": "Escalier de tuile cendrée", + "block.middle-earth.ashenstone_tile_vertical_slab": "Dalle verticale de tuile cendrée", + "item.middle-earth.ashenstone_tile_vertical_slab": "Dalle verticale de tuile cendrée", + "block.middle-earth.ashenstone_tile_wall": "Muret de tuile cendrée", + "item.middle-earth.ashenstone_tile_wall": "Muret de tuile cendrée", + "block.middle-earth.cracked_ashenstone_tiles": "Pierre cendrée carrelée craquelée", + "item.middle-earth.cracked_ashenstone_tiles": "Pierre cendrée carrelée craquelée", + "block.middle-earth.cracked_ashenstone_tile_slab": "Tuile cendrée craquelée", + "item.middle-earth.cracked_ashenstone_tile_slab": "Tuile cendrée craquelée", + "block.middle-earth.cracked_ashenstone_tile_stairs": "Escalier de tuile cendrée craquelée", + "item.middle-earth.cracked_ashenstone_tile_stairs": "Escalier de tuile cendrée craquelée", + "block.middle-earth.cracked_ashenstone_tile_vertical_slab": "Dalle verticale de tuile cendrée craquelée", + "item.middle-earth.cracked_ashenstone_tile_vertical_slab": "Dalle verticale de tuile cendrée craquelée", + "block.middle-earth.cracked_ashenstone_tile_wall": "Muret de tuile cendrée craquelée", + "item.middle-earth.cracked_ashenstone_tile_wall": "Muret de tuile cendrée craquelée", + "block.middle-earth.chiseled_ashenstone_tiles": "Pierre cendrée carrelée sculptée", + "item.middle-earth.chiseled_ashenstone_tiles": "Pierre cendrée carrelée sculptée", + "block.middle-earth.chiseled_ashenstone_tiles_vertical_slab": "Dalle verticale de pierre cendrée carrelée sculptée", + "item.middle-earth.chiseled_ashenstone_tiles_vertical_slab": "Dalle verticale de pierre cendrée carrelée sculptée", + "block.middle-earth.chiseled_ashenstone_tiles_wall": "Muret de pierre cendrée carrelée sculptée", + "item.middle-earth.chiseled_ashenstone_tiles_wall": "Muret de pierre cendrée carrelée sculptée", + "block.middle-earth.chiseled_ashenstone": "Roche cendrée sculptée", + "item.middle-earth.chiseled_ashenstone": "Roche cendrée sculptée", + "block.middle-earth.chiseled_ashenstone_vertical_slab": "Dalle verticale en roche cendrée sculptée", + "item.middle-earth.chiseled_ashenstone_vertical_slab": "Dalle verticale en roche cendrée sculptée", + "block.middle-earth.chiseled_ashenstone_wall": "Muret en roche cendrée sculptée", + "item.middle-earth.chiseled_ashenstone_wall": "Muret en roche cendrée sculptée", + "block.middle-earth.polished_ashenstone": "Roche cendrée polie", + "item.middle-earth.polished_ashenstone": "Roche cendrée polie", + "block.middle-earth.polished_ashenstone_slab": "Dalle en roche cendrée polie", + "item.middle-earth.polished_ashenstone_slab": "Dalle en roche cendrée polie", + "block.middle-earth.polished_ashenstone_stairs": "Escalier en roche cendrée polie", + "item.middle-earth.polished_ashenstone_stairs": "Escalier en roche cendrée polie", + "block.middle-earth.polished_ashenstone_vertical_slab": "Dalle verticale en roche cendrée polie", + "item.middle-earth.polished_ashenstone_vertical_slab": "Dalle verticale en roche cendrée polie", + "block.middle-earth.polished_ashenstone_wall": "Muret en roche cendrée polie", + "item.middle-earth.polished_ashenstone_wall": "Muret en roche cendrée polie", + "block.middle-earth.cracked_polished_ashenstone": "Roche cendrée polie craquelée", + "item.middle-earth.cracked_polished_ashenstone": "Roche cendrée polie craquelée", + "block.middle-earth.cracked_polished_ashenstone_slab": "Dalle en roche cendrée polie craquelée", + "item.middle-earth.cracked_polished_ashenstone_slab": "Dalle en roche cendrée polie craquelée", + "block.middle-earth.cracked_polished_ashenstone_stairs": "Escalier en roche cendrée polie craquelée", + "item.middle-earth.cracked_polished_ashenstone_stairs": "Escalier en roche cendrée polie craquelée", + "block.middle-earth.cracked_polished_ashenstone_vertical_slab": "Dalle verticale en roche cendrée polie craquelée", + "item.middle-earth.cracked_polished_ashenstone_vertical_slab": "Dalle verticale en roche cendrée polie craquelée", + "block.middle-earth.cracked_polished_ashenstone_wall": "Muret en roche cendrée polie craquelée", + "item.middle-earth.cracked_polished_ashenstone_wall": "Muret en roche cendrée polie craquelée", + "block.middle-earth.chiseled_polished_ashenstone": "Roche cendrée polie sculptée", + "item.middle-earth.chiseled_polished_ashenstone": "Roche cendrée polie sculptée", + "block.middle-earth.chiseled_polished_ashenstone_vertical_slab": "Dalle verticale en roche cendrée polie sculptée", + "item.middle-earth.chiseled_polished_ashenstone_vertical_slab": "Dalle verticale en roche cendrée polie sculptée", + "block.middle-earth.chiseled_polished_ashenstone_wall": "Muret en roche cendrée polie sculptée", + "item.middle-earth.chiseled_polished_ashenstone_wall": "Muret en roche cendrée polie sculptée", + "block.middle-earth.cracked_smooth_ashenstone": "Roche cendrée lisse craquelée", + "item.middle-earth.cracked_smooth_ashenstone": "Roche cendrée lisse craquelée", + "block.middle-earth.cracked_smooth_ashenstone_slab": "Dalle en roche cendrée lisse craquelée", + "item.middle-earth.cracked_smooth_ashenstone_slab": "Dalle en roche cendrée lisse craquelée", + "block.middle-earth.cracked_smooth_ashenstone_stairs": "Escalier en roche cendrée lisse craquelée", + "item.middle-earth.cracked_smooth_ashenstone_stairs": "Escalier en roche cendrée lisse craquelée", + "block.middle-earth.cracked_smooth_ashenstone_vertical_slab": "Dalle verticale en roche cendrée lisse craquelée", + "item.middle-earth.cracked_smooth_ashenstone_vertical_slab": "Dalle verticale en roche cendrée lisse craquelée", + "block.middle-earth.cracked_smooth_ashenstone_wall": "Muret en roche cendrée lisse craquelée", + "item.middle-earth.cracked_smooth_ashenstone_wall": "Muret en roche cendrée lisse craquelée", + "block.middle-earth.chiseled_smooth_ashenstone": "Roche cendrée lisse sculptée", + "item.middle-earth.chiseled_smooth_ashenstone": "Roche cendrée lisse sculptée", + "block.middle-earth.chiseled_smooth_ashenstone_vertical_slab": "Dalle verticale en roche cendrée lisse sculptée", + "item.middle-earth.chiseled_smooth_ashenstone_vertical_slab": "Dalle verticale en roche cendrée lisse sculptée", + "block.middle-earth.chiseled_smooth_ashenstone_wall": "Muret en roche cendrée lisse sculptée", + "item.middle-earth.chiseled_smooth_ashenstone_wall": "Muret en roche cendrée lisse sculptée", + "block.middle-earth.ashenstone_brickwork": "Maçonnerie cendrée", + "item.middle-earth.ashenstone_brickwork": "Maçonnerie cendrée", + "block.middle-earth.ashenstone_brickwork_slab": "Dalle de maçonnerie cendrée", + "item.middle-earth.ashenstone_brickwork_slab": "Dalle de maçonnerie cendrée", + "block.middle-earth.ashenstone_brickwork_stairs": "Escalier en maçonnerie cendrée", + "item.middle-earth.ashenstone_brickwork_stairs": "Escalier en maçonnerie cendrée", + "block.middle-earth.ashenstone_brickwork_vertical_slab": "Dalle verticale de maçonnerie cendrée", + "item.middle-earth.ashenstone_brickwork_vertical_slab": "Dalle verticale de maçonnerie cendrée", + "block.middle-earth.ashenstone_brickwork_wall": "Muret en maçonnerie cendrée", + "item.middle-earth.ashenstone_brickwork_wall": "Muret en maçonnerie cendrée", + "block.middle-earth.ashenstone_button": "Bouton en pierre cendrée", + "item.middle-earth.ashenstone_button": "Bouton en pierre cendrée", + "block.middle-earth.ashenstone_pressure_plate": "Plaque de pression en pierre cendrée", + "item.middle-earth.ashenstone_pressure_plate": "Plaque de pression en pierre cendrée", + "block.middle-earth.ashenstone_trapdoor": "Trappe en pierre cendrée", + "item.middle-earth.ashenstone_trapdoor": "Trappe en pierre cendrée", + "block.middle-earth.ashenstone_rocks": "Éboulis de pierre cendrée", + "item.middle-earth.ashenstone_rocks": "Éboulis de pierre cendrée", + "block.middle-earth.ashenstone_stool": "Tabouret en pierre cendrée", + "item.middle-earth.ashenstone_stool": "Tabouret en pierre cendrée", + "block.middle-earth.ashenstone_table": "Table en pierre cendrée", + "item.middle-earth.ashenstone_table": "Table en pierre cendrée", + "block.middle-earth.ashenstone_chair": "Chaise en pierre cendrée", + "item.middle-earth.ashenstone_chair": "Chaise en pierre cendrée", + "block.middle-earth.ashenstone_carved_window": "Fenêtre sculptée en pierre cendrée", + "item.middle-earth.ashenstone_carved_window": "Fenêtre sculptée en pierre cendrée", + "block.middle-earth.ashenstone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre cendrée", + "item.middle-earth.ashenstone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre cendrée", + "block.middle-earth.travertine": "Travertin", + "item.middle-earth.travertine": "Travertin", + "block.middle-earth.travertine_slab": "Dalle en travertin", + "item.middle-earth.travertine_slab": "Dalle en travertin", + "block.middle-earth.travertine_stairs": "Escalier en travertin", + "item.middle-earth.travertine_stairs": "Escalier en travertin", + "block.middle-earth.travertine_vertical_slab": "Dalle verticale en travertin", + "item.middle-earth.travertine_vertical_slab": "Dalle verticale en travertin", + "block.middle-earth.travertine_wall": "Muret en travertin", + "item.middle-earth.travertine_wall": "Muret en travertin", + "block.middle-earth.old_travertine": "Vieux travertin", + "item.middle-earth.old_travertine": "Vieux travertin", + "block.middle-earth.old_travertine_slab": "Dalle de vieux travertin", + "item.middle-earth.old_travertine_slab": "Dalle de vieux travertin", + "block.middle-earth.old_travertine_stairs": "Escalier en vieux travertin", + "item.middle-earth.old_travertine_stairs": "Escalier en vieux travertin", + "block.middle-earth.old_travertine_vertical_slab": "Dalle verticale de vieux travertin", + "item.middle-earth.old_travertine_vertical_slab": "Dalle verticale de vieux travertin", + "block.middle-earth.old_travertine_wall": "Muret en vieux travertin", + "item.middle-earth.old_travertine_wall": "Muret en vieux travertin", + "block.middle-earth.polished_travertine": "Travertin poli", + "item.middle-earth.polished_travertine": "Travertin poli", + "block.middle-earth.polished_travertine_slab": "Dalle en travertin poli", + "item.middle-earth.polished_travertine_slab": "Dalle en travertin poli", + "block.middle-earth.polished_travertine_stairs": "Escalier en travertin poli", + "item.middle-earth.polished_travertine_stairs": "Escalier en travertin poli", + "block.middle-earth.polished_travertine_vertical_slab": "Dalle verticale en travertin poli", + "item.middle-earth.polished_travertine_vertical_slab": "Dalle verticale en travertin poli", + "block.middle-earth.polished_travertine_wall": "Muret en travertin poli", + "item.middle-earth.polished_travertine_wall": "Muret en travertin poli", + "block.middle-earth.smooth_travertine": "Travertin lisse", + "item.middle-earth.smooth_travertine": "Travertin lisse", + "block.middle-earth.smooth_travertine_slab": "Dalle en travertin lisse", + "item.middle-earth.smooth_travertine_slab": "Dalle en travertin lisse", + "block.middle-earth.smooth_travertine_stairs": "Escalier en travertin lisse", + "item.middle-earth.smooth_travertine_stairs": "Escalier en travertin lisse", + "block.middle-earth.smooth_travertine_vertical_slab": "Dalle verticale en travertin lisse", + "item.middle-earth.smooth_travertine_vertical_slab": "Dalle verticale en travertin lisse", + "block.middle-earth.smooth_travertine_wall": "Muret en travertin lisse", + "item.middle-earth.smooth_travertine_wall": "Muret en travertin lisse", + "block.middle-earth.travertine_bricks": "Briques en travertin", + "item.middle-earth.travertine_bricks": "Briques en travertin", + "block.middle-earth.travertine_brick_slab": "Brique en travertin", + "item.middle-earth.travertine_brick_slab": "Brique en travertin", + "block.middle-earth.travertine_brick_stairs": "Escalier de brique en travertin", + "item.middle-earth.travertine_brick_stairs": "Escalier de brique en travertin", + "block.middle-earth.travertine_brick_vertical_slab": "Dalle verticale de brique en travertin", + "item.middle-earth.travertine_brick_vertical_slab": "Dalle verticale de brique en travertin", + "block.middle-earth.travertine_brick_wall": "Muret de brique en travertin", + "item.middle-earth.travertine_brick_wall": "Muret de brique en travertin", + "block.middle-earth.travertine_button": "Bouton en travertin", + "item.middle-earth.travertine_button": "Bouton en travertin", + "block.middle-earth.travertine_chair": "Chaise en travertin", + "item.middle-earth.travertine_chair": "Chaise en travertin", + "block.middle-earth.travertine_coal_ore": "Minerai de charbon de travertin", + "item.middle-earth.travertine_coal_ore": "Minerai de charbon de travertin", + "block.middle-earth.travertine_copper_ore": "Minerai de cuivre de travertin", + "item.middle-earth.travertine_copper_ore": "Minerai de cuivre de travertin", + "block.middle-earth.travertine_pressure_plate": "Plaque de pression en travertin", + "item.middle-earth.travertine_pressure_plate": "Plaque de pression en travertin", + "block.middle-earth.travertine_rocks": "Éboulis de travertin", + "item.middle-earth.travertine_rocks": "Éboulis de travertin", + "block.middle-earth.travertine_stool": "Tabouret en travertin", + "item.middle-earth.travertine_stool": "Tabouret en travertin", + "block.middle-earth.travertine_table": "Table en travertin", + "item.middle-earth.travertine_table": "Table en travertin", + "block.middle-earth.travertine_tin_ore": "Minerai d'étain de travertin", + "item.middle-earth.travertine_tin_ore": "Minerai d'étain de travertin", + "block.middle-earth.travertine_trapdoor": "Trappe en travertin", + "item.middle-earth.travertine_trapdoor": "Trappe en travertin", + "block.middle-earth.chalk": "Craie", + "item.middle-earth.chalk": "Craie", + "block.middle-earth.chalk_slab": "Dalle en craie", + "item.middle-earth.chalk_slab": "Dalle en craie", + "block.middle-earth.chalk_stairs": "Escalier en craie", + "item.middle-earth.chalk_stairs": "Escalier en craie", + "block.middle-earth.chalk_vertical_slab": "Dalle verticale en craie", + "item.middle-earth.chalk_vertical_slab": "Dalle verticale en craie", + "block.middle-earth.chalk_wall": "Muret en craie", + "item.middle-earth.chalk_wall": "Muret en craie", + "block.middle-earth.old_chalk": "Vieille craie", + "item.middle-earth.old_chalk": "Vieille craie", + "block.middle-earth.old_chalk_slab": "Dalle de vieille craie", + "item.middle-earth.old_chalk_slab": "Dalle de vieille craie", + "block.middle-earth.old_chalk_stairs": "Escalier en vieille craie", + "item.middle-earth.old_chalk_stairs": "Escalier en vieille craie", + "block.middle-earth.old_chalk_vertical_slab": "Dalle verticale de vieille craie", + "item.middle-earth.old_chalk_vertical_slab": "Dalle verticale de vieille craie", + "block.middle-earth.old_chalk_wall": "Muret en vieille craie", + "item.middle-earth.old_chalk_wall": "Muret en vieille craie", + "block.middle-earth.chalk_bricks": "Briques en craie", + "item.middle-earth.chalk_bricks": "Briques en craie", + "block.middle-earth.chalk_brick_slab": "Brique en craie", + "item.middle-earth.chalk_brick_slab": "Brique en craie", + "block.middle-earth.chalk_brick_stairs": "Escalier de brique en craie", + "item.middle-earth.chalk_brick_stairs": "Escalier de brique en craie", + "block.middle-earth.chalk_brick_vertical_slab": "Dalle verticale de brique en craie", + "item.middle-earth.chalk_brick_vertical_slab": "Dalle verticale de brique en craie", + "block.middle-earth.chalk_brick_wall": "Muret de brique en craie", + "item.middle-earth.chalk_brick_wall": "Muret de brique en craie", + "block.middle-earth.chalk_button": "Bouton en craie", + "item.middle-earth.chalk_button": "Bouton en craie", + "block.middle-earth.chalk_chair": "Chaise en craie", + "item.middle-earth.chalk_chair": "Chaise en craie", + "block.middle-earth.chalk_coal_ore": "Minerai de charbon de craie", + "item.middle-earth.chalk_coal_ore": "Minerai de charbon de craie", + "block.middle-earth.chalk_copper_ore": "Minerai de cuivre de craie", + "item.middle-earth.chalk_copper_ore": "Minerai de cuivre de craie", + "block.middle-earth.chalk_pressure_plate": "Plaque de pression en craie", + "item.middle-earth.chalk_pressure_plate": "Plaque de pression en craie", + "block.middle-earth.chalk_rocks": "Éboulis de craie", + "item.middle-earth.chalk_rocks": "Éboulis de craie", + "block.middle-earth.chalk_stool": "Tabouret en craie", + "item.middle-earth.chalk_stool": "Tabouret en craie", + "block.middle-earth.chalk_table": "Table en craie", + "item.middle-earth.chalk_table": "Table en craie", + "block.middle-earth.chalk_tin_ore": "Minerai d'étain de craie", + "item.middle-earth.chalk_tin_ore": "Minerai d'étain de craie", + "block.middle-earth.chalk_trapdoor": "Trappe en craie", + "item.middle-earth.chalk_trapdoor": "Trappe en craie", + "block.middle-earth.chalksoil": "Terre crayeuse", + "item.middle-earth.chalksoil": "Terre crayeuse", + "block.middle-earth.chalksoil_slab": "Dalle de terre crayeuse", + "item.middle-earth.chalksoil_slab": "Dalle de terre crayeuse", + "block.middle-earth.chalksoil_stairs": "Escalier de terre crayeuse", + "item.middle-earth.chalksoil_stairs": "Escalier de terre crayeuse", + "block.middle-earth.chalksoil_farmland": "Terre crayeuse labourée", + "item.middle-earth.chalksoil_farmland": "Terre crayeuse labourée", + "block.middle-earth.chalksoil_grass_block": "Bloc d'herbe crayeuse", + "item.middle-earth.chalksoil_grass_block": "Bloc d'herbe crayeuse", + "block.middle-earth.chalksoil_path": "Chemin de terre crayeuse", + "item.middle-earth.chalksoil_path": "Chemin de terre crayeuse", + "block.middle-earth.coarse_chalksoil": "Terre crayeuse stérile", + "item.middle-earth.coarse_chalksoil": "Terre crayeuse stérile", + "block.middle-earth.coarse_chalksoil_slab": "Dalle de terre crayeuse stérile", + "item.middle-earth.coarse_chalksoil_slab": "Dalle de terre crayeuse stérile", + "block.middle-earth.coarse_chalksoil_stairs": "Escalier de terre crayeuse stérile", + "item.middle-earth.coarse_chalksoil_stairs": "Escalier de terre crayeuse stérile", + "block.middle-earth.grassy_chalksoil": "Terre crayeuse herbeuse", + "item.middle-earth.grassy_chalksoil": "Terre crayeuse herbeuse", + "block.middle-earth.grassy_chalksoil_slab": "Dalle de terre crayeuse herbeuse", + "item.middle-earth.grassy_chalksoil_slab": "Dalle de terre crayeuse herbeuse", + "block.middle-earth.grassy_chalksoil_stairs": "Escalier de terre crayeuse herbeuse", + "item.middle-earth.grassy_chalksoil_stairs": "Escalier de terre crayeuse herbeuse", + "block.middle-earth.white_spruce_leaves": "Feuilles d'épicéa blanc", + "item.middle-earth.white_spruce_leaves": "Feuilles d'épicéa blanc", + "block.middle-earth.white_spruce_log": "Bûche d'épicéa blanc", + "item.middle-earth.white_spruce_log": "Bûche d'épicéa blanc", + "block.middle-earth.white_spruce_wood": "Bois d'épicéa blanc", + "item.middle-earth.white_spruce_wood": "Bois d'épicéa blanc", + "block.middle-earth.white_spruce_wood_fence": "Barrière en bois d'épicéa blanc", + "item.middle-earth.white_spruce_wood_fence": "Barrière en bois d'épicéa blanc", + "block.middle-earth.white_spruce_wood_wall": "Muret en bois d'épicéa blanc", + "item.middle-earth.white_spruce_wood_wall": "Muret en bois d'épicéa blanc", + "block.middle-earth.stripped_white_spruce_log": "Bûche d'épicéa blanc écorcée", + "item.middle-earth.stripped_white_spruce_log": "Bûche d'épicéa blanc écorcée", + "block.middle-earth.stripped_white_spruce_wood": "Bois d'épicéa blanc écorcé", + "item.middle-earth.stripped_white_spruce_wood": "Bois d'épicéa blanc écorcé", + "block.middle-earth.stripped_white_spruce_wood_fence": "Barrière en bois d'épicéa blanc écorcé", + "item.middle-earth.stripped_white_spruce_wood_fence": "Barrière en bois d'épicéa blanc écorcé", + "block.middle-earth.stripped_white_spruce_wood_slab": "Dalle en bois d'épicéa blanc écorcé", + "item.middle-earth.stripped_white_spruce_wood_slab": "Dalle en bois d'épicéa blanc écorcé", + "block.middle-earth.stripped_white_spruce_wood_stairs": "Escaliers en bois d'épicéa blanc écorcé", + "item.middle-earth.stripped_white_spruce_wood_stairs": "Escaliers en bois d'épicéa blanc écorcé", + "block.middle-earth.stripped_white_spruce_wood_vertical_slab": "Dalle verticale en bois d'épicéa blanc écorcé", + "item.middle-earth.stripped_white_spruce_wood_vertical_slab": "Dalle verticale en bois d'épicéa blanc écorcé", + "block.middle-earth.stripped_white_spruce_wood_wall": "Muret en bois d'épicéa blanc écorcé", + "item.middle-earth.stripped_white_spruce_wood_wall": "Muret en bois d'épicéa blanc écorcé", + "block.middle-earth.white_spruce_planks": "Planches d'épicéa blanc", + "item.middle-earth.white_spruce_planks": "Planches d'épicéa blanc", + "block.middle-earth.white_spruce_slab": "Dalle en épicéa blanc", + "item.middle-earth.white_spruce_slab": "Dalle en épicéa blanc", + "block.middle-earth.white_spruce_vertical_slab": "Dalle verticale en épicéa blanc", + "item.middle-earth.white_spruce_vertical_slab": "Dalle verticale en épicéa blanc", + "block.middle-earth.white_spruce_stairs": "Escaliers en épicéa blanc", + "item.middle-earth.white_spruce_stairs": "Escaliers en épicéa blanc", + "block.middle-earth.white_spruce_fence": "Barrière en épicéa blanc", + "item.middle-earth.white_spruce_fence": "Barrière en épicéa blanc", + "block.middle-earth.white_spruce_fence_gate": "Portillon en épicéa blanc", + "item.middle-earth.white_spruce_fence_gate": "Portillon en épicéa blanc", + "block.middle-earth.white_spruce_sapling": "Pousse d'épicéa blanc", + "item.middle-earth.white_spruce_sapling": "Pousse d'épicéa blanc", + "block.middle-earth.white_spruce_wood_slab": "Dalle en bois d'épicéa blanc", + "item.middle-earth.white_spruce_wood_slab": "Dalle en bois d'épicéa blanc", + "block.middle-earth.white_spruce_wood_stairs": "Escaliers en bois d'épicéa blanc", + "item.middle-earth.white_spruce_wood_stairs": "Escaliers en bois d'épicéa blanc", + "block.middle-earth.white_spruce_wood_vertical_slab": "Dalle verticale en bois d'épicéa blanc", + "item.middle-earth.white_spruce_wood_vertical_slab": "Dalle verticale en bois d'épicéa blanc", + "block.middle-earth.white_spruce_shingles": "Bardeaux d'épicéa blanc", + "item.middle-earth.white_spruce_shingles": "Bardeaux d'épicéa blanc", + "block.middle-earth.white_spruce_shingles_slab": "Dalle de bardeaux d'épicéa blanc", + "item.middle-earth.white_spruce_shingles_slab": "Dalle de bardeaux d'épicéa blanc", + "block.middle-earth.white_spruce_shingles_stairs": "Escalier de bardeaux d'épicéa blanc", + "item.middle-earth.white_spruce_shingles_stairs": "Escalier de bardeaux d'épicéa blanc", + "block.middle-earth.white_spruce_shingles_vertical_slab": "Dalle verticale de bardeaux d'épicéa blanc", + "item.middle-earth.white_spruce_shingles_vertical_slab": "Dalle verticale de bardeaux d'épicéa blanc", + "block.middle-earth.white_spruce_shingles_wall": "Muret de bardeaux d'épicéa blanc", + "item.middle-earth.white_spruce_shingles_wall": "Muret de bardeaux d'épicéa blanc", + "block.middle-earth.white_spruce_roofing": "Toiture en épicéa blanc", + "item.middle-earth.white_spruce_roofing": "Toiture en épicéa blanc", + "block.middle-earth.white_spruce_roofing_slab": "Dalle de toiture en épicéa blanc", + "item.middle-earth.white_spruce_roofing_slab": "Dalle de toiture en épicéa blanc", + "block.middle-earth.white_spruce_roofing_stairs": "Escalier de toiture en épicéa blanc", + "item.middle-earth.white_spruce_roofing_stairs": "Escalier de toiture en épicéa blanc", + "block.middle-earth.white_spruce_roofing_vertical_slab": "Dalle verticale de toiture en épicéa blanc", + "item.middle-earth.white_spruce_roofing_vertical_slab": "Dalle verticale de toiture en épicéa blanc", + "block.middle-earth.white_spruce_roofing_wall": "Muret de toiture en épicéa blanc", + "item.middle-earth.white_spruce_roofing_wall": "Muret de toiture en épicéa blanc", + "block.middle-earth.fir_leaves": "Feuilles de sapin", + "item.middle-earth.fir_leaves": "Feuilles de sapin", + "block.middle-earth.fir_log": "Bûche de sapin", + "item.middle-earth.fir_log": "Bûche de sapin", + "block.middle-earth.fir_wood": "Bois de sapin", + "item.middle-earth.fir_wood": "Bois de sapin", + "block.middle-earth.fir_wood_fence": "Barrière en bois de sapin", + "item.middle-earth.fir_wood_fence": "Barrière en bois de sapin", + "block.middle-earth.fir_wood_wall": "Muret en bois de sapin", + "item.middle-earth.fir_wood_wall": "Muret en bois de sapin", + "block.middle-earth.fir_wood_slab": "Dalle en bois de sapin", + "item.middle-earth.fir_wood_slab": "Dalle en bois de sapin", + "block.middle-earth.fir_wood_stairs": "Escaliers en bois de sapin", + "item.middle-earth.fir_wood_stairs": "Escaliers en bois de sapin", + "block.middle-earth.fir_wood_vertical_slab": "Dalle verticale en bois de sapin", + "item.middle-earth.fir_wood_vertical_slab": "Dalle verticale en bois de sapin", + "block.middle-earth.fir_planks": "Planches de sapin", + "item.middle-earth.fir_planks": "Planches de sapin", + "block.middle-earth.fir_slab": "Dalle en sapin", + "item.middle-earth.fir_slab": "Dalle en sapin", + "block.middle-earth.fir_vertical_slab": "Dalle verticale en sapin", + "item.middle-earth.fir_vertical_slab": "Dalle verticale en sapin", + "block.middle-earth.fir_stairs": "Escaliers en sapin", + "item.middle-earth.fir_stairs": "Escaliers en sapin", + "block.middle-earth.fir_fence": "Barrière en sapin", + "item.middle-earth.fir_fence": "Barrière en sapin", + "block.middle-earth.fir_fence_gate": "Portillon en sapin", + "item.middle-earth.fir_fence_gate": "Portillon en sapin", + "block.middle-earth.fir_pressure_plate": "Plaque de pression en sapin", + "item.middle-earth.fir_pressure_plate": "Plaque de pression en sapin", + "block.middle-earth.fir_button": "Bouton en sapin", + "item.middle-earth.fir_button": "Bouton en sapin", + "block.middle-earth.fir_door": "Porte en sapin", + "item.middle-earth.fir_door": "Porte en sapin", + "block.middle-earth.fir_trapdoor": "Trappe en sapin", + "item.middle-earth.fir_trapdoor": "Trappe en sapin", + "block.middle-earth.fir_sapling": "Pousse de sapin", + "item.middle-earth.fir_sapling": "Pousse de sapin", + "block.middle-earth.fir_stool": "Tabouret en sapin", + "item.middle-earth.fir_stool": "Tabouret en sapin", + "block.middle-earth.fir_bench": "Banc en sapin", + "item.middle-earth.fir_bench": "Banc en sapin", + "block.middle-earth.fir_table": "Table en sapin", + "item.middle-earth.fir_table": "Table en sapin", + "block.middle-earth.fir_chair": "Chaise en sapin", + "item.middle-earth.fir_chair": "Chaise en sapin", + "block.middle-earth.fir_ladder": "Échelle en sapin", + "item.middle-earth.fir_ladder": "Échelle en sapin", + "block.middle-earth.fir_coffer": "Coffre en sapin", + "item.middle-earth.fir_coffer": "Coffre en sapin", + "block.middle-earth.fir_shingles": "Bardeaux de sapin", + "item.middle-earth.fir_shingles": "Bardeaux de sapin", + "block.middle-earth.fir_shingles_slab": "Dalle de bardeaux de sapin", + "item.middle-earth.fir_shingles_slab": "Dalle de bardeaux de sapin", + "block.middle-earth.fir_shingles_stairs": "Escalier de bardeaux de sapin", + "item.middle-earth.fir_shingles_stairs": "Escalier de bardeaux de sapin", + "block.middle-earth.fir_shingles_vertical_slab": "Dalle verticale de bardeaux de sapin", + "item.middle-earth.fir_shingles_vertical_slab": "Dalle verticale de bardeaux de sapin", + "block.middle-earth.fir_shingles_wall": "Muret de bardeaux de sapin", + "item.middle-earth.fir_shingles_wall": "Muret de bardeaux de sapin", + "block.middle-earth.fir_roofing": "Toiture en sapin", + "item.middle-earth.fir_roofing": "Toiture en sapin", + "block.middle-earth.fir_roofing_slab": "Dalle de toiture en sapin", + "item.middle-earth.fir_roofing_slab": "Dalle de toiture en sapin", + "block.middle-earth.fir_roofing_stairs": "Escalier de toiture en sapin", + "item.middle-earth.fir_roofing_stairs": "Escalier de toiture en sapin", + "block.middle-earth.fir_roofing_vertical_slab": "Dalle verticale de toiture en sapin", + "item.middle-earth.fir_roofing_vertical_slab": "Dalle verticale de toiture en sapin", + "block.middle-earth.fir_roofing_wall": "Muret de toiture en sapin", + "item.middle-earth.fir_roofing_wall": "Muret de toiture en sapin", + "block.middle-earth.aspen_leaves": "Feuilles de tremble", + "item.middle-earth.aspen_leaves": "Feuilles de tremble", + "block.middle-earth.aspen_log": "Bûche de tremble", + "item.middle-earth.aspen_log": "Bûche de tremble", + "block.middle-earth.aspen_wood": "Bois de tremble", + "item.middle-earth.aspen_wood": "Bois de tremble", + "block.middle-earth.aspen_wood_fence": "Barrière en bois de tremble", + "item.middle-earth.aspen_wood_fence": "Barrière en bois de tremble", + "block.middle-earth.aspen_wood_wall": "Muret en bois de tremble", + "item.middle-earth.aspen_wood_wall": "Muret en bois de tremble", + "block.middle-earth.aspen_wood_slab": "Dalle en bois de tremble", + "item.middle-earth.aspen_wood_slab": "Dalle en bois de tremble", + "block.middle-earth.aspen_wood_stairs": "Escaliers en bois de tremble", + "item.middle-earth.aspen_wood_stairs": "Escaliers en bois de tremble", + "block.middle-earth.aspen_wood_vertical_slab": "Dalle verticale en bois de tremble", + "item.middle-earth.aspen_wood_vertical_slab": "Dalle verticale en bois de tremble", + "block.middle-earth.stripped_aspen_log": "Bûche de tremble écorcée", + "item.middle-earth.stripped_aspen_log": "Bûche de tremble écorcée", + "block.middle-earth.stripped_aspen_wood": "Bois de tremble écorcé", + "item.middle-earth.stripped_aspen_wood": "Bois de tremble écorcé", + "block.middle-earth.stripped_aspen_wood_fence": "Barrière en bois de tremble écorcé", + "item.middle-earth.stripped_aspen_wood_fence": "Barrière en bois de tremble écorcé", + "block.middle-earth.stripped_aspen_wood_slab": "Dalle en bois de tremble écorcé", + "item.middle-earth.stripped_aspen_wood_slab": "Dalle en bois de tremble écorcé", + "block.middle-earth.stripped_aspen_wood_stairs": "Escaliers en bois de tremble écorcé", + "item.middle-earth.stripped_aspen_wood_stairs": "Escaliers en bois de tremble écorcé", + "block.middle-earth.stripped_aspen_wood_vertical_slab": "Dalle verticale en bois de tremble écorcé", + "item.middle-earth.stripped_aspen_wood_vertical_slab": "Dalle verticale en bois de tremble écorcé", + "block.middle-earth.stripped_aspen_wood_wall": "Muret en bois de tremble écorcé", + "item.middle-earth.stripped_aspen_wood_wall": "Muret en bois de tremble écorcé", + "block.middle-earth.aspen_planks": "Planches de tremble", + "item.middle-earth.aspen_planks": "Planches de tremble", + "block.middle-earth.aspen_slab": "Dalle en tremble", + "item.middle-earth.aspen_slab": "Dalle en tremble", + "block.middle-earth.aspen_vertical_slab": "Dalle verticale en tremble", + "item.middle-earth.aspen_vertical_slab": "Dalle verticale en tremble", + "block.middle-earth.aspen_stairs": "Escaliers en tremble", + "item.middle-earth.aspen_stairs": "Escaliers en tremble", + "block.middle-earth.aspen_fence": "Barrière en tremble", + "item.middle-earth.aspen_fence": "Barrière en tremble", + "block.middle-earth.aspen_fence_gate": "Portillon en tremble", + "item.middle-earth.aspen_fence_gate": "Portillon en tremble", + "block.middle-earth.aspen_pressure_plate": "Plaque de pression en tremble", + "item.middle-earth.aspen_pressure_plate": "Plaque de pression en tremble", + "block.middle-earth.aspen_button": "Bouton en tremble", + "item.middle-earth.aspen_button": "Bouton en tremble", + "block.middle-earth.aspen_door": "Porte en tremble", + "item.middle-earth.aspen_door": "Porte en tremble", + "block.middle-earth.aspen_trapdoor": "Trappe en tremble", + "item.middle-earth.aspen_trapdoor": "Trappe en tremble", + "block.middle-earth.aspen_sapling": "Pousse de tremble", + "item.middle-earth.aspen_sapling": "Pousse de tremble", + "block.middle-earth.aspen_shingles": "Bardeaux de tremble", + "item.middle-earth.aspen_shingles": "Bardeaux de tremble", + "block.middle-earth.aspen_shingles_slab": "Dalle de bardeaux de tremble", + "item.middle-earth.aspen_shingles_slab": "Dalle de bardeaux de tremble", + "block.middle-earth.aspen_shingles_stairs": "Escalier de bardeaux de tremble", + "item.middle-earth.aspen_shingles_stairs": "Escalier de bardeaux de tremble", + "block.middle-earth.aspen_shingles_vertical_slab": "Dalle verticale de bardeaux de tremble", + "item.middle-earth.aspen_shingles_vertical_slab": "Dalle verticale de bardeaux de tremble", + "block.middle-earth.aspen_shingles_wall": "Muret de bardeaux de tremble", + "item.middle-earth.aspen_shingles_wall": "Muret de bardeaux de tremble", + "block.middle-earth.aspen_roofing": "Toiture en tremble", + "item.middle-earth.aspen_roofing": "Toiture en tremble", + "block.middle-earth.aspen_roofing_slab": "Dalle de toiture en tremble", + "item.middle-earth.aspen_roofing_slab": "Dalle de toiture en tremble", + "block.middle-earth.aspen_roofing_stairs": "Escalier de toiture en tremble", + "item.middle-earth.aspen_roofing_stairs": "Escalier de toiture en tremble", + "block.middle-earth.aspen_roofing_vertical_slab": "Dalle verticale de toiture en tremble", + "item.middle-earth.aspen_roofing_vertical_slab": "Dalle verticale de toiture en tremble", + "block.middle-earth.aspen_roofing_wall": "Muret de toiture en tremble", + "item.middle-earth.aspen_roofing_wall": "Muret de toiture en tremble", + "block.middle-earth.deadwood_fence": "Barrière en bois mort", + "item.middle-earth.deadwood_fence": "Barrière en bois mort", + "block.middle-earth.deadwood_fence_gate": "Portillon en bois mort", + "item.middle-earth.deadwood_fence_gate": "Portillon en bois mort", + "block.middle-earth.deadwood_log": "Bûche de bois mort", + "item.middle-earth.deadwood_log": "Bûche de bois mort", + "block.middle-earth.deadwood_planks": "Planches de bois mort", + "item.middle-earth.deadwood_planks": "Planches de bois mort", + "block.middle-earth.deadwood_slab": "Dalle en bois mort", + "item.middle-earth.deadwood_slab": "Dalle en bois mort", + "block.middle-earth.deadwood_stairs": "Escaliers en bois mort", + "item.middle-earth.deadwood_stairs": "Escaliers en bois mort", + "block.middle-earth.deadwood_vertical_slab": "Dalle verticale en bois mort", + "item.middle-earth.deadwood_vertical_slab": "Dalle verticale en bois mort", + "block.middle-earth.deadwood_wood": "Bois mort", + "item.middle-earth.deadwood_wood": "Bois mort", + "block.middle-earth.deadwood_wood_fence": "Barrière en bois mort", + "item.middle-earth.deadwood_wood_fence": "Barrière en bois mort", + "block.middle-earth.deadwood_wood_slab": "Dalle en bois mort", + "item.middle-earth.deadwood_wood_slab": "Dalle en bois mort", + "block.middle-earth.deadwood_wood_stairs": "Escaliers en bois mort", + "item.middle-earth.deadwood_wood_stairs": "Escaliers en bois mort", + "block.middle-earth.deadwood_wood_vertical_slab": "Dalle verticale en bois mort", + "item.middle-earth.deadwood_wood_vertical_slab": "Dalle verticale en bois mort", + "block.middle-earth.deadwood_wood_wall": "Muret en bois mort", + "item.middle-earth.deadwood_wood_wall": "Muret en bois mort", + "block.middle-earth.stripped_deadwood_log": "Bûche de bois mort écorcée", + "item.middle-earth.stripped_deadwood_log": "Bûche de bois mort écorcée", + "block.middle-earth.stripped_deadwood_wood": "Bois mort écorcé", + "item.middle-earth.stripped_deadwood_wood": "Bois mort écorcé", + "block.middle-earth.stripped_deadwood_wood_fence": "Barrière en bois mort écorcé", + "item.middle-earth.stripped_deadwood_wood_fence": "Barrière en bois mort écorcé", + "block.middle-earth.stripped_deadwood_wood_slab": "Dalle en bois mort écorcé", + "item.middle-earth.stripped_deadwood_wood_slab": "Dalle en bois mort écorcé", + "block.middle-earth.stripped_deadwood_wood_stairs": "Escaliers en bois mort écorcé", + "item.middle-earth.stripped_deadwood_wood_stairs": "Escaliers en bois mort écorcé", + "block.middle-earth.stripped_deadwood_wood_vertical_slab": "Dalle verticale en bois mort écorcé", + "item.middle-earth.stripped_deadwood_wood_vertical_slab": "Dalle verticale en bois mort écorcé", + "block.middle-earth.stripped_deadwood_wood_wall": "Muret en bois mort écorcé", + "item.middle-earth.stripped_deadwood_wood_wall": "Muret en bois mort écorcé", + "block.middle-earth.rotten_log": "Bûche pourrie", + "item.middle-earth.rotten_log": "Bûche pourrie", + "block.middle-earth.rotten_planks": "Planches pourries", + "item.middle-earth.rotten_planks": "Planches pourries", + "block.middle-earth.rotten_slab": "Dalle en bois pourri", + "item.middle-earth.rotten_slab": "Dalle en bois pourri", + "block.middle-earth.rotten_vertical_slab": "Dalle verticale en bois pourri", + "item.middle-earth.rotten_vertical_slab": "Dalle verticale en bois pourri", + "block.middle-earth.rotten_stairs": "Escaliers en bois pourri", + "item.middle-earth.rotten_stairs": "Escaliers en bois pourri", + "block.middle-earth.rotten_wood": "Bois pourri", + "item.middle-earth.rotten_wood": "Bois pourri", + "block.middle-earth.rotten_wood_fence": "Barrière en bois pourri", + "item.middle-earth.rotten_wood_fence": "Barrière en bois pourri", + "block.middle-earth.rotten_wood_slab": "Dalle en bois pourri", + "item.middle-earth.rotten_wood_slab": "Dalle en bois pourri", + "block.middle-earth.rotten_wood_stairs": "Escaliers en bois pourri", + "item.middle-earth.rotten_wood_stairs": "Escaliers en bois pourri", + "block.middle-earth.rotten_wood_vertical_slab": "Dalle verticale en bois pourri", + "item.middle-earth.rotten_wood_vertical_slab": "Dalle verticale en bois pourri", + "block.middle-earth.rotten_wood_wall": "Muret en bois pourri", + "item.middle-earth.rotten_wood_wall": "Muret en bois pourri", + "block.middle-earth.stripped_rotten_log": "Bûche pourrie écorcée", + "item.middle-earth.stripped_rotten_log": "Bûche pourrie écorcée", + "block.middle-earth.stripped_rotten_wood": "Bois pourri écorcé", + "item.middle-earth.stripped_rotten_wood": "Bois pourri écorcé", + "block.middle-earth.stripped_rotten_wood_fence": "Barrière en bois pourri écorcé", + "item.middle-earth.stripped_rotten_wood_fence": "Barrière en bois pourri écorcé", + "block.middle-earth.stripped_rotten_wood_slab": "Dalle en bois pourri écorcé", + "item.middle-earth.stripped_rotten_wood_slab": "Dalle en bois pourri écorcé", + "block.middle-earth.stripped_rotten_wood_stairs": "Escaliers en bois pourri écorcé", + "item.middle-earth.stripped_rotten_wood_stairs": "Escaliers en bois pourri écorcé", + "block.middle-earth.stripped_rotten_wood_vertical_slab": "Dalle verticale en bois pourri écorcé", + "item.middle-earth.stripped_rotten_wood_vertical_slab": "Dalle verticale en bois pourri écorcé", + "block.middle-earth.stripped_rotten_wood_wall": "Muret en bois pourri écorcé", + "item.middle-earth.stripped_rotten_wood_wall": "Muret en bois pourri écorcé", + "block.middle-earth.rotten_fence": "Barrière en bois pourri", + "item.middle-earth.rotten_fence": "Barrière en bois pourri", + "block.middle-earth.rotten_fence_gate": "Portillon en bois pourri", + "item.middle-earth.rotten_fence_gate": "Portillon en bois pourri", + "block.middle-earth.rotten_pressure_plate": "Plaque de pression en bois pourri", + "item.middle-earth.rotten_pressure_plate": "Plaque de pression en bois pourri", + "block.middle-earth.rotten_button": "Bouton en bois pourri", + "item.middle-earth.rotten_button": "Bouton en bois pourri", + "block.middle-earth.rotten_door": "Porte en bois pourri", + "item.middle-earth.rotten_door": "Porte en bois pourri", + "block.middle-earth.rotten_trapdoor": "Trappe en bois pourri", + "item.middle-earth.rotten_trapdoor": "Trappe en bois pourri", + "block.middle-earth.rotten_stool": "Tabouret en bois pourri", + "item.middle-earth.rotten_stool": "Tabouret en bois pourri", + "block.middle-earth.rotten_bench": "Banc en bois pourri", + "item.middle-earth.rotten_bench": "Banc en bois pourri", + "block.middle-earth.rotten_table": "Table en bois pourri", + "item.middle-earth.rotten_table": "Table en bois pourri", + "block.middle-earth.rotten_chair": "Chaise en bois pourri", + "item.middle-earth.rotten_chair": "Chaise en bois pourri", + "block.middle-earth.rotten_ladder": "Échelle en bois pourri", + "item.middle-earth.rotten_ladder": "Échelle en bois pourri", + "block.middle-earth.rotten_plate": "Plaque en bois pourri", + "item.middle-earth.rotten_plate": "Plaque en bois pourri", + "block.middle-earth.rotten_curtain": "Rideau pourri", + "item.middle-earth.rotten_curtain": "Rideau pourri", + "block.middle-earth.small_rotten_curtain": "Petit rideau pourri", + "item.middle-earth.small_rotten_curtain": "Petit rideau pourri", + "block.middle-earth.rotten_shingles": "Bardeaux en bois pourri", + "item.middle-earth.rotten_shingles": "Bardeaux en bois pourri", + "block.middle-earth.rotten_shingles_slab": "Dalle de bardeaux en bois pourri", + "item.middle-earth.rotten_shingles_slab": "Dalle de bardeaux en bois pourri", + "block.middle-earth.rotten_shingles_stairs": "Escalier de bardeaux en bois pourri", + "item.middle-earth.rotten_shingles_stairs": "Escalier de bardeaux en bois pourri", + "block.middle-earth.rotten_shingles_vertical_slab": "Dalle verticale de bardeaux en bois pourri", + "item.middle-earth.rotten_shingles_vertical_slab": "Dalle verticale de bardeaux en bois pourri", + "block.middle-earth.rotten_shingles_wall": "Muret de bardeaux en bois pourri", + "item.middle-earth.rotten_shingles_wall": "Muret de bardeaux en bois pourri", + "block.middle-earth.rotten_roofing": "Toiture en bois pourri", + "item.middle-earth.rotten_roofing": "Toiture en bois pourri", + "block.middle-earth.rotten_roofing_slab": "Dalle de toiture en bois pourri", + "item.middle-earth.rotten_roofing_slab": "Dalle de toiture en bois pourri", + "block.middle-earth.rotten_roofing_stairs": "Escalier de toiture en bois pourri", + "item.middle-earth.rotten_roofing_stairs": "Escalier de toiture en bois pourri", + "block.middle-earth.rotten_roofing_vertical_slab": "Dalle verticale de toiture en bois pourri", + "item.middle-earth.rotten_roofing_vertical_slab": "Dalle verticale de toiture en bois pourri", + "block.middle-earth.rotten_roofing_wall": "Muret de toiture en bois pourri", + "item.middle-earth.rotten_roofing_wall": "Muret de toiture en bois pourri", + "block.middle-earth.reed_thatch": "Chaume de roseau", + "item.middle-earth.reed_thatch": "Chaume de roseau", + "block.middle-earth.reed_thatch_slab": "Dalle en chaume de roseau", + "item.middle-earth.reed_thatch_slab": "Dalle en chaume de roseau", + "block.middle-earth.reed_thatch_stairs": "Escaliers en chaume de roseau", + "item.middle-earth.reed_thatch_stairs": "Escaliers en chaume de roseau", + "block.middle-earth.reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau", + "item.middle-earth.reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau", + "block.middle-earth.reed_thatch_wall": "Muret en chaume de roseau", + "item.middle-earth.reed_thatch_wall": "Muret en chaume de roseau", + "block.middle-earth.aged_reed_thatch": "Chaume de roseau vieilli", + "item.middle-earth.aged_reed_thatch": "Chaume de roseau vieilli", + "block.middle-earth.aged_reed_thatch_slab": "Dalle en chaume de roseau vieilli", + "item.middle-earth.aged_reed_thatch_slab": "Dalle en chaume de roseau vieilli", + "block.middle-earth.aged_reed_thatch_stairs": "Escaliers en chaume de roseau vieilli", + "item.middle-earth.aged_reed_thatch_stairs": "Escaliers en chaume de roseau vieilli", + "block.middle-earth.aged_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau vieilli", + "item.middle-earth.aged_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau vieilli", + "block.middle-earth.aged_reed_thatch_wall": "Muret en chaume de roseau vieilli", + "item.middle-earth.aged_reed_thatch_wall": "Muret en chaume de roseau vieilli", + "block.middle-earth.old_reed_thatch": "Chaume de roseau ancien", + "item.middle-earth.old_reed_thatch": "Chaume de roseau ancien", + "block.middle-earth.old_reed_thatch_slab": "Dalle en chaume de roseau ancien", + "item.middle-earth.old_reed_thatch_slab": "Dalle en chaume de roseau ancien", + "block.middle-earth.old_reed_thatch_stairs": "Escaliers en chaume de roseau ancien", + "item.middle-earth.old_reed_thatch_stairs": "Escaliers en chaume de roseau ancien", + "block.middle-earth.old_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau ancien", + "item.middle-earth.old_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau ancien", + "block.middle-earth.old_reed_thatch_wall": "Muret en chaume de roseau ancien", + "item.middle-earth.old_reed_thatch_wall": "Muret en chaume de roseau ancien", + "block.middle-earth.rotten_reed_thatch": "Chaume de roseau pourri", + "item.middle-earth.rotten_reed_thatch": "Chaume de roseau pourri", + "block.middle-earth.rotten_reed_thatch_slab": "Dalle en chaume de roseau pourri", + "item.middle-earth.rotten_reed_thatch_slab": "Dalle en chaume de roseau pourri", + "block.middle-earth.rotten_reed_thatch_stairs": "Escaliers en chaume de roseau pourri", + "item.middle-earth.rotten_reed_thatch_stairs": "Escaliers en chaume de roseau pourri", + "block.middle-earth.rotten_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau pourri", + "item.middle-earth.rotten_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau pourri", + "block.middle-earth.rotten_reed_thatch_wall": "Muret en chaume de roseau pourri", + "item.middle-earth.rotten_reed_thatch_wall": "Muret en chaume de roseau pourri", + "block.middle-earth.weathered_reed_thatch": "Chaume de roseau altéré", + "item.middle-earth.weathered_reed_thatch": "Chaume de roseau altéré", + "block.middle-earth.weathered_reed_thatch_slab": "Dalle en chaume de roseau altéré", + "item.middle-earth.weathered_reed_thatch_slab": "Dalle en chaume de roseau altéré", + "block.middle-earth.weathered_reed_thatch_stairs": "Escaliers en chaume de roseau altéré", + "item.middle-earth.weathered_reed_thatch_stairs": "Escaliers en chaume de roseau altéré", + "block.middle-earth.weathered_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau altéré", + "item.middle-earth.weathered_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau altéré", + "block.middle-earth.weathered_reed_thatch_wall": "Muret en chaume de roseau altéré", + "item.middle-earth.weathered_reed_thatch_wall": "Muret en chaume de roseau altéré", + "block.middle-earth.waxed_reed_thatch": "Chaume de roseau ciré", + "item.middle-earth.waxed_reed_thatch": "Chaume de roseau ciré", + "block.middle-earth.waxed_reed_thatch_slab": "Dalle en chaume de roseau ciré", + "item.middle-earth.waxed_reed_thatch_slab": "Dalle en chaume de roseau ciré", + "block.middle-earth.waxed_reed_thatch_stairs": "Escaliers en chaume de roseau ciré", + "item.middle-earth.waxed_reed_thatch_stairs": "Escaliers en chaume de roseau ciré", + "block.middle-earth.waxed_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau ciré", + "item.middle-earth.waxed_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau ciré", + "block.middle-earth.waxed_reed_thatch_wall": "Muret en chaume de roseau ciré", + "item.middle-earth.waxed_reed_thatch_wall": "Muret en chaume de roseau ciré", + "block.middle-earth.waxed_aged_reed_thatch": "Chaume de roseau vieilli ciré", + "item.middle-earth.waxed_aged_reed_thatch": "Chaume de roseau vieilli ciré", + "block.middle-earth.waxed_aged_reed_thatch_slab": "Dalle en chaume de roseau vieilli ciré", + "item.middle-earth.waxed_aged_reed_thatch_slab": "Dalle en chaume de roseau vieilli ciré", + "block.middle-earth.waxed_aged_reed_thatch_stairs": "Escaliers en chaume de roseau vieilli ciré", + "item.middle-earth.waxed_aged_reed_thatch_stairs": "Escaliers en chaume de roseau vieilli ciré", + "block.middle-earth.waxed_aged_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau vieilli ciré", + "item.middle-earth.waxed_aged_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau vieilli ciré", + "block.middle-earth.waxed_aged_reed_thatch_wall": "Muret en chaume de roseau vieilli ciré", + "item.middle-earth.waxed_aged_reed_thatch_wall": "Muret en chaume de roseau vieilli ciré", + "block.middle-earth.waxed_old_reed_thatch": "Chaume de roseau ancien ciré", + "item.middle-earth.waxed_old_reed_thatch": "Chaume de roseau ancien ciré", + "block.middle-earth.waxed_old_reed_thatch_slab": "Dalle en chaume de roseau ancien ciré", + "item.middle-earth.waxed_old_reed_thatch_slab": "Dalle en chaume de roseau ancien ciré", + "block.middle-earth.waxed_old_reed_thatch_stairs": "Escaliers en chaume de roseau ancien ciré", + "item.middle-earth.waxed_old_reed_thatch_stairs": "Escaliers en chaume de roseau ancien ciré", + "block.middle-earth.waxed_old_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau ancien ciré", + "item.middle-earth.waxed_old_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau ancien ciré", + "block.middle-earth.waxed_old_reed_thatch_wall": "Muret en chaume de roseau ancien ciré", + "item.middle-earth.waxed_old_reed_thatch_wall": "Muret en chaume de roseau ancien ciré", + "block.middle-earth.waxed_rotten_reed_thatch": "Chaume de roseau pourri ciré", + "item.middle-earth.waxed_rotten_reed_thatch": "Chaume de roseau pourri ciré", + "block.middle-earth.waxed_rotten_reed_thatch_slab": "Dalle en chaume de roseau pourri ciré", + "item.middle-earth.waxed_rotten_reed_thatch_slab": "Dalle en chaume de roseau pourri ciré", + "block.middle-earth.waxed_rotten_reed_thatch_stairs": "Escaliers en chaume de roseau pourri ciré", + "item.middle-earth.waxed_rotten_reed_thatch_stairs": "Escaliers en chaume de roseau pourri ciré", + "block.middle-earth.waxed_rotten_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau pourri ciré", + "item.middle-earth.waxed_rotten_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau pourri ciré", + "block.middle-earth.waxed_rotten_reed_thatch_wall": "Muret en chaume de roseau pourri ciré", + "item.middle-earth.waxed_rotten_reed_thatch_wall": "Muret en chaume de roseau pourri ciré", + "block.middle-earth.waxed_weathered_reed_thatch": "Chaume de roseau altéré ciré", + "item.middle-earth.waxed_weathered_reed_thatch": "Chaume de roseau altéré ciré", + "block.middle-earth.waxed_weathered_reed_thatch_slab": "Dalle en chaume de roseau altéré ciré", + "item.middle-earth.waxed_weathered_reed_thatch_slab": "Dalle en chaume de roseau altéré ciré", + "block.middle-earth.waxed_weathered_reed_thatch_stairs": "Escaliers en chaume de roseau altéré ciré", + "item.middle-earth.waxed_weathered_reed_thatch_stairs": "Escaliers en chaume de roseau altéré ciré", + "block.middle-earth.waxed_weathered_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau altéré ciré", + "item.middle-earth.waxed_weathered_reed_thatch_vertical_slab": "Dalle verticale en chaume de roseau altéré ciré", + "block.middle-earth.waxed_weathered_reed_thatch_wall": "Muret en chaume de roseau altéré ciré", + "item.middle-earth.waxed_weathered_reed_thatch_wall": "Muret en chaume de roseau altéré ciré", + "block.middle-earth.drystone": "Pierre sèche", + "item.middle-earth.drystone": "Pierre sèche", + "block.middle-earth.drystone_slab": "Dalle en pierre sèche", + "item.middle-earth.drystone_slab": "Dalle en pierre sèche", + "block.middle-earth.drystone_stairs": "Escalier en pierre sèche", + "item.middle-earth.drystone_stairs": "Escalier en pierre sèche", + "block.middle-earth.drystone_vertical_slab": "Dalle verticale en pierre sèche", + "item.middle-earth.drystone_vertical_slab": "Dalle verticale en pierre sèche", + "block.middle-earth.drystone_wall": "Muret en pierre sèche", + "item.middle-earth.drystone_wall": "Muret en pierre sèche", + "block.middle-earth.drystone_carved_window": "Fenêtre sculptée en pierre sèche", + "item.middle-earth.drystone_carved_window": "Fenêtre sculptée en pierre sèche", + "block.middle-earth.drystone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre sèche", + "item.middle-earth.drystone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre sèche", + "block.middle-earth.framed_drystone": "Pierre sèche encadrée", + "item.middle-earth.framed_drystone": "Pierre sèche encadrée", + "block.middle-earth.framed_drystone_slab": "Dalle en pierre sèche encadrée", + "item.middle-earth.framed_drystone_slab": "Dalle en pierre sèche encadrée", + "block.middle-earth.framed_drystone_stairs": "Escalier en pierre sèche encadrée", + "item.middle-earth.framed_drystone_stairs": "Escalier en pierre sèche encadrée", + "block.middle-earth.framed_drystone_vertical_slab": "Dalle verticale en pierre sèche encadrée", + "item.middle-earth.framed_drystone_vertical_slab": "Dalle verticale en pierre sèche encadrée", + "block.middle-earth.framed_drystone_wall": "Muret en pierre sèche encadrée", + "item.middle-earth.framed_drystone_wall": "Muret en pierre sèche encadrée", + "block.middle-earth.mossy_drystone": "Pierre sèche moussue", + "item.middle-earth.mossy_drystone": "Pierre sèche moussue", + "block.middle-earth.mossy_drystone_slab": "Dalle en pierre sèche moussue", + "item.middle-earth.mossy_drystone_slab": "Dalle en pierre sèche moussue", + "block.middle-earth.mossy_drystone_stairs": "Escalier en pierre sèche moussue", + "item.middle-earth.mossy_drystone_stairs": "Escalier en pierre sèche moussue", + "block.middle-earth.mossy_drystone_vertical_slab": "Dalle verticale en pierre sèche moussue", + "item.middle-earth.mossy_drystone_vertical_slab": "Dalle verticale en pierre sèche moussue", + "block.middle-earth.mossy_drystone_wall": "Muret en pierre sèche moussue", + "item.middle-earth.mossy_drystone_wall": "Muret en pierre sèche moussue", + "block.middle-earth.dripstone_slab": "Dalle en pierre à gouttes", + "item.middle-earth.dripstone_slab": "Dalle en pierre à gouttes", + "block.middle-earth.dripstone_stairs": "Escalier en pierre à gouttes", + "item.middle-earth.dripstone_stairs": "Escalier en pierre à gouttes", + "block.middle-earth.dripstone_vertical_slab": "Dalle verticale en pierre à gouttes", + "item.middle-earth.dripstone_vertical_slab": "Dalle verticale en pierre à gouttes", + "block.middle-earth.dripstone_wall": "Muret en pierre à gouttes", + "item.middle-earth.dripstone_wall": "Muret en pierre à gouttes", + "block.middle-earth.dripstone_bricks": "Briques en pierre à gouttes", + "item.middle-earth.dripstone_bricks": "Briques en pierre à gouttes", + "block.middle-earth.dripstone_brick_slab": "Brique en pierre à gouttes", + "item.middle-earth.dripstone_brick_slab": "Brique en pierre à gouttes", + "block.middle-earth.dripstone_brick_stairs": "Escalier de brique en pierre à gouttes", + "item.middle-earth.dripstone_brick_stairs": "Escalier de brique en pierre à gouttes", + "block.middle-earth.dripstone_brick_vertical_slab": "Dalle verticale de brique en pierre à gouttes", + "item.middle-earth.dripstone_brick_vertical_slab": "Dalle verticale de brique en pierre à gouttes", + "block.middle-earth.dripstone_brick_wall": "Muret de brique en pierre à gouttes", + "item.middle-earth.dripstone_brick_wall": "Muret de brique en pierre à gouttes", + "block.middle-earth.dripstone_button": "Bouton en pierre à gouttes", + "item.middle-earth.dripstone_button": "Bouton en pierre à gouttes", + "block.middle-earth.dripstone_chair": "Chaise en pierre à gouttes", + "item.middle-earth.dripstone_chair": "Chaise en pierre à gouttes", + "block.middle-earth.dripstone_pressure_plate": "Plaque de pression en pierre à gouttes", + "item.middle-earth.dripstone_pressure_plate": "Plaque de pression en pierre à gouttes", + "block.middle-earth.dripstone_rocks": "Éboulis de pierre à gouttes", + "item.middle-earth.dripstone_rocks": "Éboulis de pierre à gouttes", + "block.middle-earth.dripstone_stool": "Tabouret en pierre à gouttes", + "item.middle-earth.dripstone_stool": "Tabouret en pierre à gouttes", + "block.middle-earth.dripstone_table": "Table en pierre à gouttes", + "item.middle-earth.dripstone_table": "Table en pierre à gouttes", + "block.middle-earth.dripstone_trapdoor": "Trappe en pierre à gouttes", + "item.middle-earth.dripstone_trapdoor": "Trappe en pierre à gouttes", + "block.middle-earth.polished_dripstone": "Pierre à gouttes polie", + "item.middle-earth.polished_dripstone": "Pierre à gouttes polie", + "block.middle-earth.polished_dripstone_slab": "Dalle en pierre à gouttes polie", + "item.middle-earth.polished_dripstone_slab": "Dalle en pierre à gouttes polie", + "block.middle-earth.polished_dripstone_stairs": "Escalier en pierre à gouttes polie", + "item.middle-earth.polished_dripstone_stairs": "Escalier en pierre à gouttes polie", + "block.middle-earth.polished_dripstone_vertical_slab": "Dalle verticale en pierre à gouttes polie", + "item.middle-earth.polished_dripstone_vertical_slab": "Dalle verticale en pierre à gouttes polie", + "block.middle-earth.polished_dripstone_wall": "Muret en pierre à gouttes polie", + "item.middle-earth.polished_dripstone_wall": "Muret en pierre à gouttes polie", + "block.middle-earth.smooth_dripstone": "Pierre à gouttes lisse", + "item.middle-earth.smooth_dripstone": "Pierre à gouttes lisse", + "block.middle-earth.smooth_dripstone_slab": "Dalle en pierre à gouttes lisse", + "item.middle-earth.smooth_dripstone_slab": "Dalle en pierre à gouttes lisse", + "block.middle-earth.smooth_dripstone_stairs": "Escalier en pierre à gouttes lisse", + "item.middle-earth.smooth_dripstone_stairs": "Escalier en pierre à gouttes lisse", + "block.middle-earth.smooth_dripstone_vertical_slab": "Dalle verticale en pierre à gouttes lisse", + "item.middle-earth.smooth_dripstone_vertical_slab": "Dalle verticale en pierre à gouttes lisse", + "block.middle-earth.smooth_dripstone_wall": "Muret en pierre à gouttes lisse", + "item.middle-earth.smooth_dripstone_wall": "Muret en pierre à gouttes lisse", + "block.middle-earth.chiseled_burzum_gabbro": "Gabbro Uruk sculpté", + "item.middle-earth.chiseled_burzum_gabbro": "Gabbro Uruk sculpté", + "block.middle-earth.chiseled_burzum_gabbro_bricks": "Briques en Gabbro Uruk sculptées", + "item.middle-earth.chiseled_burzum_gabbro_bricks": "Briques en Gabbro Uruk sculptées", + "block.middle-earth.chiseled_burzum_gabbro_bricks_vertical_slab": "Dalle verticale de briques en Gabbro Uruk sculptées", + "item.middle-earth.chiseled_burzum_gabbro_bricks_vertical_slab": "Dalle verticale de briques en Gabbro Uruk sculptées", + "block.middle-earth.chiseled_burzum_gabbro_bricks_wall": "Muret de briques en Gabbro Uruk sculptées", + "item.middle-earth.chiseled_burzum_gabbro_bricks_wall": "Muret de briques en Gabbro Uruk sculptées", + "block.middle-earth.chiseled_burzum_gabbro_tiles": "Gabbro Uruk carrelé sculpté", + "item.middle-earth.chiseled_burzum_gabbro_tiles": "Gabbro Uruk carrelé sculpté", + "block.middle-earth.chiseled_burzum_gabbro_tiles_vertical_slab": "Dalle verticale de Gabbro Uruk carrelé sculpté", + "item.middle-earth.chiseled_burzum_gabbro_tiles_vertical_slab": "Dalle verticale de Gabbro Uruk carrelé sculpté", + "block.middle-earth.chiseled_burzum_gabbro_tiles_wall": "Muret de Gabbro Uruk carrelé sculpté", + "item.middle-earth.chiseled_burzum_gabbro_tiles_wall": "Muret de Gabbro Uruk carrelé sculpté", + "block.middle-earth.chiseled_burzum_gabbro_vertical_slab": "Dalle verticale en Gabbro Uruk sculpté", + "item.middle-earth.chiseled_burzum_gabbro_vertical_slab": "Dalle verticale en Gabbro Uruk sculpté", + "block.middle-earth.chiseled_burzum_gabbro_wall": "Muret en Gabbro Uruk sculpté", + "item.middle-earth.chiseled_burzum_gabbro_wall": "Muret en Gabbro Uruk sculpté", + "block.middle-earth.chiseled_polished_burzum_gabbro": "Gabbro Uruk poli sculpté", + "item.middle-earth.chiseled_polished_burzum_gabbro": "Gabbro Uruk poli sculpté", + "block.middle-earth.chiseled_polished_burzum_gabbro_vertical_slab": "Dalle verticale en Gabbro Uruk poli sculpté", + "item.middle-earth.chiseled_polished_burzum_gabbro_vertical_slab": "Dalle verticale en Gabbro Uruk poli sculpté", + "block.middle-earth.chiseled_polished_burzum_gabbro_wall": "Muret en Gabbro Uruk poli sculpté", + "item.middle-earth.chiseled_polished_burzum_gabbro_wall": "Muret en Gabbro Uruk poli sculpté", + "block.middle-earth.chiseled_smooth_burzum_gabbro": "Gabbro Uruk lisse sculpté", + "item.middle-earth.chiseled_smooth_burzum_gabbro": "Gabbro Uruk lisse sculpté", + "block.middle-earth.chiseled_smooth_burzum_gabbro_vertical_slab": "Dalle verticale en Gabbro Uruk lisse sculpté", + "item.middle-earth.chiseled_smooth_burzum_gabbro_vertical_slab": "Dalle verticale en Gabbro Uruk lisse sculpté", + "block.middle-earth.chiseled_smooth_burzum_gabbro_wall": "Muret en Gabbro Uruk lisse sculpté", + "item.middle-earth.chiseled_smooth_burzum_gabbro_wall": "Muret en Gabbro Uruk lisse sculpté", + "block.middle-earth.canvas": "Toile", + "item.middle-earth.canvas": "Toile", + "block.middle-earth.canvas_slab": "Dalle en toile", + "item.middle-earth.canvas_slab": "Dalle en toile", + "block.middle-earth.canvas_stairs": "Escalier en toile", + "item.middle-earth.canvas_stairs": "Escalier en toile", + "block.middle-earth.canvas_vertical_slab": "Dalle verticale en toile", + "item.middle-earth.canvas_vertical_slab": "Dalle verticale en toile", + "block.middle-earth.black_canvas": "Toile noire", + "item.middle-earth.black_canvas": "Toile noire", + "block.middle-earth.black_canvas_slab": "Dalle en toile noire", + "item.middle-earth.black_canvas_slab": "Dalle en toile noire", + "block.middle-earth.black_canvas_stairs": "Escalier en toile noire", + "item.middle-earth.black_canvas_stairs": "Escalier en toile noire", + "block.middle-earth.black_canvas_vertical_slab": "Dalle verticale en toile noire", + "item.middle-earth.black_canvas_vertical_slab": "Dalle verticale en toile noire", + "block.middle-earth.blue_canvas": "Toile bleue", + "item.middle-earth.blue_canvas": "Toile bleue", + "block.middle-earth.blue_canvas_slab": "Dalle en toile bleue", + "item.middle-earth.blue_canvas_slab": "Dalle en toile bleue", + "block.middle-earth.blue_canvas_stairs": "Escalier en toile bleue", + "item.middle-earth.blue_canvas_stairs": "Escalier en toile bleue", + "block.middle-earth.blue_canvas_vertical_slab": "Dalle verticale en toile bleue", + "item.middle-earth.blue_canvas_vertical_slab": "Dalle verticale en toile bleue", + "block.middle-earth.brown_canvas": "Toile marron", + "item.middle-earth.brown_canvas": "Toile marron", + "block.middle-earth.brown_canvas_slab": "Dalle en toile marron", + "item.middle-earth.brown_canvas_slab": "Dalle en toile marron", + "block.middle-earth.brown_canvas_stairs": "Escalier en toile marron", + "item.middle-earth.brown_canvas_stairs": "Escalier en toile marron", + "block.middle-earth.brown_canvas_vertical_slab": "Dalle verticale en toile marron", + "item.middle-earth.brown_canvas_vertical_slab": "Dalle verticale en toile marron", + "block.middle-earth.cyan_canvas": "Toile cyan", + "item.middle-earth.cyan_canvas": "Toile cyan", + "block.middle-earth.cyan_canvas_slab": "Dalle en toile cyan", + "item.middle-earth.cyan_canvas_slab": "Dalle en toile cyan", + "block.middle-earth.cyan_canvas_stairs": "Escalier en toile cyan", + "item.middle-earth.cyan_canvas_stairs": "Escalier en toile cyan", + "block.middle-earth.cyan_canvas_vertical_slab": "Dalle verticale en toile cyan", + "item.middle-earth.cyan_canvas_vertical_slab": "Dalle verticale en toile cyan", + "block.middle-earth.dark_blue_canvas": "Toile bleu foncé", + "item.middle-earth.dark_blue_canvas": "Toile bleu foncé", + "block.middle-earth.dark_blue_canvas_slab": "Dalle en toile bleu foncé", + "item.middle-earth.dark_blue_canvas_slab": "Dalle en toile bleu foncé", + "block.middle-earth.dark_blue_canvas_stairs": "Escalier en toile bleu foncé", + "item.middle-earth.dark_blue_canvas_stairs": "Escalier en toile bleu foncé", + "block.middle-earth.dark_blue_canvas_vertical_slab": "Dalle verticale en toile bleu foncé", + "item.middle-earth.dark_blue_canvas_vertical_slab": "Dalle verticale en toile bleu foncé", + "block.middle-earth.dark_brown_canvas": "Toile marron foncé", + "item.middle-earth.dark_brown_canvas": "Toile marron foncé", + "block.middle-earth.dark_brown_canvas_slab": "Dalle en toile marron foncé", + "item.middle-earth.dark_brown_canvas_slab": "Dalle en toile marron foncé", + "block.middle-earth.dark_brown_canvas_stairs": "Escalier en toile marron foncé", + "item.middle-earth.dark_brown_canvas_stairs": "Escalier en toile marron foncé", + "block.middle-earth.dark_brown_canvas_vertical_slab": "Dalle verticale en toile marron foncé", + "item.middle-earth.dark_brown_canvas_vertical_slab": "Dalle verticale en toile marron foncé", + "block.middle-earth.dark_gray_canvas": "Toile gris foncé", + "item.middle-earth.dark_gray_canvas": "Toile gris foncé", + "block.middle-earth.dark_gray_canvas_slab": "Dalle en toile gris foncé", + "item.middle-earth.dark_gray_canvas_slab": "Dalle en toile gris foncé", + "block.middle-earth.dark_gray_canvas_stairs": "Escalier en toile gris foncé", + "item.middle-earth.dark_gray_canvas_stairs": "Escalier en toile gris foncé", + "block.middle-earth.dark_gray_canvas_vertical_slab": "Dalle verticale en toile gris foncé", + "item.middle-earth.dark_gray_canvas_vertical_slab": "Dalle verticale en toile gris foncé", + "block.middle-earth.dark_green_canvas": "Toile vert foncé", + "item.middle-earth.dark_green_canvas": "Toile vert foncé", + "block.middle-earth.dark_green_canvas_slab": "Dalle en toile vert foncé", + "item.middle-earth.dark_green_canvas_slab": "Dalle en toile vert foncé", + "block.middle-earth.dark_green_canvas_stairs": "Escalier en toile vert foncé", + "item.middle-earth.dark_green_canvas_stairs": "Escalier en toile vert foncé", + "block.middle-earth.dark_green_canvas_vertical_slab": "Dalle verticale en toile vert foncé", + "item.middle-earth.dark_green_canvas_vertical_slab": "Dalle verticale en toile vert foncé", + "block.middle-earth.dark_red_canvas": "Toile rouge foncé", + "item.middle-earth.dark_red_canvas": "Toile rouge foncé", + "block.middle-earth.dark_red_canvas_slab": "Dalle en toile rouge foncé", + "item.middle-earth.dark_red_canvas_slab": "Dalle en toile rouge foncé", + "block.middle-earth.dark_red_canvas_stairs": "Escalier en toile rouge foncé", + "item.middle-earth.dark_red_canvas_stairs": "Escalier en toile rouge foncé", + "block.middle-earth.dark_red_canvas_vertical_slab": "Dalle verticale en toile rouge foncé", + "item.middle-earth.dark_red_canvas_vertical_slab": "Dalle verticale en toile rouge foncé", + "block.middle-earth.dark_yellow_canvas": "Toile jaune foncé", + "item.middle-earth.dark_yellow_canvas": "Toile jaune foncé", + "block.middle-earth.dark_yellow_canvas_slab": "Dalle en toile jaune foncé", + "item.middle-earth.dark_yellow_canvas_slab": "Dalle en toile jaune foncé", + "block.middle-earth.dark_yellow_canvas_stairs": "Escalier en toile jaune foncé", + "item.middle-earth.dark_yellow_canvas_stairs": "Escalier en toile jaune foncé", + "block.middle-earth.dark_yellow_canvas_vertical_slab": "Dalle verticale en toile jaune foncé", + "item.middle-earth.dark_yellow_canvas_vertical_slab": "Dalle verticale en toile jaune foncé", + "block.middle-earth.gray_canvas": "Toile grise", + "item.middle-earth.gray_canvas": "Toile grise", + "block.middle-earth.gray_canvas_slab": "Dalle en toile grise", + "item.middle-earth.gray_canvas_slab": "Dalle en toile grise", + "block.middle-earth.gray_canvas_stairs": "Escalier en toile grise", + "item.middle-earth.gray_canvas_stairs": "Escalier en toile grise", + "block.middle-earth.gray_canvas_vertical_slab": "Dalle verticale en toile grise", + "item.middle-earth.gray_canvas_vertical_slab": "Dalle verticale en toile grise", + "block.middle-earth.green_canvas": "Toile verte", + "item.middle-earth.green_canvas": "Toile verte", + "block.middle-earth.green_canvas_slab": "Dalle en toile verte", + "item.middle-earth.green_canvas_slab": "Dalle en toile verte", + "block.middle-earth.green_canvas_stairs": "Escalier en toile verte", + "item.middle-earth.green_canvas_stairs": "Escalier en toile verte", + "block.middle-earth.green_canvas_vertical_slab": "Dalle verticale en toile verte", + "item.middle-earth.green_canvas_vertical_slab": "Dalle verticale en toile verte", + "block.middle-earth.light_blue_canvas": "Toile bleu clair", + "item.middle-earth.light_blue_canvas": "Toile bleu clair", + "block.middle-earth.light_blue_canvas_slab": "Dalle en toile bleu clair", + "item.middle-earth.light_blue_canvas_slab": "Dalle en toile bleu clair", + "block.middle-earth.light_blue_canvas_stairs": "Escalier en toile bleu clair", + "item.middle-earth.light_blue_canvas_stairs": "Escalier en toile bleu clair", + "block.middle-earth.light_blue_canvas_vertical_slab": "Dalle verticale en toile bleu clair", + "item.middle-earth.light_blue_canvas_vertical_slab": "Dalle verticale en toile bleu clair", + "block.middle-earth.light_gray_canvas": "Toile gris clair", + "item.middle-earth.light_gray_canvas": "Toile gris clair", + "block.middle-earth.light_gray_canvas_slab": "Dalle en toile gris clair", + "item.middle-earth.light_gray_canvas_slab": "Dalle en toile gris clair", + "block.middle-earth.light_gray_canvas_stairs": "Escalier en toile gris clair", + "item.middle-earth.light_gray_canvas_stairs": "Escalier en toile gris clair", + "block.middle-earth.light_gray_canvas_vertical_slab": "Dalle verticale en toile gris clair", + "item.middle-earth.light_gray_canvas_vertical_slab": "Dalle verticale en toile gris clair", + "block.middle-earth.magenta_canvas": "Toile magenta", + "item.middle-earth.magenta_canvas": "Toile magenta", + "block.middle-earth.magenta_canvas_slab": "Dalle en toile magenta", + "item.middle-earth.magenta_canvas_slab": "Dalle en toile magenta", + "block.middle-earth.magenta_canvas_stairs": "Escalier en toile magenta", + "item.middle-earth.magenta_canvas_stairs": "Escalier en toile magenta", + "block.middle-earth.magenta_canvas_vertical_slab": "Dalle verticale en toile magenta", + "item.middle-earth.magenta_canvas_vertical_slab": "Dalle verticale en toile magenta", + "block.middle-earth.orange_canvas": "Toile orange", + "item.middle-earth.orange_canvas": "Toile orange", + "block.middle-earth.orange_canvas_slab": "Dalle en toile orange", + "item.middle-earth.orange_canvas_slab": "Dalle en toile orange", + "block.middle-earth.orange_canvas_stairs": "Escalier en toile orange", + "item.middle-earth.orange_canvas_stairs": "Escalier en toile orange", + "block.middle-earth.orange_canvas_vertical_slab": "Dalle verticale en toile orange", + "item.middle-earth.orange_canvas_vertical_slab": "Dalle verticale en toile orange", + "block.middle-earth.pink_canvas": "Toile rose", + "item.middle-earth.pink_canvas": "Toile rose", + "block.middle-earth.pink_canvas_slab": "Dalle en toile rose", + "item.middle-earth.pink_canvas_slab": "Dalle en toile rose", + "block.middle-earth.pink_canvas_stairs": "Escalier en toile rose", + "item.middle-earth.pink_canvas_stairs": "Escalier en toile rose", + "block.middle-earth.pink_canvas_vertical_slab": "Dalle verticale en toile rose", + "item.middle-earth.pink_canvas_vertical_slab": "Dalle verticale en toile rose", + "block.middle-earth.purple_canvas": "Toile violette", + "item.middle-earth.purple_canvas": "Toile violette", + "block.middle-earth.purple_canvas_slab": "Dalle en toile violette", + "item.middle-earth.purple_canvas_slab": "Dalle en toile violette", + "block.middle-earth.purple_canvas_stairs": "Escalier en toile violette", + "item.middle-earth.purple_canvas_stairs": "Escalier en toile violette", + "block.middle-earth.purple_canvas_vertical_slab": "Dalle verticale en toile violette", + "item.middle-earth.purple_canvas_vertical_slab": "Dalle verticale en toile violette", + "block.middle-earth.red_canvas": "Toile rouge", + "item.middle-earth.red_canvas": "Toile rouge", + "block.middle-earth.red_canvas_slab": "Dalle en toile rouge", + "item.middle-earth.red_canvas_slab": "Dalle en toile rouge", + "block.middle-earth.red_canvas_stairs": "Escalier en toile rouge", + "item.middle-earth.red_canvas_stairs": "Escalier en toile rouge", + "block.middle-earth.red_canvas_vertical_slab": "Dalle verticale en toile rouge", + "item.middle-earth.red_canvas_vertical_slab": "Dalle verticale en toile rouge", + "block.middle-earth.white_canvas": "Toile blanche", + "item.middle-earth.white_canvas": "Toile blanche", + "block.middle-earth.white_canvas_slab": "Dalle en toile blanche", + "item.middle-earth.white_canvas_slab": "Dalle en toile blanche", + "block.middle-earth.white_canvas_stairs": "Escalier en toile blanche", + "item.middle-earth.white_canvas_stairs": "Escalier en toile blanche", + "block.middle-earth.white_canvas_vertical_slab": "Dalle verticale en toile blanche", + "item.middle-earth.white_canvas_vertical_slab": "Dalle verticale en toile blanche", + "block.middle-earth.yellow_canvas": "Toile jaune", + "item.middle-earth.yellow_canvas": "Toile jaune", + "block.middle-earth.yellow_canvas_slab": "Dalle en toile jaune", + "item.middle-earth.yellow_canvas_slab": "Dalle en toile jaune", + "block.middle-earth.yellow_canvas_stairs": "Escalier en toile jaune", + "item.middle-earth.yellow_canvas_stairs": "Escalier en toile jaune", + "block.middle-earth.yellow_canvas_vertical_slab": "Dalle verticale en toile jaune", + "item.middle-earth.yellow_canvas_vertical_slab": "Dalle verticale en toile jaune", + "block.middle-earth.mossy_andesite_pillar_vertical_slab": "Dalle verticale de pilier en andésite moussue", + "item.middle-earth.mossy_andesite_pillar_vertical_slab": "Dalle verticale de pilier en andésite moussue", + "block.middle-earth.mossy_andesite_pillar_wall": "Muret de pilier en andésite moussue", + "item.middle-earth.mossy_andesite_pillar_wall": "Muret de pilier en andésite moussue", + "block.middle-earth.cracked_andesite_pillar_vertical_slab": "Dalle verticale de pilier en andésite craquelée", + "item.middle-earth.cracked_andesite_pillar_vertical_slab": "Dalle verticale de pilier en andésite craquelée", + "block.middle-earth.cracked_andesite_pillar_wall": "Muret de pilier en andésite craquelée", + "item.middle-earth.cracked_andesite_pillar_wall": "Muret de pilier en andésite craquelée", + "block.middle-earth.chiseled_smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse sculptée", + "item.middle-earth.chiseled_smooth_andesite_vertical_slab": "Dalle verticale en andésite lisse sculptée", + "block.middle-earth.chiseled_smooth_andesite_wall": "Muret en andésite lisse sculptée", + "item.middle-earth.chiseled_smooth_andesite_wall": "Muret en andésite lisse sculptée", + "block.middle-earth.chiseled_andesite_bricks_vertical_slab": "Dalle verticale de briques en andésite sculptées", + "item.middle-earth.chiseled_andesite_bricks_vertical_slab": "Dalle verticale de briques en andésite sculptées", + "block.middle-earth.chiseled_andesite_bricks_wall": "Muret de briques en andésite sculptées", + "item.middle-earth.chiseled_andesite_bricks_wall": "Muret de briques en andésite sculptées", + "block.middle-earth.mossy_andesite_brick_slab": "Brique en andésite moussue", + "item.middle-earth.mossy_andesite_brick_slab": "Brique en andésite moussue", + "block.middle-earth.mossy_andesite_brick_stairs": "Escalier de brique en andésite moussue", + "item.middle-earth.mossy_andesite_brick_stairs": "Escalier de brique en andésite moussue", + "block.middle-earth.mossy_andesite_brick_vertical_slab": "Dalle verticale de brique en andésite moussue", + "item.middle-earth.mossy_andesite_brick_vertical_slab": "Dalle verticale de brique en andésite moussue", + "block.middle-earth.mossy_andesite_brick_wall": "Muret de brique en andésite moussue", + "item.middle-earth.mossy_andesite_brick_wall": "Muret de brique en andésite moussue", + "block.middle-earth.cracked_andesite_brick_slab": "Brique en andésite craquelée", + "item.middle-earth.cracked_andesite_brick_slab": "Brique en andésite craquelée", + "block.middle-earth.cracked_andesite_brick_stairs": "Escalier de brique en andésite craquelée", + "item.middle-earth.cracked_andesite_brick_stairs": "Escalier de brique en andésite craquelée", + "block.middle-earth.cracked_andesite_brick_vertical_slab": "Dalle verticale de brique en andésite craquelée", + "item.middle-earth.cracked_andesite_brick_vertical_slab": "Dalle verticale de brique en andésite craquelée", + "block.middle-earth.cracked_andesite_brick_wall": "Muret de brique en andésite craquelée", + "item.middle-earth.cracked_andesite_brick_wall": "Muret de brique en andésite craquelée", + "block.middle-earth.chiseled_andesite_tiles_vertical_slab": "Dalle verticale d'andésite carrelée sculptée", + "item.middle-earth.chiseled_andesite_tiles_vertical_slab": "Dalle verticale d'andésite carrelée sculptée", + "block.middle-earth.chiseled_andesite_tiles_wall": "Muret d'andésite carrelée sculptée", + "item.middle-earth.chiseled_andesite_tiles_wall": "Muret d'andésite carrelée sculptée", + "block.middle-earth.mossy_andesite_tile_slab": "Tuile en andésite moussue", + "item.middle-earth.mossy_andesite_tile_slab": "Tuile en andésite moussue", + "block.middle-earth.mossy_andesite_tile_stairs": "Escalier de tuile en andésite moussue", + "item.middle-earth.mossy_andesite_tile_stairs": "Escalier de tuile en andésite moussue", + "block.middle-earth.mossy_andesite_tile_vertical_slab": "Dalle verticale de tuile en andésite moussue", + "item.middle-earth.mossy_andesite_tile_vertical_slab": "Dalle verticale de tuile en andésite moussue", + "block.middle-earth.mossy_andesite_tile_wall": "Muret de tuile en andésite moussue", + "item.middle-earth.mossy_andesite_tile_wall": "Muret de tuile en andésite moussue", + "block.middle-earth.cracked_andesite_tile_slab": "Tuile en andésite craquelée", + "item.middle-earth.cracked_andesite_tile_slab": "Tuile en andésite craquelée", + "block.middle-earth.cracked_andesite_tile_stairs": "Escalier de tuile en andésite craquelée", + "item.middle-earth.cracked_andesite_tile_stairs": "Escalier de tuile en andésite craquelée", + "block.middle-earth.cracked_andesite_tile_vertical_slab": "Dalle verticale de tuile en andésite craquelée", + "item.middle-earth.cracked_andesite_tile_vertical_slab": "Dalle verticale de tuile en andésite craquelée", + "block.middle-earth.cracked_andesite_tile_wall": "Muret de tuile en andésite craquelée", + "item.middle-earth.cracked_andesite_tile_wall": "Muret de tuile en andésite craquelée", + "block.middle-earth.chiseled_polished_andesite_vertical_slab": "Dalle verticale en andésite polie sculptée", + "item.middle-earth.chiseled_polished_andesite_vertical_slab": "Dalle verticale en andésite polie sculptée", + "block.middle-earth.chiseled_polished_andesite_wall": "Muret en andésite polie sculptée", + "item.middle-earth.chiseled_polished_andesite_wall": "Muret en andésite polie sculptée", + "block.middle-earth.chiseled_andesite_vertical_slab": "Dalle verticale en andésite sculptée", + "item.middle-earth.chiseled_andesite_vertical_slab": "Dalle verticale en andésite sculptée", + "block.middle-earth.chiseled_andesite_wall": "Muret en andésite sculptée", + "item.middle-earth.chiseled_andesite_wall": "Muret en andésite sculptée", + "block.middle-earth.mossy_basalt_pillar_vertical_slab": "Dalle verticale de pilier en basalte moussu", + "item.middle-earth.mossy_basalt_pillar_vertical_slab": "Dalle verticale de pilier en basalte moussu", + "block.middle-earth.mossy_basalt_pillar_wall": "Muret de pilier en basalte moussu", + "item.middle-earth.mossy_basalt_pillar_wall": "Muret de pilier en basalte moussu", + "block.middle-earth.cracked_basalt_pillar_vertical_slab": "Dalle verticale de pilier en basalte craquelé", + "item.middle-earth.cracked_basalt_pillar_vertical_slab": "Dalle verticale de pilier en basalte craquelé", + "block.middle-earth.cracked_basalt_pillar_wall": "Muret de pilier en basalte craquelé", + "item.middle-earth.cracked_basalt_pillar_wall": "Muret de pilier en basalte craquelé", + "block.middle-earth.chiseled_smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse sculpté", + "item.middle-earth.chiseled_smooth_basalt_vertical_slab": "Dalle verticale en basalte lisse sculpté", + "block.middle-earth.chiseled_smooth_basalt_wall": "Muret en basalte lisse sculpté", + "item.middle-earth.chiseled_smooth_basalt_wall": "Muret en basalte lisse sculpté", + "block.middle-earth.chiseled_basalt_bricks_vertical_slab": "Dalle verticale de briques en basalte sculptées", + "item.middle-earth.chiseled_basalt_bricks_vertical_slab": "Dalle verticale de briques en basalte sculptées", + "block.middle-earth.chiseled_basalt_bricks_wall": "Muret de briques en basalte sculptées", + "item.middle-earth.chiseled_basalt_bricks_wall": "Muret de briques en basalte sculptées", + "block.middle-earth.mossy_basalt_brick_slab": "Brique en basalte moussue", + "item.middle-earth.mossy_basalt_brick_slab": "Brique en basalte moussue", + "block.middle-earth.mossy_basalt_brick_stairs": "Escalier de brique en basalte moussue", + "item.middle-earth.mossy_basalt_brick_stairs": "Escalier de brique en basalte moussue", + "block.middle-earth.mossy_basalt_brick_vertical_slab": "Dalle verticale de brique en basalte moussue", + "item.middle-earth.mossy_basalt_brick_vertical_slab": "Dalle verticale de brique en basalte moussue", + "block.middle-earth.mossy_basalt_brick_wall": "Muret de brique en basalte moussue", + "item.middle-earth.mossy_basalt_brick_wall": "Muret de brique en basalte moussue", + "block.middle-earth.cracked_basalt_brick_slab": "Brique en basalte craquelée", + "item.middle-earth.cracked_basalt_brick_slab": "Brique en basalte craquelée", + "block.middle-earth.cracked_basalt_brick_stairs": "Escalier de brique en basalte craquelée", + "item.middle-earth.cracked_basalt_brick_stairs": "Escalier de brique en basalte craquelée", + "block.middle-earth.cracked_basalt_brick_vertical_slab": "Dalle verticale de brique en basalte craquelée", + "item.middle-earth.cracked_basalt_brick_vertical_slab": "Dalle verticale de brique en basalte craquelée", + "block.middle-earth.cracked_basalt_brick_wall": "Muret de brique en basalte craquelée", + "item.middle-earth.cracked_basalt_brick_wall": "Muret de brique en basalte craquelée", + "block.middle-earth.chiseled_basalt_tiles_vertical_slab": "Dalle verticale de basalte carrelé sculpté", + "item.middle-earth.chiseled_basalt_tiles_vertical_slab": "Dalle verticale de basalte carrelé sculpté", + "block.middle-earth.chiseled_basalt_tiles_wall": "Muret de basalte carrelé sculpté", + "item.middle-earth.chiseled_basalt_tiles_wall": "Muret de basalte carrelé sculpté", + "block.middle-earth.mossy_basalt_tile_slab": "Tuile en basalte moussue", + "item.middle-earth.mossy_basalt_tile_slab": "Tuile en basalte moussue", + "block.middle-earth.mossy_basalt_tile_stairs": "Escalier de tuile en basalte moussue", + "item.middle-earth.mossy_basalt_tile_stairs": "Escalier de tuile en basalte moussue", + "block.middle-earth.mossy_basalt_tile_vertical_slab": "Dalle verticale de tuile en basalte moussue", + "item.middle-earth.mossy_basalt_tile_vertical_slab": "Dalle verticale de tuile en basalte moussue", + "block.middle-earth.mossy_basalt_tile_wall": "Muret de tuile en basalte moussue", + "item.middle-earth.mossy_basalt_tile_wall": "Muret de tuile en basalte moussue", + "block.middle-earth.cracked_basalt_tile_slab": "Tuile en basalte craquelée", + "item.middle-earth.cracked_basalt_tile_slab": "Tuile en basalte craquelée", + "block.middle-earth.cracked_basalt_tile_stairs": "Escalier de tuile en basalte craquelée", + "item.middle-earth.cracked_basalt_tile_stairs": "Escalier de tuile en basalte craquelée", + "block.middle-earth.cracked_basalt_tile_vertical_slab": "Dalle verticale de tuile en basalte craquelée", + "item.middle-earth.cracked_basalt_tile_vertical_slab": "Dalle verticale de tuile en basalte craquelée", + "block.middle-earth.cracked_basalt_tile_wall": "Muret de tuile en basalte craquelée", + "item.middle-earth.cracked_basalt_tile_wall": "Muret de tuile en basalte craquelée", + "block.middle-earth.chiseled_polished_basalt_vertical_slab": "Dalle verticale en basalte poli sculpté", + "item.middle-earth.chiseled_polished_basalt_vertical_slab": "Dalle verticale en basalte poli sculpté", + "block.middle-earth.chiseled_polished_basalt_wall": "Muret en basalte poli sculpté", + "item.middle-earth.chiseled_polished_basalt_wall": "Muret en basalte poli sculpté", + "block.middle-earth.chiseled_basalt_vertical_slab": "Dalle verticale en basalte sculpté", + "item.middle-earth.chiseled_basalt_vertical_slab": "Dalle verticale en basalte sculpté", + "block.middle-earth.chiseled_basalt_wall": "Muret en basalte sculpté", + "item.middle-earth.chiseled_basalt_wall": "Muret en basalte sculpté", + "block.middle-earth.mossy_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf moussu", + "item.middle-earth.mossy_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf moussu", + "block.middle-earth.mossy_tuff_pillar_wall": "Muret de pilier en tuf moussu", + "item.middle-earth.mossy_tuff_pillar_wall": "Muret de pilier en tuf moussu", + "block.middle-earth.cracked_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf craquelé", + "item.middle-earth.cracked_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf craquelé", + "block.middle-earth.cracked_tuff_pillar_wall": "Muret de pilier en tuf craquelé", + "item.middle-earth.cracked_tuff_pillar_wall": "Muret de pilier en tuf craquelé", + "block.middle-earth.chiseled_smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse sculpté", + "item.middle-earth.chiseled_smooth_tuff_vertical_slab": "Dalle verticale en tuf lisse sculpté", + "block.middle-earth.chiseled_smooth_tuff_wall": "Muret en tuf lisse sculpté", + "item.middle-earth.chiseled_smooth_tuff_wall": "Muret en tuf lisse sculpté", + "block.middle-earth.chiseled_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf sculptées", + "item.middle-earth.chiseled_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf sculptées", + "block.middle-earth.chiseled_tuff_bricks_wall": "Muret de briques en tuf sculptées", + "item.middle-earth.chiseled_tuff_bricks_wall": "Muret de briques en tuf sculptées", + "block.middle-earth.mossy_tuff_brick_slab": "Brique en tuf moussue", + "item.middle-earth.mossy_tuff_brick_slab": "Brique en tuf moussue", + "block.middle-earth.mossy_tuff_brick_stairs": "Escalier de brique en tuf moussue", + "item.middle-earth.mossy_tuff_brick_stairs": "Escalier de brique en tuf moussue", + "block.middle-earth.mossy_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf moussue", + "item.middle-earth.mossy_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf moussue", + "block.middle-earth.mossy_tuff_brick_wall": "Muret de brique en tuf moussue", + "item.middle-earth.mossy_tuff_brick_wall": "Muret de brique en tuf moussue", + "block.middle-earth.cracked_tuff_brick_slab": "Brique en tuf craquelée", + "item.middle-earth.cracked_tuff_brick_slab": "Brique en tuf craquelée", + "block.middle-earth.cracked_tuff_brick_stairs": "Escalier de brique en tuf craquelée", + "item.middle-earth.cracked_tuff_brick_stairs": "Escalier de brique en tuf craquelée", + "block.middle-earth.cracked_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf craquelée", + "item.middle-earth.cracked_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf craquelée", + "block.middle-earth.cracked_tuff_brick_wall": "Muret de brique en tuf craquelée", + "item.middle-earth.cracked_tuff_brick_wall": "Muret de brique en tuf craquelée", + "block.middle-earth.chiseled_tuff_tiles_vertical_slab": "Dalle verticale de tuf carrelé sculpté", + "item.middle-earth.chiseled_tuff_tiles_vertical_slab": "Dalle verticale de tuf carrelé sculpté", + "block.middle-earth.chiseled_tuff_tiles_wall": "Muret de tuf carrelé sculpté", + "item.middle-earth.chiseled_tuff_tiles_wall": "Muret de tuf carrelé sculpté", + "block.middle-earth.mossy_tuff_tile_slab": "Tuile en tuf moussue", + "item.middle-earth.mossy_tuff_tile_slab": "Tuile en tuf moussue", + "block.middle-earth.mossy_tuff_tile_stairs": "Escalier de tuile en tuf moussue", + "item.middle-earth.mossy_tuff_tile_stairs": "Escalier de tuile en tuf moussue", + "block.middle-earth.mossy_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf moussue", + "item.middle-earth.mossy_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf moussue", + "block.middle-earth.mossy_tuff_tile_wall": "Muret de tuile en tuf moussue", + "item.middle-earth.mossy_tuff_tile_wall": "Muret de tuile en tuf moussue", + "block.middle-earth.cracked_tuff_tile_slab": "Tuile en tuf craquelée", + "item.middle-earth.cracked_tuff_tile_slab": "Tuile en tuf craquelée", + "block.middle-earth.cracked_tuff_tile_stairs": "Escalier de tuile en tuf craquelée", + "item.middle-earth.cracked_tuff_tile_stairs": "Escalier de tuile en tuf craquelée", + "block.middle-earth.cracked_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf craquelée", + "item.middle-earth.cracked_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf craquelée", + "block.middle-earth.cracked_tuff_tile_wall": "Muret de tuile en tuf craquelée", + "item.middle-earth.cracked_tuff_tile_wall": "Muret de tuile en tuf craquelée", + "block.middle-earth.chiseled_polished_tuff_vertical_slab": "Dalle verticale en tuf poli sculpté", + "item.middle-earth.chiseled_polished_tuff_vertical_slab": "Dalle verticale en tuf poli sculpté", + "block.middle-earth.chiseled_polished_tuff_wall": "Muret en tuf poli sculpté", + "item.middle-earth.chiseled_polished_tuff_wall": "Muret en tuf poli sculpté", + "block.middle-earth.chiseled_tuff_vertical_slab": "Dalle verticale en tuf sculpté", + "item.middle-earth.chiseled_tuff_vertical_slab": "Dalle verticale en tuf sculpté", + "block.middle-earth.chiseled_tuff_wall": "Muret en tuf sculpté", + "item.middle-earth.chiseled_tuff_wall": "Muret en tuf sculpté", + "block.middle-earth.mossy_blue_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf bleu moussu", + "item.middle-earth.mossy_blue_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf bleu moussu", + "block.middle-earth.mossy_blue_tuff_pillar_wall": "Muret de pilier en tuf bleu moussu", + "item.middle-earth.mossy_blue_tuff_pillar_wall": "Muret de pilier en tuf bleu moussu", + "block.middle-earth.cracked_blue_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf bleu craquelé", + "item.middle-earth.cracked_blue_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf bleu craquelé", + "block.middle-earth.cracked_blue_tuff_pillar_wall": "Muret de pilier en tuf bleu craquelé", + "item.middle-earth.cracked_blue_tuff_pillar_wall": "Muret de pilier en tuf bleu craquelé", + "block.middle-earth.smooth_blue_tuff": "Tuf bleu lisse", + "item.middle-earth.smooth_blue_tuff": "Tuf bleu lisse", + "block.middle-earth.smooth_blue_tuff_slab": "Dalle en tuf bleu lisse", + "item.middle-earth.smooth_blue_tuff_slab": "Dalle en tuf bleu lisse", + "block.middle-earth.smooth_blue_tuff_stairs": "Escalier en tuf bleu lisse", + "item.middle-earth.smooth_blue_tuff_stairs": "Escalier en tuf bleu lisse", + "block.middle-earth.smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse", + "item.middle-earth.smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse", + "block.middle-earth.smooth_blue_tuff_wall": "Muret en tuf bleu lisse", + "item.middle-earth.smooth_blue_tuff_wall": "Muret en tuf bleu lisse", + "block.middle-earth.mossy_smooth_blue_tuff": "Tuf bleu lisse moussu", + "item.middle-earth.mossy_smooth_blue_tuff": "Tuf bleu lisse moussu", + "block.middle-earth.mossy_smooth_blue_tuff_slab": "Dalle en tuf bleu lisse moussu", + "item.middle-earth.mossy_smooth_blue_tuff_slab": "Dalle en tuf bleu lisse moussu", + "block.middle-earth.mossy_smooth_blue_tuff_stairs": "Escalier en tuf bleu lisse moussu", + "item.middle-earth.mossy_smooth_blue_tuff_stairs": "Escalier en tuf bleu lisse moussu", + "block.middle-earth.mossy_smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse moussu", + "item.middle-earth.mossy_smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse moussu", + "block.middle-earth.mossy_smooth_blue_tuff_wall": "Muret en tuf bleu lisse moussu", + "item.middle-earth.mossy_smooth_blue_tuff_wall": "Muret en tuf bleu lisse moussu", + "block.middle-earth.cracked_smooth_blue_tuff": "Tuf bleu lisse craquelé", + "item.middle-earth.cracked_smooth_blue_tuff": "Tuf bleu lisse craquelé", + "block.middle-earth.cracked_smooth_blue_tuff_slab": "Dalle en tuf bleu lisse craquelé", + "item.middle-earth.cracked_smooth_blue_tuff_slab": "Dalle en tuf bleu lisse craquelé", + "block.middle-earth.cracked_smooth_blue_tuff_stairs": "Escalier en tuf bleu lisse craquelé", + "item.middle-earth.cracked_smooth_blue_tuff_stairs": "Escalier en tuf bleu lisse craquelé", + "block.middle-earth.cracked_smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse craquelé", + "item.middle-earth.cracked_smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse craquelé", + "block.middle-earth.cracked_smooth_blue_tuff_wall": "Muret en tuf bleu lisse craquelé", + "item.middle-earth.cracked_smooth_blue_tuff_wall": "Muret en tuf bleu lisse craquelé", + "block.middle-earth.chiseled_smooth_blue_tuff": "Tuf bleu lisse sculpté", + "item.middle-earth.chiseled_smooth_blue_tuff": "Tuf bleu lisse sculpté", + "block.middle-earth.chiseled_smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse sculpté", + "item.middle-earth.chiseled_smooth_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu lisse sculpté", + "block.middle-earth.chiseled_smooth_blue_tuff_wall": "Muret en tuf bleu lisse sculpté", + "item.middle-earth.chiseled_smooth_blue_tuff_wall": "Muret en tuf bleu lisse sculpté", + "block.middle-earth.old_blue_tuff": "Vieux tuf bleu", + "item.middle-earth.old_blue_tuff": "Vieux tuf bleu", + "block.middle-earth.old_blue_tuff_slab": "Dalle de vieux tuf bleu", + "item.middle-earth.old_blue_tuff_slab": "Dalle de vieux tuf bleu", + "block.middle-earth.old_blue_tuff_stairs": "Escalier en vieux tuf bleu", + "item.middle-earth.old_blue_tuff_stairs": "Escalier en vieux tuf bleu", + "block.middle-earth.old_blue_tuff_vertical_slab": "Dalle verticale de vieux tuf bleu", + "item.middle-earth.old_blue_tuff_vertical_slab": "Dalle verticale de vieux tuf bleu", + "block.middle-earth.old_blue_tuff_wall": "Muret en vieux tuf bleu", + "item.middle-earth.old_blue_tuff_wall": "Muret en vieux tuf bleu", + "block.middle-earth.chiseled_blue_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf bleu sculptées", + "item.middle-earth.chiseled_blue_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf bleu sculptées", + "block.middle-earth.chiseled_blue_tuff_bricks_wall": "Muret de briques en tuf bleu sculptées", + "item.middle-earth.chiseled_blue_tuff_bricks_wall": "Muret de briques en tuf bleu sculptées", + "block.middle-earth.mossy_blue_tuff_brick_slab": "Brique en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_brick_slab": "Brique en tuf bleu moussue", + "block.middle-earth.mossy_blue_tuff_brick_stairs": "Escalier de brique en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_brick_stairs": "Escalier de brique en tuf bleu moussue", + "block.middle-earth.mossy_blue_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf bleu moussue", + "block.middle-earth.mossy_blue_tuff_brick_wall": "Muret de brique en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_brick_wall": "Muret de brique en tuf bleu moussue", + "block.middle-earth.cracked_blue_tuff_brick_slab": "Brique en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_brick_slab": "Brique en tuf bleu craquelée", + "block.middle-earth.cracked_blue_tuff_brick_stairs": "Escalier de brique en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_brick_stairs": "Escalier de brique en tuf bleu craquelée", + "block.middle-earth.cracked_blue_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf bleu craquelée", + "block.middle-earth.cracked_blue_tuff_brick_wall": "Muret de brique en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_brick_wall": "Muret de brique en tuf bleu craquelée", + "block.middle-earth.chiseled_blue_tuff_tiles": "Tuf bleu carrelé sculpté", + "item.middle-earth.chiseled_blue_tuff_tiles": "Tuf bleu carrelé sculpté", + "block.middle-earth.chiseled_blue_tuff_tiles_vertical_slab": "Dalle verticale de tuf bleu carrelé sculpté", + "item.middle-earth.chiseled_blue_tuff_tiles_vertical_slab": "Dalle verticale de tuf bleu carrelé sculpté", + "block.middle-earth.chiseled_blue_tuff_tiles_wall": "Muret de tuf bleu carrelé sculpté", + "item.middle-earth.chiseled_blue_tuff_tiles_wall": "Muret de tuf bleu carrelé sculpté", + "block.middle-earth.mossy_blue_tuff_tile_slab": "Tuile en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_tile_slab": "Tuile en tuf bleu moussue", + "block.middle-earth.mossy_blue_tuff_tile_stairs": "Escalier de tuile en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_tile_stairs": "Escalier de tuile en tuf bleu moussue", + "block.middle-earth.mossy_blue_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf bleu moussue", + "block.middle-earth.mossy_blue_tuff_tile_wall": "Muret de tuile en tuf bleu moussue", + "item.middle-earth.mossy_blue_tuff_tile_wall": "Muret de tuile en tuf bleu moussue", + "block.middle-earth.cracked_blue_tuff_tile_slab": "Tuile en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_tile_slab": "Tuile en tuf bleu craquelée", + "block.middle-earth.cracked_blue_tuff_tile_stairs": "Escalier de tuile en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_tile_stairs": "Escalier de tuile en tuf bleu craquelée", + "block.middle-earth.cracked_blue_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf bleu craquelée", + "block.middle-earth.cracked_blue_tuff_tile_wall": "Muret de tuile en tuf bleu craquelée", + "item.middle-earth.cracked_blue_tuff_tile_wall": "Muret de tuile en tuf bleu craquelée", + "block.middle-earth.chiseled_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli sculpté", + "item.middle-earth.chiseled_polished_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu poli sculpté", + "block.middle-earth.chiseled_polished_blue_tuff_wall": "Muret en tuf bleu poli sculpté", + "item.middle-earth.chiseled_polished_blue_tuff_wall": "Muret en tuf bleu poli sculpté", + "block.middle-earth.chiseled_blue_tuff": "Tuf bleu sculpté", + "item.middle-earth.chiseled_blue_tuff": "Tuf bleu sculpté", + "block.middle-earth.chiseled_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu sculpté", + "item.middle-earth.chiseled_blue_tuff_vertical_slab": "Dalle verticale en tuf bleu sculpté", + "block.middle-earth.chiseled_blue_tuff_wall": "Muret en tuf bleu sculpté", + "item.middle-earth.chiseled_blue_tuff_wall": "Muret en tuf bleu sculpté", + "block.middle-earth.cracked_green_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf vert craquelé", + "item.middle-earth.cracked_green_tuff_pillar_vertical_slab": "Dalle verticale de pilier en tuf vert craquelé", + "block.middle-earth.cracked_green_tuff_pillar_wall": "Muret de pilier en tuf vert craquelé", + "item.middle-earth.cracked_green_tuff_pillar_wall": "Muret de pilier en tuf vert craquelé", + "block.middle-earth.chiseled_smooth_green_tuff_vertical_slab": "Dalle verticale en tuf vert lisse sculpté", + "item.middle-earth.chiseled_smooth_green_tuff_vertical_slab": "Dalle verticale en tuf vert lisse sculpté", + "block.middle-earth.chiseled_smooth_green_tuff_wall": "Muret en tuf vert lisse sculpté", + "item.middle-earth.chiseled_smooth_green_tuff_wall": "Muret en tuf vert lisse sculpté", + "block.middle-earth.old_green_tuff": "Vieux tuf vert", + "item.middle-earth.old_green_tuff": "Vieux tuf vert", + "block.middle-earth.old_green_tuff_slab": "Dalle de vieux tuf vert", + "item.middle-earth.old_green_tuff_slab": "Dalle de vieux tuf vert", + "block.middle-earth.old_green_tuff_stairs": "Escalier en vieux tuf vert", + "item.middle-earth.old_green_tuff_stairs": "Escalier en vieux tuf vert", + "block.middle-earth.old_green_tuff_vertical_slab": "Dalle verticale de vieux tuf vert", + "item.middle-earth.old_green_tuff_vertical_slab": "Dalle verticale de vieux tuf vert", + "block.middle-earth.old_green_tuff_wall": "Muret en vieux tuf vert", + "item.middle-earth.old_green_tuff_wall": "Muret en vieux tuf vert", + "block.middle-earth.chiseled_green_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf vert sculptées", + "item.middle-earth.chiseled_green_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf vert sculptées", + "block.middle-earth.chiseled_green_tuff_bricks_wall": "Muret de briques en tuf vert sculptées", + "item.middle-earth.chiseled_green_tuff_bricks_wall": "Muret de briques en tuf vert sculptées", + "block.middle-earth.cracked_green_tuff_brick_slab": "Brique en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_brick_slab": "Brique en tuf vert craquelée", + "block.middle-earth.cracked_green_tuff_brick_stairs": "Escalier de brique en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_brick_stairs": "Escalier de brique en tuf vert craquelée", + "block.middle-earth.cracked_green_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_brick_vertical_slab": "Dalle verticale de brique en tuf vert craquelée", + "block.middle-earth.cracked_green_tuff_brick_wall": "Muret de brique en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_brick_wall": "Muret de brique en tuf vert craquelée", + "block.middle-earth.chiseled_green_tuff_tiles_vertical_slab": "Dalle verticale de tuf vert carrelé sculpté", + "item.middle-earth.chiseled_green_tuff_tiles_vertical_slab": "Dalle verticale de tuf vert carrelé sculpté", + "block.middle-earth.chiseled_green_tuff_tiles_wall": "Muret de tuf vert carrelé sculpté", + "item.middle-earth.chiseled_green_tuff_tiles_wall": "Muret de tuf vert carrelé sculpté", + "block.middle-earth.cracked_green_tuff_tile_slab": "Tuile en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_tile_slab": "Tuile en tuf vert craquelée", + "block.middle-earth.cracked_green_tuff_tile_stairs": "Escalier de tuile en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_tile_stairs": "Escalier de tuile en tuf vert craquelée", + "block.middle-earth.cracked_green_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_tile_vertical_slab": "Dalle verticale de tuile en tuf vert craquelée", + "block.middle-earth.cracked_green_tuff_tile_wall": "Muret de tuile en tuf vert craquelée", + "item.middle-earth.cracked_green_tuff_tile_wall": "Muret de tuile en tuf vert craquelée", + "block.middle-earth.chiseled_polished_green_tuff_vertical_slab": "Dalle verticale en tuf vert poli sculpté", + "item.middle-earth.chiseled_polished_green_tuff_vertical_slab": "Dalle verticale en tuf vert poli sculpté", + "block.middle-earth.chiseled_polished_green_tuff_wall": "Muret en tuf vert poli sculpté", + "item.middle-earth.chiseled_polished_green_tuff_wall": "Muret en tuf vert poli sculpté", + "block.middle-earth.chiseled_green_tuff_vertical_slab": "Dalle verticale en tuf vert sculpté", + "item.middle-earth.chiseled_green_tuff_vertical_slab": "Dalle verticale en tuf vert sculpté", + "block.middle-earth.chiseled_green_tuff_wall": "Muret en tuf vert sculpté", + "item.middle-earth.chiseled_green_tuff_wall": "Muret en tuf vert sculpté", + "block.middle-earth.mossy_granite_pillar_vertical_slab": "Dalle verticale de pilier en granite moussu", + "item.middle-earth.mossy_granite_pillar_vertical_slab": "Dalle verticale de pilier en granite moussu", + "block.middle-earth.mossy_granite_pillar_wall": "Muret de pilier en granite moussu", + "item.middle-earth.mossy_granite_pillar_wall": "Muret de pilier en granite moussu", + "block.middle-earth.cracked_granite_pillar_vertical_slab": "Dalle verticale de pilier en granite craquelé", + "item.middle-earth.cracked_granite_pillar_vertical_slab": "Dalle verticale de pilier en granite craquelé", + "block.middle-earth.cracked_granite_pillar_wall": "Muret de pilier en granite craquelé", + "item.middle-earth.cracked_granite_pillar_wall": "Muret de pilier en granite craquelé", + "block.middle-earth.chiseled_smooth_granite_vertical_slab": "Dalle verticale en granite lisse sculpté", + "item.middle-earth.chiseled_smooth_granite_vertical_slab": "Dalle verticale en granite lisse sculpté", + "block.middle-earth.chiseled_smooth_granite_wall": "Muret en granite lisse sculpté", + "item.middle-earth.chiseled_smooth_granite_wall": "Muret en granite lisse sculpté", + "block.middle-earth.chiseled_granite_bricks_vertical_slab": "Dalle verticale de briques en granite sculptées", + "item.middle-earth.chiseled_granite_bricks_vertical_slab": "Dalle verticale de briques en granite sculptées", + "block.middle-earth.chiseled_granite_bricks_wall": "Muret de briques en granite sculptées", + "item.middle-earth.chiseled_granite_bricks_wall": "Muret de briques en granite sculptées", + "block.middle-earth.mossy_granite_brick_slab": "Brique en granite moussue", + "item.middle-earth.mossy_granite_brick_slab": "Brique en granite moussue", + "block.middle-earth.mossy_granite_brick_stairs": "Escalier de brique en granite moussue", + "item.middle-earth.mossy_granite_brick_stairs": "Escalier de brique en granite moussue", + "block.middle-earth.mossy_granite_brick_vertical_slab": "Dalle verticale de brique en granite moussue", + "item.middle-earth.mossy_granite_brick_vertical_slab": "Dalle verticale de brique en granite moussue", + "block.middle-earth.mossy_granite_brick_wall": "Muret de brique en granite moussue", + "item.middle-earth.mossy_granite_brick_wall": "Muret de brique en granite moussue", + "block.middle-earth.cracked_granite_brick_slab": "Brique en granite craquelée", + "item.middle-earth.cracked_granite_brick_slab": "Brique en granite craquelée", + "block.middle-earth.cracked_granite_brick_stairs": "Escalier de brique en granite craquelée", + "item.middle-earth.cracked_granite_brick_stairs": "Escalier de brique en granite craquelée", + "block.middle-earth.cracked_granite_brick_vertical_slab": "Dalle verticale de brique en granite craquelée", + "item.middle-earth.cracked_granite_brick_vertical_slab": "Dalle verticale de brique en granite craquelée", + "block.middle-earth.cracked_granite_brick_wall": "Muret de brique en granite craquelée", + "item.middle-earth.cracked_granite_brick_wall": "Muret de brique en granite craquelée", + "block.middle-earth.chiseled_granite_tiles_vertical_slab": "Dalle verticale de granite carrelé sculpté", + "item.middle-earth.chiseled_granite_tiles_vertical_slab": "Dalle verticale de granite carrelé sculpté", + "block.middle-earth.chiseled_granite_tiles_wall": "Muret de granite carrelé sculpté", + "item.middle-earth.chiseled_granite_tiles_wall": "Muret de granite carrelé sculpté", + "block.middle-earth.mossy_granite_tile_slab": "Tuile en granite moussue", + "item.middle-earth.mossy_granite_tile_slab": "Tuile en granite moussue", + "block.middle-earth.mossy_granite_tile_stairs": "Escalier de tuile en granite moussue", + "item.middle-earth.mossy_granite_tile_stairs": "Escalier de tuile en granite moussue", + "block.middle-earth.mossy_granite_tile_vertical_slab": "Dalle verticale de tuile en granite moussue", + "item.middle-earth.mossy_granite_tile_vertical_slab": "Dalle verticale de tuile en granite moussue", + "block.middle-earth.mossy_granite_tile_wall": "Muret de tuile en granite moussue", + "item.middle-earth.mossy_granite_tile_wall": "Muret de tuile en granite moussue", + "block.middle-earth.cracked_granite_tile_slab": "Tuile en granite craquelée", + "item.middle-earth.cracked_granite_tile_slab": "Tuile en granite craquelée", + "block.middle-earth.cracked_granite_tile_stairs": "Escalier de tuile en granite craquelée", + "item.middle-earth.cracked_granite_tile_stairs": "Escalier de tuile en granite craquelée", + "block.middle-earth.cracked_granite_tile_vertical_slab": "Dalle verticale de tuile en granite craquelée", + "item.middle-earth.cracked_granite_tile_vertical_slab": "Dalle verticale de tuile en granite craquelée", + "block.middle-earth.cracked_granite_tile_wall": "Muret de tuile en granite craquelée", + "item.middle-earth.cracked_granite_tile_wall": "Muret de tuile en granite craquelée", + "block.middle-earth.chiseled_polished_granite_vertical_slab": "Dalle verticale en granite poli sculpté", + "item.middle-earth.chiseled_polished_granite_vertical_slab": "Dalle verticale en granite poli sculpté", + "block.middle-earth.chiseled_polished_granite_wall": "Muret en granite poli sculpté", + "item.middle-earth.chiseled_polished_granite_wall": "Muret en granite poli sculpté", + "block.middle-earth.chiseled_granite_vertical_slab": "Dalle verticale en granite sculpté", + "item.middle-earth.chiseled_granite_vertical_slab": "Dalle verticale en granite sculpté", + "block.middle-earth.chiseled_granite_wall": "Muret en granite sculpté", + "item.middle-earth.chiseled_granite_wall": "Muret en granite sculpté", + "block.middle-earth.mossy_diorite_pillar_vertical_slab": "Dalle verticale de pilier en diorite moussue", + "item.middle-earth.mossy_diorite_pillar_vertical_slab": "Dalle verticale de pilier en diorite moussue", + "block.middle-earth.mossy_diorite_pillar_wall": "Muret de pilier en diorite moussue", + "item.middle-earth.mossy_diorite_pillar_wall": "Muret de pilier en diorite moussue", + "block.middle-earth.cracked_diorite_pillar_vertical_slab": "Dalle verticale de pilier en diorite craquelée", + "item.middle-earth.cracked_diorite_pillar_vertical_slab": "Dalle verticale de pilier en diorite craquelée", + "block.middle-earth.cracked_diorite_pillar_wall": "Muret de pilier en diorite craquelée", + "item.middle-earth.cracked_diorite_pillar_wall": "Muret de pilier en diorite craquelée", + "block.middle-earth.chiseled_smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse sculptée", + "item.middle-earth.chiseled_smooth_diorite_vertical_slab": "Dalle verticale en diorite lisse sculptée", + "block.middle-earth.chiseled_smooth_diorite_wall": "Muret en diorite lisse sculptée", + "item.middle-earth.chiseled_smooth_diorite_wall": "Muret en diorite lisse sculptée", + "block.middle-earth.chiseled_diorite_bricks_vertical_slab": "Dalle verticale de briques en diorite sculptées", + "item.middle-earth.chiseled_diorite_bricks_vertical_slab": "Dalle verticale de briques en diorite sculptées", + "block.middle-earth.chiseled_diorite_bricks_wall": "Muret de briques en diorite sculptées", + "item.middle-earth.chiseled_diorite_bricks_wall": "Muret de briques en diorite sculptées", + "block.middle-earth.mossy_diorite_brick_slab": "Brique en diorite moussue", + "item.middle-earth.mossy_diorite_brick_slab": "Brique en diorite moussue", + "block.middle-earth.mossy_diorite_brick_stairs": "Escalier de brique en diorite moussue", + "item.middle-earth.mossy_diorite_brick_stairs": "Escalier de brique en diorite moussue", + "block.middle-earth.mossy_diorite_brick_vertical_slab": "Dalle verticale de brique en diorite moussue", + "item.middle-earth.mossy_diorite_brick_vertical_slab": "Dalle verticale de brique en diorite moussue", + "block.middle-earth.mossy_diorite_brick_wall": "Muret de brique en diorite moussue", + "item.middle-earth.mossy_diorite_brick_wall": "Muret de brique en diorite moussue", + "block.middle-earth.cracked_diorite_brick_slab": "Brique en diorite craquelée", + "item.middle-earth.cracked_diorite_brick_slab": "Brique en diorite craquelée", + "block.middle-earth.cracked_diorite_brick_stairs": "Escalier de brique en diorite craquelée", + "item.middle-earth.cracked_diorite_brick_stairs": "Escalier de brique en diorite craquelée", + "block.middle-earth.cracked_diorite_brick_vertical_slab": "Dalle verticale de brique en diorite craquelée", + "item.middle-earth.cracked_diorite_brick_vertical_slab": "Dalle verticale de brique en diorite craquelée", + "block.middle-earth.cracked_diorite_brick_wall": "Muret de brique en diorite craquelée", + "item.middle-earth.cracked_diorite_brick_wall": "Muret de brique en diorite craquelée", + "block.middle-earth.chiseled_diorite_tiles_vertical_slab": "Dalle verticale de diorite carrelée sculptée", + "item.middle-earth.chiseled_diorite_tiles_vertical_slab": "Dalle verticale de diorite carrelée sculptée", + "block.middle-earth.chiseled_diorite_tiles_wall": "Muret de diorite carrelée sculptée", + "item.middle-earth.chiseled_diorite_tiles_wall": "Muret de diorite carrelée sculptée", + "block.middle-earth.mossy_diorite_tile_slab": "Tuile en diorite moussue", + "item.middle-earth.mossy_diorite_tile_slab": "Tuile en diorite moussue", + "block.middle-earth.mossy_diorite_tile_stairs": "Escalier de tuile en diorite moussue", + "item.middle-earth.mossy_diorite_tile_stairs": "Escalier de tuile en diorite moussue", + "block.middle-earth.mossy_diorite_tile_vertical_slab": "Dalle verticale de tuile en diorite moussue", + "item.middle-earth.mossy_diorite_tile_vertical_slab": "Dalle verticale de tuile en diorite moussue", + "block.middle-earth.mossy_diorite_tile_wall": "Muret de tuile en diorite moussue", + "item.middle-earth.mossy_diorite_tile_wall": "Muret de tuile en diorite moussue", + "block.middle-earth.cracked_diorite_tile_slab": "Tuile en diorite craquelée", + "item.middle-earth.cracked_diorite_tile_slab": "Tuile en diorite craquelée", + "block.middle-earth.cracked_diorite_tile_stairs": "Escalier de tuile en diorite craquelée", + "item.middle-earth.cracked_diorite_tile_stairs": "Escalier de tuile en diorite craquelée", + "block.middle-earth.cracked_diorite_tile_vertical_slab": "Dalle verticale de tuile en diorite craquelée", + "item.middle-earth.cracked_diorite_tile_vertical_slab": "Dalle verticale de tuile en diorite craquelée", + "block.middle-earth.cracked_diorite_tile_wall": "Muret de tuile en diorite craquelée", + "item.middle-earth.cracked_diorite_tile_wall": "Muret de tuile en diorite craquelée", + "block.middle-earth.chiseled_polished_diorite_vertical_slab": "Dalle verticale en diorite polie sculptée", + "item.middle-earth.chiseled_polished_diorite_vertical_slab": "Dalle verticale en diorite polie sculptée", + "block.middle-earth.chiseled_polished_diorite_wall": "Muret en diorite polie sculptée", + "item.middle-earth.chiseled_polished_diorite_wall": "Muret en diorite polie sculptée", + "block.middle-earth.chiseled_diorite_vertical_slab": "Dalle verticale en diorite sculptée", + "item.middle-earth.chiseled_diorite_vertical_slab": "Dalle verticale en diorite sculptée", + "block.middle-earth.chiseled_diorite_wall": "Muret en diorite sculptée", + "item.middle-earth.chiseled_diorite_wall": "Muret en diorite sculptée", + "block.middle-earth.mossy_gneiss_pillar_vertical_slab": "Dalle verticale de pilier en gneiss moussu", + "item.middle-earth.mossy_gneiss_pillar_vertical_slab": "Dalle verticale de pilier en gneiss moussu", + "block.middle-earth.mossy_gneiss_pillar_wall": "Muret de pilier en gneiss moussu", + "item.middle-earth.mossy_gneiss_pillar_wall": "Muret de pilier en gneiss moussu", + "block.middle-earth.cracked_gneiss_pillar_vertical_slab": "Dalle verticale de pilier en gneiss craquelé", + "item.middle-earth.cracked_gneiss_pillar_vertical_slab": "Dalle verticale de pilier en gneiss craquelé", + "block.middle-earth.cracked_gneiss_pillar_wall": "Muret de pilier en gneiss craquelé", + "item.middle-earth.cracked_gneiss_pillar_wall": "Muret de pilier en gneiss craquelé", + "block.middle-earth.mossy_smooth_gneiss": "Gneiss lisse moussu", + "item.middle-earth.mossy_smooth_gneiss": "Gneiss lisse moussu", + "block.middle-earth.mossy_smooth_gneiss_slab": "Dalle en gneiss lisse moussu", + "item.middle-earth.mossy_smooth_gneiss_slab": "Dalle en gneiss lisse moussu", + "block.middle-earth.mossy_smooth_gneiss_stairs": "Escalier en gneiss lisse moussu", + "item.middle-earth.mossy_smooth_gneiss_stairs": "Escalier en gneiss lisse moussu", + "block.middle-earth.mossy_smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse moussu", + "item.middle-earth.mossy_smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse moussu", + "block.middle-earth.mossy_smooth_gneiss_wall": "Muret en gneiss lisse moussu", + "item.middle-earth.mossy_smooth_gneiss_wall": "Muret en gneiss lisse moussu", + "block.middle-earth.cracked_smooth_gneiss": "Gneiss lisse craquelé", + "item.middle-earth.cracked_smooth_gneiss": "Gneiss lisse craquelé", + "block.middle-earth.cracked_smooth_gneiss_slab": "Dalle en gneiss lisse craquelé", + "item.middle-earth.cracked_smooth_gneiss_slab": "Dalle en gneiss lisse craquelé", + "block.middle-earth.cracked_smooth_gneiss_stairs": "Escalier en gneiss lisse craquelé", + "item.middle-earth.cracked_smooth_gneiss_stairs": "Escalier en gneiss lisse craquelé", + "block.middle-earth.cracked_smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse craquelé", + "item.middle-earth.cracked_smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse craquelé", + "block.middle-earth.cracked_smooth_gneiss_wall": "Muret en gneiss lisse craquelé", + "item.middle-earth.cracked_smooth_gneiss_wall": "Muret en gneiss lisse craquelé", + "block.middle-earth.chiseled_smooth_gneiss": "Gneiss lisse sculpté", + "item.middle-earth.chiseled_smooth_gneiss": "Gneiss lisse sculpté", + "block.middle-earth.chiseled_smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse sculpté", + "item.middle-earth.chiseled_smooth_gneiss_vertical_slab": "Dalle verticale en gneiss lisse sculpté", + "block.middle-earth.chiseled_smooth_gneiss_wall": "Muret en gneiss lisse sculpté", + "item.middle-earth.chiseled_smooth_gneiss_wall": "Muret en gneiss lisse sculpté", + "block.middle-earth.old_gneiss": "Vieux gneiss", + "item.middle-earth.old_gneiss": "Vieux gneiss", + "block.middle-earth.old_gneiss_slab": "Dalle de vieux gneiss", + "item.middle-earth.old_gneiss_slab": "Dalle de vieux gneiss", + "block.middle-earth.old_gneiss_stairs": "Escalier en vieux gneiss", + "item.middle-earth.old_gneiss_stairs": "Escalier en vieux gneiss", + "block.middle-earth.old_gneiss_vertical_slab": "Dalle verticale de vieux gneiss", + "item.middle-earth.old_gneiss_vertical_slab": "Dalle verticale de vieux gneiss", + "block.middle-earth.old_gneiss_wall": "Muret en vieux gneiss", + "item.middle-earth.old_gneiss_wall": "Muret en vieux gneiss", + "block.middle-earth.chiseled_gneiss_bricks_vertical_slab": "Dalle verticale de briques en gneiss sculptées", + "item.middle-earth.chiseled_gneiss_bricks_vertical_slab": "Dalle verticale de briques en gneiss sculptées", + "block.middle-earth.chiseled_gneiss_bricks_wall": "Muret de briques en gneiss sculptées", + "item.middle-earth.chiseled_gneiss_bricks_wall": "Muret de briques en gneiss sculptées", + "block.middle-earth.mossy_gneiss_brick_slab": "Brique en gneiss moussue", + "item.middle-earth.mossy_gneiss_brick_slab": "Brique en gneiss moussue", + "block.middle-earth.mossy_gneiss_brick_stairs": "Escalier de brique en gneiss moussue", + "item.middle-earth.mossy_gneiss_brick_stairs": "Escalier de brique en gneiss moussue", + "block.middle-earth.mossy_gneiss_brick_vertical_slab": "Dalle verticale de brique en gneiss moussue", + "item.middle-earth.mossy_gneiss_brick_vertical_slab": "Dalle verticale de brique en gneiss moussue", + "block.middle-earth.mossy_gneiss_brick_wall": "Muret de brique en gneiss moussue", + "item.middle-earth.mossy_gneiss_brick_wall": "Muret de brique en gneiss moussue", + "block.middle-earth.cracked_gneiss_brick_slab": "Brique en gneiss craquelée", + "item.middle-earth.cracked_gneiss_brick_slab": "Brique en gneiss craquelée", + "block.middle-earth.cracked_gneiss_brick_stairs": "Escalier de brique en gneiss craquelée", + "item.middle-earth.cracked_gneiss_brick_stairs": "Escalier de brique en gneiss craquelée", + "block.middle-earth.cracked_gneiss_brick_vertical_slab": "Dalle verticale de brique en gneiss craquelée", + "item.middle-earth.cracked_gneiss_brick_vertical_slab": "Dalle verticale de brique en gneiss craquelée", + "block.middle-earth.cracked_gneiss_brick_wall": "Muret de brique en gneiss craquelée", + "item.middle-earth.cracked_gneiss_brick_wall": "Muret de brique en gneiss craquelée", + "block.middle-earth.chiseled_gneiss_tiles": "Gneiss carrelé sculpté", + "item.middle-earth.chiseled_gneiss_tiles": "Gneiss carrelé sculpté", + "block.middle-earth.chiseled_gneiss_tiles_vertical_slab": "Dalle verticale de gneiss carrelé sculpté", + "item.middle-earth.chiseled_gneiss_tiles_vertical_slab": "Dalle verticale de gneiss carrelé sculpté", + "block.middle-earth.chiseled_gneiss_tiles_wall": "Muret de gneiss carrelé sculpté", + "item.middle-earth.chiseled_gneiss_tiles_wall": "Muret de gneiss carrelé sculpté", + "block.middle-earth.mossy_gneiss_tile_slab": "Tuile en gneiss moussue", + "item.middle-earth.mossy_gneiss_tile_slab": "Tuile en gneiss moussue", + "block.middle-earth.mossy_gneiss_tile_stairs": "Escalier de tuile en gneiss moussue", + "item.middle-earth.mossy_gneiss_tile_stairs": "Escalier de tuile en gneiss moussue", + "block.middle-earth.mossy_gneiss_tile_vertical_slab": "Dalle verticale de tuile en gneiss moussue", + "item.middle-earth.mossy_gneiss_tile_vertical_slab": "Dalle verticale de tuile en gneiss moussue", + "block.middle-earth.mossy_gneiss_tile_wall": "Muret de tuile en gneiss moussue", + "item.middle-earth.mossy_gneiss_tile_wall": "Muret de tuile en gneiss moussue", + "block.middle-earth.cracked_gneiss_tile_slab": "Tuile en gneiss craquelée", + "item.middle-earth.cracked_gneiss_tile_slab": "Tuile en gneiss craquelée", + "block.middle-earth.cracked_gneiss_tile_stairs": "Escalier de tuile en gneiss craquelée", + "item.middle-earth.cracked_gneiss_tile_stairs": "Escalier de tuile en gneiss craquelée", + "block.middle-earth.cracked_gneiss_tile_vertical_slab": "Dalle verticale de tuile en gneiss craquelée", + "item.middle-earth.cracked_gneiss_tile_vertical_slab": "Dalle verticale de tuile en gneiss craquelée", + "block.middle-earth.cracked_gneiss_tile_wall": "Muret de tuile en gneiss craquelée", + "item.middle-earth.cracked_gneiss_tile_wall": "Muret de tuile en gneiss craquelée", + "block.middle-earth.chiseled_polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli sculpté", + "item.middle-earth.chiseled_polished_gneiss_vertical_slab": "Dalle verticale en gneiss poli sculpté", + "block.middle-earth.chiseled_polished_gneiss_wall": "Muret en gneiss poli sculpté", + "item.middle-earth.chiseled_polished_gneiss_wall": "Muret en gneiss poli sculpté", + "block.middle-earth.chiseled_gneiss_vertical_slab": "Dalle verticale en gneiss sculpté", + "item.middle-earth.chiseled_gneiss_vertical_slab": "Dalle verticale en gneiss sculpté", + "block.middle-earth.chiseled_gneiss_wall": "Muret en gneiss sculpté", + "item.middle-earth.chiseled_gneiss_wall": "Muret en gneiss sculpté", + "block.middle-earth.mossy_limestone_pillar_vertical_slab": "Dalle verticale de pilier en calcaire moussu", + "item.middle-earth.mossy_limestone_pillar_vertical_slab": "Dalle verticale de pilier en calcaire moussu", + "block.middle-earth.mossy_limestone_pillar_wall": "Muret de pilier en calcaire moussu", + "item.middle-earth.mossy_limestone_pillar_wall": "Muret de pilier en calcaire moussu", + "block.middle-earth.cracked_limestone_pillar_vertical_slab": "Dalle verticale de pilier en calcaire craquelé", + "item.middle-earth.cracked_limestone_pillar_vertical_slab": "Dalle verticale de pilier en calcaire craquelé", + "block.middle-earth.cracked_limestone_pillar_wall": "Muret de pilier en calcaire craquelé", + "item.middle-earth.cracked_limestone_pillar_wall": "Muret de pilier en calcaire craquelé", + "block.middle-earth.chiseled_smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse sculpté", + "item.middle-earth.chiseled_smooth_limestone_vertical_slab": "Dalle verticale en calcaire lisse sculpté", + "block.middle-earth.chiseled_smooth_limestone_wall": "Muret en calcaire lisse sculpté", + "item.middle-earth.chiseled_smooth_limestone_wall": "Muret en calcaire lisse sculpté", + "block.middle-earth.chiseled_limestone_bricks_vertical_slab": "Dalle verticale de briques en calcaire sculptées", + "item.middle-earth.chiseled_limestone_bricks_vertical_slab": "Dalle verticale de briques en calcaire sculptées", + "block.middle-earth.chiseled_limestone_bricks_wall": "Muret de briques en calcaire sculptées", + "item.middle-earth.chiseled_limestone_bricks_wall": "Muret de briques en calcaire sculptées", + "block.middle-earth.mossy_limestone_brick_slab": "Brique en calcaire moussue", + "item.middle-earth.mossy_limestone_brick_slab": "Brique en calcaire moussue", + "block.middle-earth.mossy_limestone_brick_stairs": "Escalier de brique en calcaire moussue", + "item.middle-earth.mossy_limestone_brick_stairs": "Escalier de brique en calcaire moussue", + "block.middle-earth.mossy_limestone_brick_vertical_slab": "Dalle verticale de brique en calcaire moussue", + "item.middle-earth.mossy_limestone_brick_vertical_slab": "Dalle verticale de brique en calcaire moussue", + "block.middle-earth.mossy_limestone_brick_wall": "Muret de brique en calcaire moussue", + "item.middle-earth.mossy_limestone_brick_wall": "Muret de brique en calcaire moussue", + "block.middle-earth.cracked_limestone_brick_slab": "Brique en calcaire craquelée", + "item.middle-earth.cracked_limestone_brick_slab": "Brique en calcaire craquelée", + "block.middle-earth.cracked_limestone_brick_stairs": "Escalier de brique en calcaire craquelée", + "item.middle-earth.cracked_limestone_brick_stairs": "Escalier de brique en calcaire craquelée", + "block.middle-earth.cracked_limestone_brick_vertical_slab": "Dalle verticale de brique en calcaire craquelée", + "item.middle-earth.cracked_limestone_brick_vertical_slab": "Dalle verticale de brique en calcaire craquelée", + "block.middle-earth.cracked_limestone_brick_wall": "Muret de brique en calcaire craquelée", + "item.middle-earth.cracked_limestone_brick_wall": "Muret de brique en calcaire craquelée", + "block.middle-earth.chiseled_limestone_tiles_vertical_slab": "Dalle verticale de calcaire carrelé sculpté", + "item.middle-earth.chiseled_limestone_tiles_vertical_slab": "Dalle verticale de calcaire carrelé sculpté", + "block.middle-earth.chiseled_limestone_tiles_wall": "Muret de calcaire carrelé sculpté", + "item.middle-earth.chiseled_limestone_tiles_wall": "Muret de calcaire carrelé sculpté", + "block.middle-earth.mossy_limestone_tile_slab": "Tuile en calcaire moussue", + "item.middle-earth.mossy_limestone_tile_slab": "Tuile en calcaire moussue", + "block.middle-earth.mossy_limestone_tile_stairs": "Escalier de tuile en calcaire moussue", + "item.middle-earth.mossy_limestone_tile_stairs": "Escalier de tuile en calcaire moussue", + "block.middle-earth.mossy_limestone_tile_vertical_slab": "Dalle verticale de tuile en calcaire moussue", + "item.middle-earth.mossy_limestone_tile_vertical_slab": "Dalle verticale de tuile en calcaire moussue", + "block.middle-earth.mossy_limestone_tile_wall": "Muret de tuile en calcaire moussue", + "item.middle-earth.mossy_limestone_tile_wall": "Muret de tuile en calcaire moussue", + "block.middle-earth.cracked_limestone_tile_slab": "Tuile en calcaire craquelée", + "item.middle-earth.cracked_limestone_tile_slab": "Tuile en calcaire craquelée", + "block.middle-earth.cracked_limestone_tile_stairs": "Escalier de tuile en calcaire craquelée", + "item.middle-earth.cracked_limestone_tile_stairs": "Escalier de tuile en calcaire craquelée", + "block.middle-earth.cracked_limestone_tile_vertical_slab": "Dalle verticale de tuile en calcaire craquelée", + "item.middle-earth.cracked_limestone_tile_vertical_slab": "Dalle verticale de tuile en calcaire craquelée", + "block.middle-earth.cracked_limestone_tile_wall": "Muret de tuile en calcaire craquelée", + "item.middle-earth.cracked_limestone_tile_wall": "Muret de tuile en calcaire craquelée", + "block.middle-earth.chiseled_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli sculpté", + "item.middle-earth.chiseled_polished_limestone_vertical_slab": "Dalle verticale en calcaire poli sculpté", + "block.middle-earth.chiseled_polished_limestone_wall": "Muret en calcaire poli sculpté", + "item.middle-earth.chiseled_polished_limestone_wall": "Muret en calcaire poli sculpté", + "block.middle-earth.chiseled_limestone_vertical_slab": "Dalle verticale en calcaire sculpté", + "item.middle-earth.chiseled_limestone_vertical_slab": "Dalle verticale en calcaire sculpté", + "block.middle-earth.chiseled_limestone_wall": "Muret en calcaire sculpté", + "item.middle-earth.chiseled_limestone_wall": "Muret en calcaire sculpté", + "block.middle-earth.mossy_gabbro_pillar_vertical_slab": "Dalle verticale de pilier en gabbro moussu", + "item.middle-earth.mossy_gabbro_pillar_vertical_slab": "Dalle verticale de pilier en gabbro moussu", + "block.middle-earth.mossy_gabbro_pillar_wall": "Muret de pilier en gabbro moussu", + "item.middle-earth.mossy_gabbro_pillar_wall": "Muret de pilier en gabbro moussu", + "block.middle-earth.cracked_gabbro_pillar_vertical_slab": "Dalle verticale de pilier en gabbro craquelé", + "item.middle-earth.cracked_gabbro_pillar_vertical_slab": "Dalle verticale de pilier en gabbro craquelé", + "block.middle-earth.cracked_gabbro_pillar_wall": "Muret de pilier en gabbro craquelé", + "item.middle-earth.cracked_gabbro_pillar_wall": "Muret de pilier en gabbro craquelé", + "block.middle-earth.smooth_gabbro": "Gabbro lisse", + "item.middle-earth.smooth_gabbro": "Gabbro lisse", + "block.middle-earth.smooth_gabbro_slab": "Dalle en gabbro lisse", + "item.middle-earth.smooth_gabbro_slab": "Dalle en gabbro lisse", + "block.middle-earth.smooth_gabbro_stairs": "Escalier en gabbro lisse", + "item.middle-earth.smooth_gabbro_stairs": "Escalier en gabbro lisse", + "block.middle-earth.smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse", + "item.middle-earth.smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse", + "block.middle-earth.smooth_gabbro_wall": "Muret en gabbro lisse", + "item.middle-earth.smooth_gabbro_wall": "Muret en gabbro lisse", + "block.middle-earth.mossy_smooth_gabbro": "Gabbro lisse moussu", + "item.middle-earth.mossy_smooth_gabbro": "Gabbro lisse moussu", + "block.middle-earth.mossy_smooth_gabbro_slab": "Dalle en gabbro lisse moussu", + "item.middle-earth.mossy_smooth_gabbro_slab": "Dalle en gabbro lisse moussu", + "block.middle-earth.mossy_smooth_gabbro_stairs": "Escalier en gabbro lisse moussu", + "item.middle-earth.mossy_smooth_gabbro_stairs": "Escalier en gabbro lisse moussu", + "block.middle-earth.mossy_smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse moussu", + "item.middle-earth.mossy_smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse moussu", + "block.middle-earth.mossy_smooth_gabbro_wall": "Muret en gabbro lisse moussu", + "item.middle-earth.mossy_smooth_gabbro_wall": "Muret en gabbro lisse moussu", + "block.middle-earth.cracked_smooth_gabbro": "Gabbro lisse craquelé", + "item.middle-earth.cracked_smooth_gabbro": "Gabbro lisse craquelé", + "block.middle-earth.cracked_smooth_gabbro_slab": "Dalle en gabbro lisse craquelé", + "item.middle-earth.cracked_smooth_gabbro_slab": "Dalle en gabbro lisse craquelé", + "block.middle-earth.cracked_smooth_gabbro_stairs": "Escalier en gabbro lisse craquelé", + "item.middle-earth.cracked_smooth_gabbro_stairs": "Escalier en gabbro lisse craquelé", + "block.middle-earth.cracked_smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse craquelé", + "item.middle-earth.cracked_smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse craquelé", + "block.middle-earth.cracked_smooth_gabbro_wall": "Muret en gabbro lisse craquelé", + "item.middle-earth.cracked_smooth_gabbro_wall": "Muret en gabbro lisse craquelé", + "block.middle-earth.chiseled_smooth_gabbro": "Gabbro lisse sculpté", + "item.middle-earth.chiseled_smooth_gabbro": "Gabbro lisse sculpté", + "block.middle-earth.chiseled_smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse sculpté", + "item.middle-earth.chiseled_smooth_gabbro_vertical_slab": "Dalle verticale en gabbro lisse sculpté", + "block.middle-earth.chiseled_smooth_gabbro_wall": "Muret en gabbro lisse sculpté", + "item.middle-earth.chiseled_smooth_gabbro_wall": "Muret en gabbro lisse sculpté", + "block.middle-earth.old_gabbro": "Vieux gabbro", + "item.middle-earth.old_gabbro": "Vieux gabbro", + "block.middle-earth.old_gabbro_slab": "Dalle de vieux gabbro", + "item.middle-earth.old_gabbro_slab": "Dalle de vieux gabbro", + "block.middle-earth.old_gabbro_stairs": "Escalier en vieux gabbro", + "item.middle-earth.old_gabbro_stairs": "Escalier en vieux gabbro", + "block.middle-earth.old_gabbro_vertical_slab": "Dalle verticale de vieux gabbro", + "item.middle-earth.old_gabbro_vertical_slab": "Dalle verticale de vieux gabbro", + "block.middle-earth.old_gabbro_wall": "Muret en vieux gabbro", + "item.middle-earth.old_gabbro_wall": "Muret en vieux gabbro", + "block.middle-earth.chiseled_gabbro_bricks_vertical_slab": "Dalle verticale de briques en gabbro sculptées", + "item.middle-earth.chiseled_gabbro_bricks_vertical_slab": "Dalle verticale de briques en gabbro sculptées", + "block.middle-earth.chiseled_gabbro_bricks_wall": "Muret de briques en gabbro sculptées", + "item.middle-earth.chiseled_gabbro_bricks_wall": "Muret de briques en gabbro sculptées", + "block.middle-earth.mossy_gabbro_brick_slab": "Brique en gabbro moussue", + "item.middle-earth.mossy_gabbro_brick_slab": "Brique en gabbro moussue", + "block.middle-earth.mossy_gabbro_brick_stairs": "Escalier de brique en gabbro moussue", + "item.middle-earth.mossy_gabbro_brick_stairs": "Escalier de brique en gabbro moussue", + "block.middle-earth.mossy_gabbro_brick_vertical_slab": "Dalle verticale de brique en gabbro moussue", + "item.middle-earth.mossy_gabbro_brick_vertical_slab": "Dalle verticale de brique en gabbro moussue", + "block.middle-earth.mossy_gabbro_brick_wall": "Muret de brique en gabbro moussue", + "item.middle-earth.mossy_gabbro_brick_wall": "Muret de brique en gabbro moussue", + "block.middle-earth.cracked_gabbro_brick_slab": "Brique en gabbro craquelée", + "item.middle-earth.cracked_gabbro_brick_slab": "Brique en gabbro craquelée", + "block.middle-earth.cracked_gabbro_brick_stairs": "Escalier de brique en gabbro craquelée", + "item.middle-earth.cracked_gabbro_brick_stairs": "Escalier de brique en gabbro craquelée", + "block.middle-earth.cracked_gabbro_brick_vertical_slab": "Dalle verticale de brique en gabbro craquelée", + "item.middle-earth.cracked_gabbro_brick_vertical_slab": "Dalle verticale de brique en gabbro craquelée", + "block.middle-earth.cracked_gabbro_brick_wall": "Muret de brique en gabbro craquelée", + "item.middle-earth.cracked_gabbro_brick_wall": "Muret de brique en gabbro craquelée", + "block.middle-earth.chiseled_gabbro_tiles": "Gabbro carrelé sculpté", + "item.middle-earth.chiseled_gabbro_tiles": "Gabbro carrelé sculpté", + "block.middle-earth.chiseled_gabbro_tiles_vertical_slab": "Dalle verticale de gabbro carrelé sculpté", + "item.middle-earth.chiseled_gabbro_tiles_vertical_slab": "Dalle verticale de gabbro carrelé sculpté", + "block.middle-earth.chiseled_gabbro_tiles_wall": "Muret de gabbro carrelé sculpté", + "item.middle-earth.chiseled_gabbro_tiles_wall": "Muret de gabbro carrelé sculpté", + "block.middle-earth.mossy_gabbro_tile_slab": "Tuile en gabbro moussue", + "item.middle-earth.mossy_gabbro_tile_slab": "Tuile en gabbro moussue", + "block.middle-earth.mossy_gabbro_tile_stairs": "Escalier de tuile en gabbro moussue", + "item.middle-earth.mossy_gabbro_tile_stairs": "Escalier de tuile en gabbro moussue", + "block.middle-earth.mossy_gabbro_tile_vertical_slab": "Dalle verticale de tuile en gabbro moussue", + "item.middle-earth.mossy_gabbro_tile_vertical_slab": "Dalle verticale de tuile en gabbro moussue", + "block.middle-earth.mossy_gabbro_tile_wall": "Muret de tuile en gabbro moussue", + "item.middle-earth.mossy_gabbro_tile_wall": "Muret de tuile en gabbro moussue", + "block.middle-earth.cracked_gabbro_tile_slab": "Tuile en gabbro craquelée", + "item.middle-earth.cracked_gabbro_tile_slab": "Tuile en gabbro craquelée", + "block.middle-earth.cracked_gabbro_tile_stairs": "Escalier de tuile en gabbro craquelée", + "item.middle-earth.cracked_gabbro_tile_stairs": "Escalier de tuile en gabbro craquelée", + "block.middle-earth.cracked_gabbro_tile_vertical_slab": "Dalle verticale de tuile en gabbro craquelée", + "item.middle-earth.cracked_gabbro_tile_vertical_slab": "Dalle verticale de tuile en gabbro craquelée", + "block.middle-earth.cracked_gabbro_tile_wall": "Muret de tuile en gabbro craquelée", + "item.middle-earth.cracked_gabbro_tile_wall": "Muret de tuile en gabbro craquelée", + "block.middle-earth.chiseled_polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli sculpté", + "item.middle-earth.chiseled_polished_gabbro_vertical_slab": "Dalle verticale en gabbro poli sculpté", + "block.middle-earth.chiseled_polished_gabbro_wall": "Muret en gabbro poli sculpté", + "item.middle-earth.chiseled_polished_gabbro_wall": "Muret en gabbro poli sculpté", + "block.middle-earth.chiseled_gabbro": "Gabbro sculpté", + "item.middle-earth.chiseled_gabbro": "Gabbro sculpté", + "block.middle-earth.chiseled_gabbro_vertical_slab": "Dalle verticale en gabbro sculpté", + "item.middle-earth.chiseled_gabbro_vertical_slab": "Dalle verticale en gabbro sculpté", + "block.middle-earth.chiseled_gabbro_wall": "Muret en gabbro sculpté", + "item.middle-earth.chiseled_gabbro_wall": "Muret en gabbro sculpté", + "block.middle-earth.mossy_slate_pillar_vertical_slab": "Dalle verticale de pilier en ardoise moussue", + "item.middle-earth.mossy_slate_pillar_vertical_slab": "Dalle verticale de pilier en ardoise moussue", + "block.middle-earth.mossy_slate_pillar_wall": "Muret de pilier en ardoise moussue", + "item.middle-earth.mossy_slate_pillar_wall": "Muret de pilier en ardoise moussue", + "block.middle-earth.cracked_slate_pillar_vertical_slab": "Dalle verticale de pilier en ardoise craquelée", + "item.middle-earth.cracked_slate_pillar_vertical_slab": "Dalle verticale de pilier en ardoise craquelée", + "block.middle-earth.cracked_slate_pillar_wall": "Muret de pilier en ardoise craquelée", + "item.middle-earth.cracked_slate_pillar_wall": "Muret de pilier en ardoise craquelée", + "block.middle-earth.smooth_slate": "Ardoise lisse", + "item.middle-earth.smooth_slate": "Ardoise lisse", + "block.middle-earth.smooth_slate_slab": "Dalle en ardoise lisse", + "item.middle-earth.smooth_slate_slab": "Dalle en ardoise lisse", + "block.middle-earth.smooth_slate_stairs": "Escalier en ardoise lisse", + "item.middle-earth.smooth_slate_stairs": "Escalier en ardoise lisse", + "block.middle-earth.smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse", + "item.middle-earth.smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse", + "block.middle-earth.smooth_slate_wall": "Muret en ardoise lisse", + "item.middle-earth.smooth_slate_wall": "Muret en ardoise lisse", + "block.middle-earth.mossy_smooth_slate": "Ardoise lisse moussue", + "item.middle-earth.mossy_smooth_slate": "Ardoise lisse moussue", + "block.middle-earth.mossy_smooth_slate_slab": "Dalle en ardoise lisse moussue", + "item.middle-earth.mossy_smooth_slate_slab": "Dalle en ardoise lisse moussue", + "block.middle-earth.mossy_smooth_slate_stairs": "Escalier en ardoise lisse moussue", + "item.middle-earth.mossy_smooth_slate_stairs": "Escalier en ardoise lisse moussue", + "block.middle-earth.mossy_smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse moussue", + "item.middle-earth.mossy_smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse moussue", + "block.middle-earth.mossy_smooth_slate_wall": "Muret en ardoise lisse moussue", + "item.middle-earth.mossy_smooth_slate_wall": "Muret en ardoise lisse moussue", + "block.middle-earth.cracked_smooth_slate": "Ardoise lisse craquelée", + "item.middle-earth.cracked_smooth_slate": "Ardoise lisse craquelée", + "block.middle-earth.cracked_smooth_slate_slab": "Dalle en ardoise lisse craquelée", + "item.middle-earth.cracked_smooth_slate_slab": "Dalle en ardoise lisse craquelée", + "block.middle-earth.cracked_smooth_slate_stairs": "Escalier en ardoise lisse craquelée", + "item.middle-earth.cracked_smooth_slate_stairs": "Escalier en ardoise lisse craquelée", + "block.middle-earth.cracked_smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse craquelée", + "item.middle-earth.cracked_smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse craquelée", + "block.middle-earth.cracked_smooth_slate_wall": "Muret en ardoise lisse craquelée", + "item.middle-earth.cracked_smooth_slate_wall": "Muret en ardoise lisse craquelée", + "block.middle-earth.chiseled_smooth_slate": "Ardoise lisse sculptée", + "item.middle-earth.chiseled_smooth_slate": "Ardoise lisse sculptée", + "block.middle-earth.chiseled_smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse sculptée", + "item.middle-earth.chiseled_smooth_slate_vertical_slab": "Dalle verticale en ardoise lisse sculptée", + "block.middle-earth.chiseled_smooth_slate_wall": "Muret en ardoise lisse sculptée", + "item.middle-earth.chiseled_smooth_slate_wall": "Muret en ardoise lisse sculptée", + "block.middle-earth.old_slate": "Vieille ardoise", + "item.middle-earth.old_slate": "Vieille ardoise", + "block.middle-earth.old_slate_slab": "Dalle de vieux ardoise", + "item.middle-earth.old_slate_slab": "Dalle de vieux ardoise", + "block.middle-earth.old_slate_stairs": "Escalier en vieux ardoise", + "item.middle-earth.old_slate_stairs": "Escalier en vieux ardoise", + "block.middle-earth.old_slate_vertical_slab": "Dalle verticale de vieux ardoise", + "item.middle-earth.old_slate_vertical_slab": "Dalle verticale de vieux ardoise", + "block.middle-earth.old_slate_wall": "Muret en vieux ardoise", + "item.middle-earth.old_slate_wall": "Muret en vieux ardoise", + "block.middle-earth.chiseled_slate_bricks_vertical_slab": "Dalle verticale de briques en ardoise sculptées", + "item.middle-earth.chiseled_slate_bricks_vertical_slab": "Dalle verticale de briques en ardoise sculptées", + "block.middle-earth.chiseled_slate_bricks_wall": "Muret de briques en ardoise sculptées", + "item.middle-earth.chiseled_slate_bricks_wall": "Muret de briques en ardoise sculptées", + "block.middle-earth.mossy_slate_brick_slab": "Brique en ardoise moussue", + "item.middle-earth.mossy_slate_brick_slab": "Brique en ardoise moussue", + "block.middle-earth.mossy_slate_brick_stairs": "Escalier de brique en ardoise moussue", + "item.middle-earth.mossy_slate_brick_stairs": "Escalier de brique en ardoise moussue", + "block.middle-earth.mossy_slate_brick_vertical_slab": "Dalle verticale de brique en ardoise moussue", + "item.middle-earth.mossy_slate_brick_vertical_slab": "Dalle verticale de brique en ardoise moussue", + "block.middle-earth.mossy_slate_brick_wall": "Muret de brique en ardoise moussue", + "item.middle-earth.mossy_slate_brick_wall": "Muret de brique en ardoise moussue", + "block.middle-earth.cracked_slate_brick_slab": "Brique en ardoise craquelée", + "item.middle-earth.cracked_slate_brick_slab": "Brique en ardoise craquelée", + "block.middle-earth.cracked_slate_brick_stairs": "Escalier de brique en ardoise craquelée", + "item.middle-earth.cracked_slate_brick_stairs": "Escalier de brique en ardoise craquelée", + "block.middle-earth.cracked_slate_brick_vertical_slab": "Dalle verticale de brique en ardoise craquelée", + "item.middle-earth.cracked_slate_brick_vertical_slab": "Dalle verticale de brique en ardoise craquelée", + "block.middle-earth.cracked_slate_brick_wall": "Muret de brique en ardoise craquelée", + "item.middle-earth.cracked_slate_brick_wall": "Muret de brique en ardoise craquelée", + "block.middle-earth.chiseled_slate_tiles": "Ardoise carrelée sculptée", + "item.middle-earth.chiseled_slate_tiles": "Ardoise carrelée sculptée", + "block.middle-earth.chiseled_slate_tiles_vertical_slab": "Dalle verticale d'ardoise carrelée sculptée", + "item.middle-earth.chiseled_slate_tiles_vertical_slab": "Dalle verticale d'ardoise carrelée sculptée", + "block.middle-earth.chiseled_slate_tiles_wall": "Muret d'ardoise carrelée sculptée", + "item.middle-earth.chiseled_slate_tiles_wall": "Muret d'ardoise carrelée sculptée", + "block.middle-earth.mossy_slate_tile_slab": "Tuile en ardoise moussue", + "item.middle-earth.mossy_slate_tile_slab": "Tuile en ardoise moussue", + "block.middle-earth.mossy_slate_tile_stairs": "Escalier de tuile en ardoise moussue", + "item.middle-earth.mossy_slate_tile_stairs": "Escalier de tuile en ardoise moussue", + "block.middle-earth.mossy_slate_tile_vertical_slab": "Dalle verticale de tuile en ardoise moussue", + "item.middle-earth.mossy_slate_tile_vertical_slab": "Dalle verticale de tuile en ardoise moussue", + "block.middle-earth.mossy_slate_tile_wall": "Muret de tuile en ardoise moussue", + "item.middle-earth.mossy_slate_tile_wall": "Muret de tuile en ardoise moussue", + "block.middle-earth.cracked_slate_tile_slab": "Tuile en ardoise craquelée", + "item.middle-earth.cracked_slate_tile_slab": "Tuile en ardoise craquelée", + "block.middle-earth.cracked_slate_tile_stairs": "Escalier de tuile en ardoise craquelée", + "item.middle-earth.cracked_slate_tile_stairs": "Escalier de tuile en ardoise craquelée", + "block.middle-earth.cracked_slate_tile_vertical_slab": "Dalle verticale de tuile en ardoise craquelée", + "item.middle-earth.cracked_slate_tile_vertical_slab": "Dalle verticale de tuile en ardoise craquelée", + "block.middle-earth.cracked_slate_tile_wall": "Muret de tuile en ardoise craquelée", + "item.middle-earth.cracked_slate_tile_wall": "Muret de tuile en ardoise craquelée", + "block.middle-earth.chiseled_polished_slate_vertical_slab": "Dalle verticale en ardoise polie sculptée", + "item.middle-earth.chiseled_polished_slate_vertical_slab": "Dalle verticale en ardoise polie sculptée", + "block.middle-earth.chiseled_polished_slate_wall": "Muret en ardoise polie sculptée", + "item.middle-earth.chiseled_polished_slate_wall": "Muret en ardoise polie sculptée", + "block.middle-earth.chiseled_slate": "Ardoise sculptée", + "item.middle-earth.chiseled_slate": "Ardoise sculptée", + "block.middle-earth.chiseled_slate_vertical_slab": "Dalle verticale en ardoise sculptée", + "item.middle-earth.chiseled_slate_vertical_slab": "Dalle verticale en ardoise sculptée", + "block.middle-earth.chiseled_slate_wall": "Muret en ardoise sculptée", + "item.middle-earth.chiseled_slate_wall": "Muret en ardoise sculptée", + "block.middle-earth.mossy_ironstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_pillar_wall": "Muret de pilier en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_pillar_wall": "Muret de pilier en pierre de fer moussue", + "block.middle-earth.cracked_ironstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_pillar_wall": "Muret de pilier en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_pillar_wall": "Muret de pilier en pierre de fer craquelée", + "block.middle-earth.mossy_smooth_ironstone": "Pierre de fer lisse moussue", + "item.middle-earth.mossy_smooth_ironstone": "Pierre de fer lisse moussue", + "block.middle-earth.mossy_smooth_ironstone_slab": "Dalle en pierre de fer lisse moussue", + "item.middle-earth.mossy_smooth_ironstone_slab": "Dalle en pierre de fer lisse moussue", + "block.middle-earth.mossy_smooth_ironstone_stairs": "Escalier en pierre de fer lisse moussue", + "item.middle-earth.mossy_smooth_ironstone_stairs": "Escalier en pierre de fer lisse moussue", + "block.middle-earth.mossy_smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse moussue", + "item.middle-earth.mossy_smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse moussue", + "block.middle-earth.mossy_smooth_ironstone_wall": "Muret en pierre de fer lisse moussue", + "item.middle-earth.mossy_smooth_ironstone_wall": "Muret en pierre de fer lisse moussue", + "block.middle-earth.cracked_smooth_ironstone": "Pierre de fer lisse craquelée", + "item.middle-earth.cracked_smooth_ironstone": "Pierre de fer lisse craquelée", + "block.middle-earth.cracked_smooth_ironstone_slab": "Dalle en pierre de fer lisse craquelée", + "item.middle-earth.cracked_smooth_ironstone_slab": "Dalle en pierre de fer lisse craquelée", + "block.middle-earth.cracked_smooth_ironstone_stairs": "Escalier en pierre de fer lisse craquelée", + "item.middle-earth.cracked_smooth_ironstone_stairs": "Escalier en pierre de fer lisse craquelée", + "block.middle-earth.cracked_smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse craquelée", + "item.middle-earth.cracked_smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse craquelée", + "block.middle-earth.cracked_smooth_ironstone_wall": "Muret en pierre de fer lisse craquelée", + "item.middle-earth.cracked_smooth_ironstone_wall": "Muret en pierre de fer lisse craquelée", + "block.middle-earth.chiseled_smooth_ironstone": "Pierre de fer lisse sculptée", + "item.middle-earth.chiseled_smooth_ironstone": "Pierre de fer lisse sculptée", + "block.middle-earth.chiseled_smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse sculptée", + "item.middle-earth.chiseled_smooth_ironstone_vertical_slab": "Dalle verticale en pierre de fer lisse sculptée", + "block.middle-earth.chiseled_smooth_ironstone_wall": "Muret en pierre de fer lisse sculptée", + "item.middle-earth.chiseled_smooth_ironstone_wall": "Muret en pierre de fer lisse sculptée", + "block.middle-earth.old_ironstone": "Vieille pierre de fer", + "item.middle-earth.old_ironstone": "Vieille pierre de fer", + "block.middle-earth.old_ironstone_slab": "Dalle de vieux pierre de fer", + "item.middle-earth.old_ironstone_slab": "Dalle de vieux pierre de fer", + "block.middle-earth.old_ironstone_stairs": "Escalier en vieux pierre de fer", + "item.middle-earth.old_ironstone_stairs": "Escalier en vieux pierre de fer", + "block.middle-earth.old_ironstone_vertical_slab": "Dalle verticale de vieux pierre de fer", + "item.middle-earth.old_ironstone_vertical_slab": "Dalle verticale de vieux pierre de fer", + "block.middle-earth.old_ironstone_wall": "Muret en vieux pierre de fer", + "item.middle-earth.old_ironstone_wall": "Muret en vieux pierre de fer", + "block.middle-earth.chiseled_ironstone_bricks_vertical_slab": "Dalle verticale de briques en pierre de fer sculptées", + "item.middle-earth.chiseled_ironstone_bricks_vertical_slab": "Dalle verticale de briques en pierre de fer sculptées", + "block.middle-earth.chiseled_ironstone_bricks_wall": "Muret de briques en pierre de fer sculptées", + "item.middle-earth.chiseled_ironstone_bricks_wall": "Muret de briques en pierre de fer sculptées", + "block.middle-earth.mossy_ironstone_brick_slab": "Brique en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_brick_slab": "Brique en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_brick_stairs": "Escalier de brique en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_brick_stairs": "Escalier de brique en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_brick_vertical_slab": "Dalle verticale de brique en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_brick_vertical_slab": "Dalle verticale de brique en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_brick_wall": "Muret de brique en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_brick_wall": "Muret de brique en pierre de fer moussue", + "block.middle-earth.cracked_ironstone_brick_slab": "Brique en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_brick_slab": "Brique en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_brick_stairs": "Escalier de brique en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_brick_stairs": "Escalier de brique en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_brick_vertical_slab": "Dalle verticale de brique en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_brick_vertical_slab": "Dalle verticale de brique en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_brick_wall": "Muret de brique en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_brick_wall": "Muret de brique en pierre de fer craquelée", + "block.middle-earth.chiseled_ironstone_tiles": "Pierre de fer carrelée sculptée", + "item.middle-earth.chiseled_ironstone_tiles": "Pierre de fer carrelée sculptée", + "block.middle-earth.chiseled_ironstone_tiles_vertical_slab": "Dalle verticale de pierre de fer carrelée sculptée", + "item.middle-earth.chiseled_ironstone_tiles_vertical_slab": "Dalle verticale de pierre de fer carrelée sculptée", + "block.middle-earth.chiseled_ironstone_tiles_wall": "Muret de pierre de fer carrelée sculptée", + "item.middle-earth.chiseled_ironstone_tiles_wall": "Muret de pierre de fer carrelée sculptée", + "block.middle-earth.mossy_ironstone_tile_slab": "Tuile en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_tile_slab": "Tuile en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_tile_stairs": "Escalier de tuile en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_tile_stairs": "Escalier de tuile en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_tile_vertical_slab": "Dalle verticale de tuile en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_tile_vertical_slab": "Dalle verticale de tuile en pierre de fer moussue", + "block.middle-earth.mossy_ironstone_tile_wall": "Muret de tuile en pierre de fer moussue", + "item.middle-earth.mossy_ironstone_tile_wall": "Muret de tuile en pierre de fer moussue", + "block.middle-earth.cracked_ironstone_tile_slab": "Tuile en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_tile_slab": "Tuile en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_tile_stairs": "Escalier de tuile en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_tile_stairs": "Escalier de tuile en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_tile_vertical_slab": "Dalle verticale de tuile en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_tile_vertical_slab": "Dalle verticale de tuile en pierre de fer craquelée", + "block.middle-earth.cracked_ironstone_tile_wall": "Muret de tuile en pierre de fer craquelée", + "item.middle-earth.cracked_ironstone_tile_wall": "Muret de tuile en pierre de fer craquelée", + "block.middle-earth.chiseled_polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie sculptée", + "item.middle-earth.chiseled_polished_ironstone_vertical_slab": "Dalle verticale en pierre de fer polie sculptée", + "block.middle-earth.chiseled_polished_ironstone_wall": "Muret en pierre de fer polie sculptée", + "item.middle-earth.chiseled_polished_ironstone_wall": "Muret en pierre de fer polie sculptée", + "block.middle-earth.chiseled_ironstone_vertical_slab": "Dalle verticale en pierre de fer sculptée", + "item.middle-earth.chiseled_ironstone_vertical_slab": "Dalle verticale en pierre de fer sculptée", + "block.middle-earth.chiseled_ironstone_wall": "Muret en pierre de fer sculptée", + "item.middle-earth.chiseled_ironstone_wall": "Muret en pierre de fer sculptée", + "block.middle-earth.mossy_hematite_pillar_vertical_slab": "Dalle verticale de pilier en hématite moussue", + "item.middle-earth.mossy_hematite_pillar_vertical_slab": "Dalle verticale de pilier en hématite moussue", + "block.middle-earth.mossy_hematite_pillar_wall": "Muret de pilier en hématite moussue", + "item.middle-earth.mossy_hematite_pillar_wall": "Muret de pilier en hématite moussue", + "block.middle-earth.cracked_hematite_pillar_vertical_slab": "Dalle verticale de pilier en hématite craquelée", + "item.middle-earth.cracked_hematite_pillar_vertical_slab": "Dalle verticale de pilier en hématite craquelée", + "block.middle-earth.cracked_hematite_pillar_wall": "Muret de pilier en hématite craquelée", + "item.middle-earth.cracked_hematite_pillar_wall": "Muret de pilier en hématite craquelée", + "block.middle-earth.mossy_smooth_hematite": "Hématite lisse moussue", + "item.middle-earth.mossy_smooth_hematite": "Hématite lisse moussue", + "block.middle-earth.mossy_smooth_hematite_slab": "Dalle en hématite lisse moussue", + "item.middle-earth.mossy_smooth_hematite_slab": "Dalle en hématite lisse moussue", + "block.middle-earth.mossy_smooth_hematite_stairs": "Escalier en hématite lisse moussue", + "item.middle-earth.mossy_smooth_hematite_stairs": "Escalier en hématite lisse moussue", + "block.middle-earth.mossy_smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse moussue", + "item.middle-earth.mossy_smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse moussue", + "block.middle-earth.mossy_smooth_hematite_wall": "Muret en hématite lisse moussue", + "item.middle-earth.mossy_smooth_hematite_wall": "Muret en hématite lisse moussue", + "block.middle-earth.cracked_smooth_hematite": "Hématite lisse craquelée", + "item.middle-earth.cracked_smooth_hematite": "Hématite lisse craquelée", + "block.middle-earth.cracked_smooth_hematite_slab": "Dalle en hématite lisse craquelée", + "item.middle-earth.cracked_smooth_hematite_slab": "Dalle en hématite lisse craquelée", + "block.middle-earth.cracked_smooth_hematite_stairs": "Escalier en hématite lisse craquelée", + "item.middle-earth.cracked_smooth_hematite_stairs": "Escalier en hématite lisse craquelée", + "block.middle-earth.cracked_smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse craquelée", + "item.middle-earth.cracked_smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse craquelée", + "block.middle-earth.cracked_smooth_hematite_wall": "Muret en hématite lisse craquelée", + "item.middle-earth.cracked_smooth_hematite_wall": "Muret en hématite lisse craquelée", + "block.middle-earth.chiseled_smooth_hematite": "Hématite lisse sculptée", + "item.middle-earth.chiseled_smooth_hematite": "Hématite lisse sculptée", + "block.middle-earth.chiseled_smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse sculptée", + "item.middle-earth.chiseled_smooth_hematite_vertical_slab": "Dalle verticale en hématite lisse sculptée", + "block.middle-earth.chiseled_smooth_hematite_wall": "Muret en hématite lisse sculptée", + "item.middle-earth.chiseled_smooth_hematite_wall": "Muret en hématite lisse sculptée", + "block.middle-earth.old_hematite": "Vieille hématite", + "item.middle-earth.old_hematite": "Vieille hématite", + "block.middle-earth.old_hematite_slab": "Dalle de vieux hématite", + "item.middle-earth.old_hematite_slab": "Dalle de vieux hématite", + "block.middle-earth.old_hematite_stairs": "Escalier en vieux hématite", + "item.middle-earth.old_hematite_stairs": "Escalier en vieux hématite", + "block.middle-earth.old_hematite_vertical_slab": "Dalle verticale de vieux hématite", + "item.middle-earth.old_hematite_vertical_slab": "Dalle verticale de vieux hématite", + "block.middle-earth.old_hematite_wall": "Muret en vieux hématite", + "item.middle-earth.old_hematite_wall": "Muret en vieux hématite", + "block.middle-earth.chiseled_hematite_bricks_vertical_slab": "Dalle verticale de briques en hématite sculptées", + "item.middle-earth.chiseled_hematite_bricks_vertical_slab": "Dalle verticale de briques en hématite sculptées", + "block.middle-earth.chiseled_hematite_bricks_wall": "Muret de briques en hématite sculptées", + "item.middle-earth.chiseled_hematite_bricks_wall": "Muret de briques en hématite sculptées", + "block.middle-earth.mossy_hematite_brick_slab": "Brique en hématite moussue", + "item.middle-earth.mossy_hematite_brick_slab": "Brique en hématite moussue", + "block.middle-earth.mossy_hematite_brick_stairs": "Escalier de brique en hématite moussue", + "item.middle-earth.mossy_hematite_brick_stairs": "Escalier de brique en hématite moussue", + "block.middle-earth.mossy_hematite_brick_vertical_slab": "Dalle verticale de brique en hématite moussue", + "item.middle-earth.mossy_hematite_brick_vertical_slab": "Dalle verticale de brique en hématite moussue", + "block.middle-earth.mossy_hematite_brick_wall": "Muret de brique en hématite moussue", + "item.middle-earth.mossy_hematite_brick_wall": "Muret de brique en hématite moussue", + "block.middle-earth.cracked_hematite_brick_slab": "Brique en hématite craquelée", + "item.middle-earth.cracked_hematite_brick_slab": "Brique en hématite craquelée", + "block.middle-earth.cracked_hematite_brick_stairs": "Escalier de brique en hématite craquelée", + "item.middle-earth.cracked_hematite_brick_stairs": "Escalier de brique en hématite craquelée", + "block.middle-earth.cracked_hematite_brick_vertical_slab": "Dalle verticale de brique en hématite craquelée", + "item.middle-earth.cracked_hematite_brick_vertical_slab": "Dalle verticale de brique en hématite craquelée", + "block.middle-earth.cracked_hematite_brick_wall": "Muret de brique en hématite craquelée", + "item.middle-earth.cracked_hematite_brick_wall": "Muret de brique en hématite craquelée", + "block.middle-earth.chiseled_hematite_tiles": "Hématite carrelée sculptée", + "item.middle-earth.chiseled_hematite_tiles": "Hématite carrelée sculptée", + "block.middle-earth.chiseled_hematite_tiles_vertical_slab": "Dalle verticale de hématite carrelée sculptée", + "item.middle-earth.chiseled_hematite_tiles_vertical_slab": "Dalle verticale de hématite carrelée sculptée", + "block.middle-earth.chiseled_hematite_tiles_wall": "Muret de hématite carrelée sculptée", + "item.middle-earth.chiseled_hematite_tiles_wall": "Muret de hématite carrelée sculptée", + "block.middle-earth.mossy_hematite_tile_slab": "Tuile en hématite moussue", + "item.middle-earth.mossy_hematite_tile_slab": "Tuile en hématite moussue", + "block.middle-earth.mossy_hematite_tile_stairs": "Escalier de tuile en hématite moussue", + "item.middle-earth.mossy_hematite_tile_stairs": "Escalier de tuile en hématite moussue", + "block.middle-earth.mossy_hematite_tile_vertical_slab": "Dalle verticale de tuile en hématite moussue", + "item.middle-earth.mossy_hematite_tile_vertical_slab": "Dalle verticale de tuile en hématite moussue", + "block.middle-earth.mossy_hematite_tile_wall": "Muret de tuile en hématite moussue", + "item.middle-earth.mossy_hematite_tile_wall": "Muret de tuile en hématite moussue", + "block.middle-earth.cracked_hematite_tile_slab": "Tuile en hématite craquelée", + "item.middle-earth.cracked_hematite_tile_slab": "Tuile en hématite craquelée", + "block.middle-earth.cracked_hematite_tile_stairs": "Escalier de tuile en hématite craquelée", + "item.middle-earth.cracked_hematite_tile_stairs": "Escalier de tuile en hématite craquelée", + "block.middle-earth.cracked_hematite_tile_vertical_slab": "Dalle verticale de tuile en hématite craquelée", + "item.middle-earth.cracked_hematite_tile_vertical_slab": "Dalle verticale de tuile en hématite craquelée", + "block.middle-earth.cracked_hematite_tile_wall": "Muret de tuile en hématite craquelée", + "item.middle-earth.cracked_hematite_tile_wall": "Muret de tuile en hématite craquelée", + "block.middle-earth.chiseled_polished_hematite_vertical_slab": "Dalle verticale en hématite polie sculptée", + "item.middle-earth.chiseled_polished_hematite_vertical_slab": "Dalle verticale en hématite polie sculptée", + "block.middle-earth.chiseled_polished_hematite_wall": "Muret en hématite polie sculptée", + "item.middle-earth.chiseled_polished_hematite_wall": "Muret en hématite polie sculptée", + "block.middle-earth.chiseled_hematite_vertical_slab": "Dalle verticale en hématite sculptée", + "item.middle-earth.chiseled_hematite_vertical_slab": "Dalle verticale en hématite sculptée", + "block.middle-earth.chiseled_hematite_wall": "Muret en hématite sculptée", + "item.middle-earth.chiseled_hematite_wall": "Muret en hématite sculptée", + "block.middle-earth.mossy_zigilaban_pillar_vertical_slab": "Dalle verticale de pilier en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_pillar_vertical_slab": "Dalle verticale de pilier en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_pillar_wall": "Muret de pilier en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_pillar_wall": "Muret de pilier en Zigil'Aban moussue", + "block.middle-earth.cracked_zigilaban_pillar_vertical_slab": "Dalle verticale de pilier en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_pillar_vertical_slab": "Dalle verticale de pilier en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_pillar_wall": "Muret de pilier en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_pillar_wall": "Muret de pilier en Zigil'Aban craquelée", + "block.middle-earth.mossy_smooth_zigilaban": "Zigil'Aban lisse moussue", + "item.middle-earth.mossy_smooth_zigilaban": "Zigil'Aban lisse moussue", + "block.middle-earth.mossy_smooth_zigilaban_slab": "Dalle en Zigil'Aban lisse moussue", + "item.middle-earth.mossy_smooth_zigilaban_slab": "Dalle en Zigil'Aban lisse moussue", + "block.middle-earth.mossy_smooth_zigilaban_stairs": "Escalier en Zigil'Aban lisse moussue", + "item.middle-earth.mossy_smooth_zigilaban_stairs": "Escalier en Zigil'Aban lisse moussue", + "block.middle-earth.mossy_smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse moussue", + "item.middle-earth.mossy_smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse moussue", + "block.middle-earth.mossy_smooth_zigilaban_wall": "Muret en Zigil'Aban lisse moussue", + "item.middle-earth.mossy_smooth_zigilaban_wall": "Muret en Zigil'Aban lisse moussue", + "block.middle-earth.cracked_smooth_zigilaban": "Zigil'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_zigilaban": "Zigil'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_zigilaban_slab": "Dalle en Zigil'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_zigilaban_slab": "Dalle en Zigil'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_zigilaban_stairs": "Escalier en Zigil'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_zigilaban_stairs": "Escalier en Zigil'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse craquelée", + "block.middle-earth.cracked_smooth_zigilaban_wall": "Muret en Zigil'Aban lisse craquelée", + "item.middle-earth.cracked_smooth_zigilaban_wall": "Muret en Zigil'Aban lisse craquelée", + "block.middle-earth.chiseled_smooth_zigilaban": "Zigil'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_zigilaban": "Zigil'Aban lisse sculptée", + "block.middle-earth.chiseled_smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban lisse sculptée", + "block.middle-earth.chiseled_smooth_zigilaban_wall": "Muret en Zigil'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_zigilaban_wall": "Muret en Zigil'Aban lisse sculptée", + "block.middle-earth.old_zigilaban": "Vieille Zigil'Aban", + "item.middle-earth.old_zigilaban": "Vieille Zigil'Aban", + "block.middle-earth.old_zigilaban_slab": "Dalle de vieux Zigil'Aban", + "item.middle-earth.old_zigilaban_slab": "Dalle de vieux Zigil'Aban", + "block.middle-earth.old_zigilaban_stairs": "Escalier en vieux Zigil'Aban", + "item.middle-earth.old_zigilaban_stairs": "Escalier en vieux Zigil'Aban", + "block.middle-earth.old_zigilaban_vertical_slab": "Dalle verticale de vieux Zigil'Aban", + "item.middle-earth.old_zigilaban_vertical_slab": "Dalle verticale de vieux Zigil'Aban", + "block.middle-earth.old_zigilaban_wall": "Muret en vieux Zigil'Aban", + "item.middle-earth.old_zigilaban_wall": "Muret en vieux Zigil'Aban", + "block.middle-earth.chiseled_zigilaban_bricks_vertical_slab": "Dalle verticale de briques en Zigil'Aban sculptées", + "item.middle-earth.chiseled_zigilaban_bricks_vertical_slab": "Dalle verticale de briques en Zigil'Aban sculptées", + "block.middle-earth.chiseled_zigilaban_bricks_wall": "Muret de briques en Zigil'Aban sculptées", + "item.middle-earth.chiseled_zigilaban_bricks_wall": "Muret de briques en Zigil'Aban sculptées", + "block.middle-earth.mossy_zigilaban_brick_slab": "Brique en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_brick_slab": "Brique en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_brick_stairs": "Escalier de brique en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_brick_stairs": "Escalier de brique en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_brick_vertical_slab": "Dalle verticale de brique en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_brick_vertical_slab": "Dalle verticale de brique en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_brick_wall": "Muret de brique en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_brick_wall": "Muret de brique en Zigil'Aban moussue", + "block.middle-earth.cracked_zigilaban_brick_slab": "Brique en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_brick_slab": "Brique en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_brick_stairs": "Escalier de brique en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_brick_stairs": "Escalier de brique en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_brick_vertical_slab": "Dalle verticale de brique en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_brick_vertical_slab": "Dalle verticale de brique en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_brick_wall": "Muret de brique en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_brick_wall": "Muret de brique en Zigil'Aban craquelée", + "block.middle-earth.chiseled_zigilaban_tiles": "Zigil'Aban carrelée sculptée", + "item.middle-earth.chiseled_zigilaban_tiles": "Zigil'Aban carrelée sculptée", + "block.middle-earth.chiseled_zigilaban_tiles_vertical_slab": "Dalle verticale de Zigil'Aban carrelée sculptée", + "item.middle-earth.chiseled_zigilaban_tiles_vertical_slab": "Dalle verticale de Zigil'Aban carrelée sculptée", + "block.middle-earth.chiseled_zigilaban_tiles_wall": "Muret de Zigil'Aban carrelée sculptée", + "item.middle-earth.chiseled_zigilaban_tiles_wall": "Muret de Zigil'Aban carrelée sculptée", + "block.middle-earth.mossy_zigilaban_tile_slab": "Tuile en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_tile_slab": "Tuile en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_tile_stairs": "Escalier de tuile en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_tile_stairs": "Escalier de tuile en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_tile_vertical_slab": "Dalle verticale de tuile en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_tile_vertical_slab": "Dalle verticale de tuile en Zigil'Aban moussue", + "block.middle-earth.mossy_zigilaban_tile_wall": "Muret de tuile en Zigil'Aban moussue", + "item.middle-earth.mossy_zigilaban_tile_wall": "Muret de tuile en Zigil'Aban moussue", + "block.middle-earth.cracked_zigilaban_tile_slab": "Tuile en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_tile_slab": "Tuile en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_tile_stairs": "Escalier de tuile en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_tile_stairs": "Escalier de tuile en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_tile_vertical_slab": "Dalle verticale de tuile en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_tile_vertical_slab": "Dalle verticale de tuile en Zigil'Aban craquelée", + "block.middle-earth.cracked_zigilaban_tile_wall": "Muret de tuile en Zigil'Aban craquelée", + "item.middle-earth.cracked_zigilaban_tile_wall": "Muret de tuile en Zigil'Aban craquelée", + "block.middle-earth.chiseled_polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie sculptée", + "item.middle-earth.chiseled_polished_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban polie sculptée", + "block.middle-earth.chiseled_polished_zigilaban_wall": "Muret en Zigil'Aban polie sculptée", + "item.middle-earth.chiseled_polished_zigilaban_wall": "Muret en Zigil'Aban polie sculptée", + "block.middle-earth.chiseled_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban sculptée", + "item.middle-earth.chiseled_zigilaban_vertical_slab": "Dalle verticale en Zigil'Aban sculptée", + "block.middle-earth.chiseled_zigilaban_wall": "Muret en Zigil'Aban sculptée", + "item.middle-earth.chiseled_zigilaban_wall": "Muret en Zigil'Aban sculptée", + "block.middle-earth.mossy_izheraban_pillar_vertical_slab": "Dalle verticale de pilier en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_pillar_vertical_slab": "Dalle verticale de pilier en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_pillar_wall": "Muret de pilier en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_pillar_wall": "Muret de pilier en Izhêr'Aban moussue", + "block.middle-earth.cracked_izheraban_pillar_vertical_slab": "Dalle verticale de pilier en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_pillar_vertical_slab": "Dalle verticale de pilier en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_pillar_wall": "Muret de pilier en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_pillar_wall": "Muret de pilier en Izhêr'Aban craquelée", + "block.middle-earth.chiseled_smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban lisse sculptée", + "block.middle-earth.chiseled_smooth_izheraban_wall": "Muret en Izhêr'Aban lisse sculptée", + "item.middle-earth.chiseled_smooth_izheraban_wall": "Muret en Izhêr'Aban lisse sculptée", + "block.middle-earth.chiseled_izheraban_bricks_vertical_slab": "Dalle verticale de briques en Izhêr'Aban sculptées", + "item.middle-earth.chiseled_izheraban_bricks_vertical_slab": "Dalle verticale de briques en Izhêr'Aban sculptées", + "block.middle-earth.chiseled_izheraban_bricks_wall": "Muret de briques en Izhêr'Aban sculptées", + "item.middle-earth.chiseled_izheraban_bricks_wall": "Muret de briques en Izhêr'Aban sculptées", + "block.middle-earth.mossy_izheraban_brick_slab": "Brique en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_brick_slab": "Brique en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_brick_stairs": "Escalier de brique en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_brick_stairs": "Escalier de brique en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_brick_vertical_slab": "Dalle verticale de brique en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_brick_vertical_slab": "Dalle verticale de brique en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_brick_wall": "Muret de brique en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_brick_wall": "Muret de brique en Izhêr'Aban moussue", + "block.middle-earth.cracked_izheraban_brick_slab": "Brique en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_brick_slab": "Brique en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_brick_stairs": "Escalier de brique en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_brick_stairs": "Escalier de brique en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_brick_vertical_slab": "Dalle verticale de brique en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_brick_vertical_slab": "Dalle verticale de brique en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_brick_wall": "Muret de brique en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_brick_wall": "Muret de brique en Izhêr'Aban craquelée", + "block.middle-earth.chiseled_izheraban_tiles_vertical_slab": "Dalle verticale d'Izhêr'Aban carrelée sculptée", + "item.middle-earth.chiseled_izheraban_tiles_vertical_slab": "Dalle verticale d'Izhêr'Aban carrelée sculptée", + "block.middle-earth.chiseled_izheraban_tiles_wall": "Muret d'Izhêr'Aban carrelée sculptée", + "item.middle-earth.chiseled_izheraban_tiles_wall": "Muret d'Izhêr'Aban carrelée sculptée", + "block.middle-earth.mossy_izheraban_tile_slab": "Tuile en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_tile_slab": "Tuile en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_tile_stairs": "Escalier de tuile en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_tile_stairs": "Escalier de tuile en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_tile_vertical_slab": "Dalle verticale de tuile en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_tile_vertical_slab": "Dalle verticale de tuile en Izhêr'Aban moussue", + "block.middle-earth.mossy_izheraban_tile_wall": "Muret de tuile en Izhêr'Aban moussue", + "item.middle-earth.mossy_izheraban_tile_wall": "Muret de tuile en Izhêr'Aban moussue", + "block.middle-earth.cracked_izheraban_tile_slab": "Tuile en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_tile_slab": "Tuile en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_tile_stairs": "Escalier de tuile en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_tile_stairs": "Escalier de tuile en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_tile_vertical_slab": "Dalle verticale de tuile en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_tile_vertical_slab": "Dalle verticale de tuile en Izhêr'Aban craquelée", + "block.middle-earth.cracked_izheraban_tile_wall": "Muret de tuile en Izhêr'Aban craquelée", + "item.middle-earth.cracked_izheraban_tile_wall": "Muret de tuile en Izhêr'Aban craquelée", + "block.middle-earth.chiseled_polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie sculptée", + "item.middle-earth.chiseled_polished_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban polie sculptée", + "block.middle-earth.chiseled_polished_izheraban_wall": "Muret en Izhêr'Aban polie sculptée", + "item.middle-earth.chiseled_polished_izheraban_wall": "Muret en Izhêr'Aban polie sculptée", + "block.middle-earth.chiseled_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban sculptée", + "item.middle-earth.chiseled_izheraban_vertical_slab": "Dalle verticale en Izhêr'Aban sculptée", + "block.middle-earth.chiseled_izheraban_wall": "Muret en Izhêr'Aban sculptée", + "item.middle-earth.chiseled_izheraban_wall": "Muret en Izhêr'Aban sculptée", + "block.middle-earth.mossy_nurgon_pillar_vertical_slab": "Dalle verticale de pilier en Núrgon moussue", + "item.middle-earth.mossy_nurgon_pillar_vertical_slab": "Dalle verticale de pilier en Núrgon moussue", + "block.middle-earth.mossy_nurgon_pillar_wall": "Muret de pilier en Núrgon moussue", + "item.middle-earth.mossy_nurgon_pillar_wall": "Muret de pilier en Núrgon moussue", + "block.middle-earth.cracked_nurgon_pillar_vertical_slab": "Dalle verticale de pilier en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_pillar_vertical_slab": "Dalle verticale de pilier en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_pillar_wall": "Muret de pilier en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_pillar_wall": "Muret de pilier en Núrgon craquelée", + "block.middle-earth.mossy_cobbled_nurgon": "Pierre de Núrgon moussue", + "item.middle-earth.mossy_cobbled_nurgon": "Pierre de Núrgon moussue", + "block.middle-earth.mossy_cobbled_nurgon_slab": "Dalle en pierre de Núrgon moussue", + "item.middle-earth.mossy_cobbled_nurgon_slab": "Dalle en pierre de Núrgon moussue", + "block.middle-earth.mossy_cobbled_nurgon_stairs": "Escalier en pierre de Núrgon moussue", + "item.middle-earth.mossy_cobbled_nurgon_stairs": "Escalier en pierre de Núrgon moussue", + "block.middle-earth.mossy_cobbled_nurgon_vertical_slab": "Dalle verticale en pierre de Núrgon moussue", + "item.middle-earth.mossy_cobbled_nurgon_vertical_slab": "Dalle verticale en pierre de Núrgon moussue", + "block.middle-earth.mossy_cobbled_nurgon_wall": "Muret en pierre de Núrgon moussue", + "item.middle-earth.mossy_cobbled_nurgon_wall": "Muret en pierre de Núrgon moussue", + "block.middle-earth.smooth_nurgon": "Núrgon lisse", + "item.middle-earth.smooth_nurgon": "Núrgon lisse", + "block.middle-earth.smooth_nurgon_slab": "Dalle en Núrgon lisse", + "item.middle-earth.smooth_nurgon_slab": "Dalle en Núrgon lisse", + "block.middle-earth.smooth_nurgon_stairs": "Escalier en Núrgon lisse", + "item.middle-earth.smooth_nurgon_stairs": "Escalier en Núrgon lisse", + "block.middle-earth.smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse", + "item.middle-earth.smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse", + "block.middle-earth.smooth_nurgon_wall": "Muret en Núrgon lisse", + "item.middle-earth.smooth_nurgon_wall": "Muret en Núrgon lisse", + "block.middle-earth.mossy_smooth_nurgon": "Núrgon lisse moussue", + "item.middle-earth.mossy_smooth_nurgon": "Núrgon lisse moussue", + "block.middle-earth.mossy_smooth_nurgon_slab": "Dalle en Núrgon lisse moussue", + "item.middle-earth.mossy_smooth_nurgon_slab": "Dalle en Núrgon lisse moussue", + "block.middle-earth.mossy_smooth_nurgon_stairs": "Escalier en Núrgon lisse moussue", + "item.middle-earth.mossy_smooth_nurgon_stairs": "Escalier en Núrgon lisse moussue", + "block.middle-earth.mossy_smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse moussue", + "item.middle-earth.mossy_smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse moussue", + "block.middle-earth.mossy_smooth_nurgon_wall": "Muret en Núrgon lisse moussue", + "item.middle-earth.mossy_smooth_nurgon_wall": "Muret en Núrgon lisse moussue", + "block.middle-earth.cracked_smooth_nurgon": "Núrgon lisse craquelée", + "item.middle-earth.cracked_smooth_nurgon": "Núrgon lisse craquelée", + "block.middle-earth.cracked_smooth_nurgon_slab": "Dalle en Núrgon lisse craquelée", + "item.middle-earth.cracked_smooth_nurgon_slab": "Dalle en Núrgon lisse craquelée", + "block.middle-earth.cracked_smooth_nurgon_stairs": "Escalier en Núrgon lisse craquelée", + "item.middle-earth.cracked_smooth_nurgon_stairs": "Escalier en Núrgon lisse craquelée", + "block.middle-earth.cracked_smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse craquelée", + "item.middle-earth.cracked_smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse craquelée", + "block.middle-earth.cracked_smooth_nurgon_wall": "Muret en Núrgon lisse craquelée", + "item.middle-earth.cracked_smooth_nurgon_wall": "Muret en Núrgon lisse craquelée", + "block.middle-earth.chiseled_smooth_nurgon": "Núrgon lisse sculptée", + "item.middle-earth.chiseled_smooth_nurgon": "Núrgon lisse sculptée", + "block.middle-earth.chiseled_smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse sculptée", + "item.middle-earth.chiseled_smooth_nurgon_vertical_slab": "Dalle verticale en Núrgon lisse sculptée", + "block.middle-earth.chiseled_smooth_nurgon_wall": "Muret en Núrgon lisse sculptée", + "item.middle-earth.chiseled_smooth_nurgon_wall": "Muret en Núrgon lisse sculptée", + "block.middle-earth.old_nurgon": "Vieille Núrgon", + "item.middle-earth.old_nurgon": "Vieille Núrgon", + "block.middle-earth.old_nurgon_slab": "Dalle de vieux Núrgon", + "item.middle-earth.old_nurgon_slab": "Dalle de vieux Núrgon", + "block.middle-earth.old_nurgon_stairs": "Escalier en vieux Núrgon", + "item.middle-earth.old_nurgon_stairs": "Escalier en vieux Núrgon", + "block.middle-earth.old_nurgon_vertical_slab": "Dalle verticale de vieux Núrgon", + "item.middle-earth.old_nurgon_vertical_slab": "Dalle verticale de vieux Núrgon", + "block.middle-earth.old_nurgon_wall": "Muret en vieux Núrgon", + "item.middle-earth.old_nurgon_wall": "Muret en vieux Núrgon", + "block.middle-earth.chiseled_nurgon_bricks_vertical_slab": "Dalle verticale de briques en Núrgon sculptées", + "item.middle-earth.chiseled_nurgon_bricks_vertical_slab": "Dalle verticale de briques en Núrgon sculptées", + "block.middle-earth.chiseled_nurgon_bricks_wall": "Muret de briques en Núrgon sculptées", + "item.middle-earth.chiseled_nurgon_bricks_wall": "Muret de briques en Núrgon sculptées", + "block.middle-earth.mossy_nurgon_brick_slab": "Brique en Núrgon moussue", + "item.middle-earth.mossy_nurgon_brick_slab": "Brique en Núrgon moussue", + "block.middle-earth.mossy_nurgon_brick_stairs": "Escalier de brique en Núrgon moussue", + "item.middle-earth.mossy_nurgon_brick_stairs": "Escalier de brique en Núrgon moussue", + "block.middle-earth.mossy_nurgon_brick_vertical_slab": "Dalle verticale de brique en Núrgon moussue", + "item.middle-earth.mossy_nurgon_brick_vertical_slab": "Dalle verticale de brique en Núrgon moussue", + "block.middle-earth.mossy_nurgon_brick_wall": "Muret de brique en Núrgon moussue", + "item.middle-earth.mossy_nurgon_brick_wall": "Muret de brique en Núrgon moussue", + "block.middle-earth.cracked_nurgon_brick_slab": "Brique en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_brick_slab": "Brique en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_brick_stairs": "Escalier de brique en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_brick_stairs": "Escalier de brique en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_brick_vertical_slab": "Dalle verticale de brique en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_brick_vertical_slab": "Dalle verticale de brique en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_brick_wall": "Muret de brique en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_brick_wall": "Muret de brique en Núrgon craquelée", + "block.middle-earth.chiseled_nurgon_tiles": "Núrgon carrelée sculptée", + "item.middle-earth.chiseled_nurgon_tiles": "Núrgon carrelée sculptée", + "block.middle-earth.chiseled_nurgon_tiles_vertical_slab": "Dalle verticale de Núrgon carrelée sculptée", + "item.middle-earth.chiseled_nurgon_tiles_vertical_slab": "Dalle verticale de Núrgon carrelée sculptée", + "block.middle-earth.chiseled_nurgon_tiles_wall": "Muret de Núrgon carrelée sculptée", + "item.middle-earth.chiseled_nurgon_tiles_wall": "Muret de Núrgon carrelée sculptée", + "block.middle-earth.mossy_nurgon_tile_slab": "Tuile en Núrgon moussue", + "item.middle-earth.mossy_nurgon_tile_slab": "Tuile en Núrgon moussue", + "block.middle-earth.mossy_nurgon_tile_stairs": "Escalier de tuile en Núrgon moussue", + "item.middle-earth.mossy_nurgon_tile_stairs": "Escalier de tuile en Núrgon moussue", + "block.middle-earth.mossy_nurgon_tile_vertical_slab": "Dalle verticale de tuile en Núrgon moussue", + "item.middle-earth.mossy_nurgon_tile_vertical_slab": "Dalle verticale de tuile en Núrgon moussue", + "block.middle-earth.mossy_nurgon_tile_wall": "Muret de tuile en Núrgon moussue", + "item.middle-earth.mossy_nurgon_tile_wall": "Muret de tuile en Núrgon moussue", + "block.middle-earth.cracked_nurgon_tile_slab": "Tuile en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_tile_slab": "Tuile en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_tile_stairs": "Escalier de tuile en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_tile_stairs": "Escalier de tuile en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_tile_vertical_slab": "Dalle verticale de tuile en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_tile_vertical_slab": "Dalle verticale de tuile en Núrgon craquelée", + "block.middle-earth.cracked_nurgon_tile_wall": "Muret de tuile en Núrgon craquelée", + "item.middle-earth.cracked_nurgon_tile_wall": "Muret de tuile en Núrgon craquelée", + "block.middle-earth.chiseled_polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie sculptée", + "item.middle-earth.chiseled_polished_nurgon_vertical_slab": "Dalle verticale en Núrgon polie sculptée", + "block.middle-earth.chiseled_polished_nurgon_wall": "Muret en Núrgon polie sculptée", + "item.middle-earth.chiseled_polished_nurgon_wall": "Muret en Núrgon polie sculptée", + "block.middle-earth.chiseled_nurgon": "Núrgon sculptée", + "item.middle-earth.chiseled_nurgon": "Núrgon sculptée", + "block.middle-earth.chiseled_nurgon_vertical_slab": "Dalle verticale en Núrgon sculptée", + "item.middle-earth.chiseled_nurgon_vertical_slab": "Dalle verticale en Núrgon sculptée", + "block.middle-earth.chiseled_nurgon_wall": "Muret en Núrgon sculptée", + "item.middle-earth.chiseled_nurgon_wall": "Muret en Núrgon sculptée", + "block.middle-earth.mossy_medgon_pillar_vertical_slab": "Dalle verticale de pilier en Medgon moussue", + "item.middle-earth.mossy_medgon_pillar_vertical_slab": "Dalle verticale de pilier en Medgon moussue", + "block.middle-earth.mossy_medgon_pillar_wall": "Muret de pilier en Medgon moussue", + "item.middle-earth.mossy_medgon_pillar_wall": "Muret de pilier en Medgon moussue", + "block.middle-earth.cracked_medgon_pillar_vertical_slab": "Dalle verticale de pilier en Medgon craquelée", + "item.middle-earth.cracked_medgon_pillar_vertical_slab": "Dalle verticale de pilier en Medgon craquelée", + "block.middle-earth.cracked_medgon_pillar_wall": "Muret de pilier en Medgon craquelée", + "item.middle-earth.cracked_medgon_pillar_wall": "Muret de pilier en Medgon craquelée", + "block.middle-earth.chiseled_smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse sculptée", + "item.middle-earth.chiseled_smooth_medgon_vertical_slab": "Dalle verticale en Medgon lisse sculptée", + "block.middle-earth.chiseled_smooth_medgon_wall": "Muret en Medgon lisse sculptée", + "item.middle-earth.chiseled_smooth_medgon_wall": "Muret en Medgon lisse sculptée", + "block.middle-earth.chiseled_medgon_bricks_vertical_slab": "Dalle verticale de briques en Medgon sculptées", + "item.middle-earth.chiseled_medgon_bricks_vertical_slab": "Dalle verticale de briques en Medgon sculptées", + "block.middle-earth.chiseled_medgon_bricks_wall": "Muret de briques en Medgon sculptées", + "item.middle-earth.chiseled_medgon_bricks_wall": "Muret de briques en Medgon sculptées", + "block.middle-earth.mossy_medgon_brick_slab": "Brique en Medgon moussue", + "item.middle-earth.mossy_medgon_brick_slab": "Brique en Medgon moussue", + "block.middle-earth.mossy_medgon_brick_stairs": "Escalier de brique en Medgon moussue", + "item.middle-earth.mossy_medgon_brick_stairs": "Escalier de brique en Medgon moussue", + "block.middle-earth.mossy_medgon_brick_vertical_slab": "Dalle verticale de brique en Medgon moussue", + "item.middle-earth.mossy_medgon_brick_vertical_slab": "Dalle verticale de brique en Medgon moussue", + "block.middle-earth.mossy_medgon_brick_wall": "Muret de brique en Medgon moussue", + "item.middle-earth.mossy_medgon_brick_wall": "Muret de brique en Medgon moussue", + "block.middle-earth.cracked_medgon_brick_slab": "Brique en Medgon craquelée", + "item.middle-earth.cracked_medgon_brick_slab": "Brique en Medgon craquelée", + "block.middle-earth.cracked_medgon_brick_stairs": "Escalier de brique en Medgon craquelée", + "item.middle-earth.cracked_medgon_brick_stairs": "Escalier de brique en Medgon craquelée", + "block.middle-earth.cracked_medgon_brick_vertical_slab": "Dalle verticale de brique en Medgon craquelée", + "item.middle-earth.cracked_medgon_brick_vertical_slab": "Dalle verticale de brique en Medgon craquelée", + "block.middle-earth.cracked_medgon_brick_wall": "Muret de brique en Medgon craquelée", + "item.middle-earth.cracked_medgon_brick_wall": "Muret de brique en Medgon craquelée", + "block.middle-earth.chiseled_medgon_tiles_vertical_slab": "Dalle verticale de Medgon carrelée sculptée", + "item.middle-earth.chiseled_medgon_tiles_vertical_slab": "Dalle verticale de Medgon carrelée sculptée", + "block.middle-earth.chiseled_medgon_tiles_wall": "Muret de Medgon carrelée sculptée", + "item.middle-earth.chiseled_medgon_tiles_wall": "Muret de Medgon carrelée sculptée", + "block.middle-earth.mossy_medgon_tile_slab": "Tuile en Medgon moussue", + "item.middle-earth.mossy_medgon_tile_slab": "Tuile en Medgon moussue", + "block.middle-earth.mossy_medgon_tile_stairs": "Escalier de tuile en Medgon moussue", + "item.middle-earth.mossy_medgon_tile_stairs": "Escalier de tuile en Medgon moussue", + "block.middle-earth.mossy_medgon_tile_vertical_slab": "Dalle verticale de tuile en Medgon moussue", + "item.middle-earth.mossy_medgon_tile_vertical_slab": "Dalle verticale de tuile en Medgon moussue", + "block.middle-earth.mossy_medgon_tile_wall": "Muret de tuile en Medgon moussue", + "item.middle-earth.mossy_medgon_tile_wall": "Muret de tuile en Medgon moussue", + "block.middle-earth.cracked_medgon_tile_slab": "Tuile en Medgon craquelée", + "item.middle-earth.cracked_medgon_tile_slab": "Tuile en Medgon craquelée", + "block.middle-earth.cracked_medgon_tile_stairs": "Escalier de tuile en Medgon craquelée", + "item.middle-earth.cracked_medgon_tile_stairs": "Escalier de tuile en Medgon craquelée", + "block.middle-earth.cracked_medgon_tile_vertical_slab": "Dalle verticale de tuile en Medgon craquelée", + "item.middle-earth.cracked_medgon_tile_vertical_slab": "Dalle verticale de tuile en Medgon craquelée", + "block.middle-earth.cracked_medgon_tile_wall": "Muret de tuile en Medgon craquelée", + "item.middle-earth.cracked_medgon_tile_wall": "Muret de tuile en Medgon craquelée", + "block.middle-earth.chiseled_polished_medgon_vertical_slab": "Dalle verticale en Medgon polie sculptée", + "item.middle-earth.chiseled_polished_medgon_vertical_slab": "Dalle verticale en Medgon polie sculptée", + "block.middle-earth.chiseled_polished_medgon_wall": "Muret en Medgon polie sculptée", + "item.middle-earth.chiseled_polished_medgon_wall": "Muret en Medgon polie sculptée", + "block.middle-earth.chiseled_medgon_vertical_slab": "Dalle verticale en Medgon sculptée", + "item.middle-earth.chiseled_medgon_vertical_slab": "Dalle verticale en Medgon sculptée", + "block.middle-earth.chiseled_medgon_wall": "Muret en Medgon sculptée", + "item.middle-earth.chiseled_medgon_wall": "Muret en Medgon sculptée", + "block.middle-earth.mossy_galonn_pillar_vertical_slab": "Dalle verticale de pilier en Galonn moussue", + "item.middle-earth.mossy_galonn_pillar_vertical_slab": "Dalle verticale de pilier en Galonn moussue", + "block.middle-earth.mossy_galonn_pillar_wall": "Muret de pilier en Galonn moussue", + "item.middle-earth.mossy_galonn_pillar_wall": "Muret de pilier en Galonn moussue", + "block.middle-earth.cracked_galonn_pillar_vertical_slab": "Dalle verticale de pilier en Galonn craquelée", + "item.middle-earth.cracked_galonn_pillar_vertical_slab": "Dalle verticale de pilier en Galonn craquelée", + "block.middle-earth.cracked_galonn_pillar_wall": "Muret de pilier en Galonn craquelée", + "item.middle-earth.cracked_galonn_pillar_wall": "Muret de pilier en Galonn craquelée", + "block.middle-earth.chiseled_smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse sculptée", + "item.middle-earth.chiseled_smooth_galonn_vertical_slab": "Dalle verticale en Galonn lisse sculptée", + "block.middle-earth.chiseled_smooth_galonn_wall": "Muret en Galonn lisse sculptée", + "item.middle-earth.chiseled_smooth_galonn_wall": "Muret en Galonn lisse sculptée", + "block.middle-earth.chiseled_galonn_bricks_vertical_slab": "Dalle verticale de briques en Galonn sculptées", + "item.middle-earth.chiseled_galonn_bricks_vertical_slab": "Dalle verticale de briques en Galonn sculptées", + "block.middle-earth.chiseled_galonn_bricks_wall": "Muret de briques en Galonn sculptées", + "item.middle-earth.chiseled_galonn_bricks_wall": "Muret de briques en Galonn sculptées", + "block.middle-earth.mossy_galonn_brick_slab": "Brique en Galonn moussue", + "item.middle-earth.mossy_galonn_brick_slab": "Brique en Galonn moussue", + "block.middle-earth.mossy_galonn_brick_stairs": "Escalier de brique en Galonn moussue", + "item.middle-earth.mossy_galonn_brick_stairs": "Escalier de brique en Galonn moussue", + "block.middle-earth.mossy_galonn_brick_vertical_slab": "Dalle verticale de brique en Galonn moussue", + "item.middle-earth.mossy_galonn_brick_vertical_slab": "Dalle verticale de brique en Galonn moussue", + "block.middle-earth.mossy_galonn_brick_wall": "Muret de brique en Galonn moussue", + "item.middle-earth.mossy_galonn_brick_wall": "Muret de brique en Galonn moussue", + "block.middle-earth.cracked_galonn_brick_slab": "Brique en Galonn craquelée", + "item.middle-earth.cracked_galonn_brick_slab": "Brique en Galonn craquelée", + "block.middle-earth.cracked_galonn_brick_stairs": "Escalier de brique en Galonn craquelée", + "item.middle-earth.cracked_galonn_brick_stairs": "Escalier de brique en Galonn craquelée", + "block.middle-earth.cracked_galonn_brick_vertical_slab": "Dalle verticale de brique en Galonn craquelée", + "item.middle-earth.cracked_galonn_brick_vertical_slab": "Dalle verticale de brique en Galonn craquelée", + "block.middle-earth.cracked_galonn_brick_wall": "Muret de brique en Galonn craquelée", + "item.middle-earth.cracked_galonn_brick_wall": "Muret de brique en Galonn craquelée", + "block.middle-earth.chiseled_galonn_tiles_vertical_slab": "Dalle verticale de Galonn carrelée sculptée", + "item.middle-earth.chiseled_galonn_tiles_vertical_slab": "Dalle verticale de Galonn carrelée sculptée", + "block.middle-earth.chiseled_galonn_tiles_wall": "Muret de Galonn carrelée sculptée", + "item.middle-earth.chiseled_galonn_tiles_wall": "Muret de Galonn carrelée sculptée", + "block.middle-earth.mossy_galonn_tile_slab": "Tuile en Galonn moussue", + "item.middle-earth.mossy_galonn_tile_slab": "Tuile en Galonn moussue", + "block.middle-earth.mossy_galonn_tile_stairs": "Escalier de tuile en Galonn moussue", + "item.middle-earth.mossy_galonn_tile_stairs": "Escalier de tuile en Galonn moussue", + "block.middle-earth.mossy_galonn_tile_vertical_slab": "Dalle verticale de tuile en Galonn moussue", + "item.middle-earth.mossy_galonn_tile_vertical_slab": "Dalle verticale de tuile en Galonn moussue", + "block.middle-earth.mossy_galonn_tile_wall": "Muret de tuile en Galonn moussue", + "item.middle-earth.mossy_galonn_tile_wall": "Muret de tuile en Galonn moussue", + "block.middle-earth.cracked_galonn_tile_slab": "Tuile en Galonn craquelée", + "item.middle-earth.cracked_galonn_tile_slab": "Tuile en Galonn craquelée", + "block.middle-earth.cracked_galonn_tile_stairs": "Escalier de tuile en Galonn craquelée", + "item.middle-earth.cracked_galonn_tile_stairs": "Escalier de tuile en Galonn craquelée", + "block.middle-earth.cracked_galonn_tile_vertical_slab": "Dalle verticale de tuile en Galonn craquelée", + "item.middle-earth.cracked_galonn_tile_vertical_slab": "Dalle verticale de tuile en Galonn craquelée", + "block.middle-earth.cracked_galonn_tile_wall": "Muret de tuile en Galonn craquelée", + "item.middle-earth.cracked_galonn_tile_wall": "Muret de tuile en Galonn craquelée", + "block.middle-earth.chiseled_polished_galonn_vertical_slab": "Dalle verticale en Galonn polie sculptée", + "item.middle-earth.chiseled_polished_galonn_vertical_slab": "Dalle verticale en Galonn polie sculptée", + "block.middle-earth.chiseled_polished_galonn_wall": "Muret en Galonn polie sculptée", + "item.middle-earth.chiseled_polished_galonn_wall": "Muret en Galonn polie sculptée", + "block.middle-earth.chiseled_galonn_vertical_slab": "Dalle verticale en Galonn sculptée", + "item.middle-earth.chiseled_galonn_vertical_slab": "Dalle verticale en Galonn sculptée", + "block.middle-earth.chiseled_galonn_wall": "Muret en Galonn sculptée", + "item.middle-earth.chiseled_galonn_wall": "Muret en Galonn sculptée", + "block.middle-earth.cracked_jadeite_pillar_vertical_slab": "Dalle verticale de pilier en jadéite craquelée", + "item.middle-earth.cracked_jadeite_pillar_vertical_slab": "Dalle verticale de pilier en jadéite craquelée", + "block.middle-earth.cracked_jadeite_pillar_wall": "Muret de pilier en jadéite craquelée", + "item.middle-earth.cracked_jadeite_pillar_wall": "Muret de pilier en jadéite craquelée", + "block.middle-earth.cracked_jadeite_brick_slab": "Brique en jadéite craquelée", + "item.middle-earth.cracked_jadeite_brick_slab": "Brique en jadéite craquelée", + "block.middle-earth.cracked_jadeite_brick_stairs": "Escalier de brique en jadéite craquelée", + "item.middle-earth.cracked_jadeite_brick_stairs": "Escalier de brique en jadéite craquelée", + "block.middle-earth.cracked_jadeite_brick_vertical_slab": "Dalle verticale de brique en jadéite craquelée", + "item.middle-earth.cracked_jadeite_brick_vertical_slab": "Dalle verticale de brique en jadéite craquelée", + "block.middle-earth.cracked_jadeite_brick_wall": "Muret de brique en jadéite craquelée", + "item.middle-earth.cracked_jadeite_brick_wall": "Muret de brique en jadéite craquelée", + "block.middle-earth.cracked_jadeite_tile_slab": "Tuile en jadéite craquelée", + "item.middle-earth.cracked_jadeite_tile_slab": "Tuile en jadéite craquelée", + "block.middle-earth.cracked_jadeite_tile_stairs": "Escalier de tuile en jadéite craquelée", + "item.middle-earth.cracked_jadeite_tile_stairs": "Escalier de tuile en jadéite craquelée", + "block.middle-earth.cracked_jadeite_tile_vertical_slab": "Dalle verticale de tuile en jadéite craquelée", + "item.middle-earth.cracked_jadeite_tile_vertical_slab": "Dalle verticale de tuile en jadéite craquelée", + "block.middle-earth.cracked_jadeite_tile_wall": "Muret de tuile en jadéite craquelée", + "item.middle-earth.cracked_jadeite_tile_wall": "Muret de tuile en jadéite craquelée", + "block.middle-earth.mossy_calcite_pillar_vertical_slab": "Dalle verticale de pilier en calcite moussue", + "item.middle-earth.mossy_calcite_pillar_vertical_slab": "Dalle verticale de pilier en calcite moussue", + "block.middle-earth.mossy_calcite_pillar_wall": "Muret de pilier en calcite moussue", + "item.middle-earth.mossy_calcite_pillar_wall": "Muret de pilier en calcite moussue", + "block.middle-earth.cracked_calcite_pillar_vertical_slab": "Dalle verticale de pilier en calcite craquelée", + "item.middle-earth.cracked_calcite_pillar_vertical_slab": "Dalle verticale de pilier en calcite craquelée", + "block.middle-earth.cracked_calcite_pillar_wall": "Muret de pilier en calcite craquelée", + "item.middle-earth.cracked_calcite_pillar_wall": "Muret de pilier en calcite craquelée", + "block.middle-earth.chiseled_smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse sculptée", + "item.middle-earth.chiseled_smooth_calcite_vertical_slab": "Dalle verticale en calcite lisse sculptée", + "block.middle-earth.chiseled_smooth_calcite_wall": "Muret en calcite lisse sculptée", + "item.middle-earth.chiseled_smooth_calcite_wall": "Muret en calcite lisse sculptée", + "block.middle-earth.chiseled_calcite_bricks_vertical_slab": "Dalle verticale de briques en calcite sculptées", + "item.middle-earth.chiseled_calcite_bricks_vertical_slab": "Dalle verticale de briques en calcite sculptées", + "block.middle-earth.chiseled_calcite_bricks_wall": "Muret de briques en calcite sculptées", + "item.middle-earth.chiseled_calcite_bricks_wall": "Muret de briques en calcite sculptées", + "block.middle-earth.mossy_calcite_brick_slab": "Brique en calcite moussue", + "item.middle-earth.mossy_calcite_brick_slab": "Brique en calcite moussue", + "block.middle-earth.mossy_calcite_brick_stairs": "Escalier de brique en calcite moussue", + "item.middle-earth.mossy_calcite_brick_stairs": "Escalier de brique en calcite moussue", + "block.middle-earth.mossy_calcite_brick_vertical_slab": "Dalle verticale de brique en calcite moussue", + "item.middle-earth.mossy_calcite_brick_vertical_slab": "Dalle verticale de brique en calcite moussue", + "block.middle-earth.mossy_calcite_brick_wall": "Muret de brique en calcite moussue", + "item.middle-earth.mossy_calcite_brick_wall": "Muret de brique en calcite moussue", + "block.middle-earth.cracked_calcite_brick_slab": "Brique en calcite craquelée", + "item.middle-earth.cracked_calcite_brick_slab": "Brique en calcite craquelée", + "block.middle-earth.cracked_calcite_brick_stairs": "Escalier de brique en calcite craquelée", + "item.middle-earth.cracked_calcite_brick_stairs": "Escalier de brique en calcite craquelée", + "block.middle-earth.cracked_calcite_brick_vertical_slab": "Dalle verticale de brique en calcite craquelée", + "item.middle-earth.cracked_calcite_brick_vertical_slab": "Dalle verticale de brique en calcite craquelée", + "block.middle-earth.cracked_calcite_brick_wall": "Muret de brique en calcite craquelée", + "item.middle-earth.cracked_calcite_brick_wall": "Muret de brique en calcite craquelée", + "block.middle-earth.chiseled_calcite_tiles_vertical_slab": "Dalle verticale de calcite carrelée sculptée", + "item.middle-earth.chiseled_calcite_tiles_vertical_slab": "Dalle verticale de calcite carrelée sculptée", + "block.middle-earth.chiseled_calcite_tiles_wall": "Muret de calcite carrelée sculptée", + "item.middle-earth.chiseled_calcite_tiles_wall": "Muret de calcite carrelée sculptée", + "block.middle-earth.mossy_calcite_tile_slab": "Tuile en calcite moussue", + "item.middle-earth.mossy_calcite_tile_slab": "Tuile en calcite moussue", + "block.middle-earth.mossy_calcite_tile_stairs": "Escalier de tuile en calcite moussue", + "item.middle-earth.mossy_calcite_tile_stairs": "Escalier de tuile en calcite moussue", + "block.middle-earth.mossy_calcite_tile_vertical_slab": "Dalle verticale de tuile en calcite moussue", + "item.middle-earth.mossy_calcite_tile_vertical_slab": "Dalle verticale de tuile en calcite moussue", + "block.middle-earth.mossy_calcite_tile_wall": "Muret de tuile en calcite moussue", + "item.middle-earth.mossy_calcite_tile_wall": "Muret de tuile en calcite moussue", + "block.middle-earth.cracked_calcite_tile_slab": "Tuile en calcite craquelée", + "item.middle-earth.cracked_calcite_tile_slab": "Tuile en calcite craquelée", + "block.middle-earth.cracked_calcite_tile_stairs": "Escalier de tuile en calcite craquelée", + "item.middle-earth.cracked_calcite_tile_stairs": "Escalier de tuile en calcite craquelée", + "block.middle-earth.cracked_calcite_tile_vertical_slab": "Dalle verticale de tuile en calcite craquelée", + "item.middle-earth.cracked_calcite_tile_vertical_slab": "Dalle verticale de tuile en calcite craquelée", + "block.middle-earth.cracked_calcite_tile_wall": "Muret de tuile en calcite craquelée", + "item.middle-earth.cracked_calcite_tile_wall": "Muret de tuile en calcite craquelée", + "block.middle-earth.chiseled_polished_calcite_vertical_slab": "Dalle verticale en calcite polie sculptée", + "item.middle-earth.chiseled_polished_calcite_vertical_slab": "Dalle verticale en calcite polie sculptée", + "block.middle-earth.chiseled_polished_calcite_wall": "Muret en calcite polie sculptée", + "item.middle-earth.chiseled_polished_calcite_wall": "Muret en calcite polie sculptée", + "block.middle-earth.chiseled_calcite_vertical_slab": "Dalle verticale en calcite sculptée", + "item.middle-earth.chiseled_calcite_vertical_slab": "Dalle verticale en calcite sculptée", + "block.middle-earth.chiseled_calcite_wall": "Muret en calcite sculptée", + "item.middle-earth.chiseled_calcite_wall": "Muret en calcite sculptée", + "block.middle-earth.mossy_dolomite_pillar_vertical_slab": "Dalle verticale de pilier en dolomite moussue", + "item.middle-earth.mossy_dolomite_pillar_vertical_slab": "Dalle verticale de pilier en dolomite moussue", + "block.middle-earth.mossy_dolomite_pillar_wall": "Muret de pilier en dolomite moussue", + "item.middle-earth.mossy_dolomite_pillar_wall": "Muret de pilier en dolomite moussue", + "block.middle-earth.cracked_dolomite_pillar_vertical_slab": "Dalle verticale de pilier en dolomite craquelée", + "item.middle-earth.cracked_dolomite_pillar_vertical_slab": "Dalle verticale de pilier en dolomite craquelée", + "block.middle-earth.cracked_dolomite_pillar_wall": "Muret de pilier en dolomite craquelée", + "item.middle-earth.cracked_dolomite_pillar_wall": "Muret de pilier en dolomite craquelée", + "block.middle-earth.chiseled_smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse sculptée", + "item.middle-earth.chiseled_smooth_dolomite_vertical_slab": "Dalle verticale en dolomite lisse sculptée", + "block.middle-earth.chiseled_smooth_dolomite_wall": "Muret en dolomite lisse sculptée", + "item.middle-earth.chiseled_smooth_dolomite_wall": "Muret en dolomite lisse sculptée", + "block.middle-earth.chiseled_dolomite_bricks_vertical_slab": "Dalle verticale de briques en dolomite sculptées", + "item.middle-earth.chiseled_dolomite_bricks_vertical_slab": "Dalle verticale de briques en dolomite sculptées", + "block.middle-earth.chiseled_dolomite_bricks_wall": "Muret de briques en dolomite sculptées", + "item.middle-earth.chiseled_dolomite_bricks_wall": "Muret de briques en dolomite sculptées", + "block.middle-earth.mossy_dolomite_brick_slab": "Brique en dolomite moussue", + "item.middle-earth.mossy_dolomite_brick_slab": "Brique en dolomite moussue", + "block.middle-earth.mossy_dolomite_brick_stairs": "Escalier de brique en dolomite moussue", + "item.middle-earth.mossy_dolomite_brick_stairs": "Escalier de brique en dolomite moussue", + "block.middle-earth.mossy_dolomite_brick_vertical_slab": "Dalle verticale de brique en dolomite moussue", + "item.middle-earth.mossy_dolomite_brick_vertical_slab": "Dalle verticale de brique en dolomite moussue", + "block.middle-earth.mossy_dolomite_brick_wall": "Muret de brique en dolomite moussue", + "item.middle-earth.mossy_dolomite_brick_wall": "Muret de brique en dolomite moussue", + "block.middle-earth.cracked_dolomite_brick_slab": "Brique en dolomite craquelée", + "item.middle-earth.cracked_dolomite_brick_slab": "Brique en dolomite craquelée", + "block.middle-earth.cracked_dolomite_brick_stairs": "Escalier de brique en dolomite craquelée", + "item.middle-earth.cracked_dolomite_brick_stairs": "Escalier de brique en dolomite craquelée", + "block.middle-earth.cracked_dolomite_brick_vertical_slab": "Dalle verticale de brique en dolomite craquelée", + "item.middle-earth.cracked_dolomite_brick_vertical_slab": "Dalle verticale de brique en dolomite craquelée", + "block.middle-earth.cracked_dolomite_brick_wall": "Muret de brique en dolomite craquelée", + "item.middle-earth.cracked_dolomite_brick_wall": "Muret de brique en dolomite craquelée", + "block.middle-earth.chiseled_dolomite_tiles_vertical_slab": "Dalle verticale de dolomite carrelée sculptée", + "item.middle-earth.chiseled_dolomite_tiles_vertical_slab": "Dalle verticale de dolomite carrelée sculptée", + "block.middle-earth.chiseled_dolomite_tiles_wall": "Muret de dolomite carrelée sculptée", + "item.middle-earth.chiseled_dolomite_tiles_wall": "Muret de dolomite carrelée sculptée", + "block.middle-earth.mossy_dolomite_tile_slab": "Tuile en dolomite moussue", + "item.middle-earth.mossy_dolomite_tile_slab": "Tuile en dolomite moussue", + "block.middle-earth.mossy_dolomite_tile_stairs": "Escalier de tuile en dolomite moussue", + "item.middle-earth.mossy_dolomite_tile_stairs": "Escalier de tuile en dolomite moussue", + "block.middle-earth.mossy_dolomite_tile_vertical_slab": "Dalle verticale de tuile en dolomite moussue", + "item.middle-earth.mossy_dolomite_tile_vertical_slab": "Dalle verticale de tuile en dolomite moussue", + "block.middle-earth.mossy_dolomite_tile_wall": "Muret de tuile en dolomite moussue", + "item.middle-earth.mossy_dolomite_tile_wall": "Muret de tuile en dolomite moussue", + "block.middle-earth.cracked_dolomite_tile_slab": "Tuile en dolomite craquelée", + "item.middle-earth.cracked_dolomite_tile_slab": "Tuile en dolomite craquelée", + "block.middle-earth.cracked_dolomite_tile_stairs": "Escalier de tuile en dolomite craquelée", + "item.middle-earth.cracked_dolomite_tile_stairs": "Escalier de tuile en dolomite craquelée", + "block.middle-earth.cracked_dolomite_tile_vertical_slab": "Dalle verticale de tuile en dolomite craquelée", + "item.middle-earth.cracked_dolomite_tile_vertical_slab": "Dalle verticale de tuile en dolomite craquelée", + "block.middle-earth.cracked_dolomite_tile_wall": "Muret de tuile en dolomite craquelée", + "item.middle-earth.cracked_dolomite_tile_wall": "Muret de tuile en dolomite craquelée", + "block.middle-earth.chiseled_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie sculptée", + "item.middle-earth.chiseled_polished_dolomite_vertical_slab": "Dalle verticale en dolomite polie sculptée", + "block.middle-earth.chiseled_polished_dolomite_wall": "Muret en dolomite polie sculptée", + "item.middle-earth.chiseled_polished_dolomite_wall": "Muret en dolomite polie sculptée", + "block.middle-earth.chiseled_dolomite_vertical_slab": "Dalle verticale en dolomite sculptée", + "item.middle-earth.chiseled_dolomite_vertical_slab": "Dalle verticale en dolomite sculptée", + "block.middle-earth.chiseled_dolomite_wall": "Muret en dolomite sculptée", + "item.middle-earth.chiseled_dolomite_wall": "Muret en dolomite sculptée", + "block.middle-earth.mossy_pumice_pillar_vertical_slab": "Dalle verticale de pilier en pierre ponce moussue", + "item.middle-earth.mossy_pumice_pillar_vertical_slab": "Dalle verticale de pilier en pierre ponce moussue", + "block.middle-earth.mossy_pumice_pillar_wall": "Muret de pilier en pierre ponce moussue", + "item.middle-earth.mossy_pumice_pillar_wall": "Muret de pilier en pierre ponce moussue", + "block.middle-earth.cracked_pumice_pillar_vertical_slab": "Dalle verticale de pilier en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_pillar_vertical_slab": "Dalle verticale de pilier en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_pillar_wall": "Muret de pilier en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_pillar_wall": "Muret de pilier en pierre ponce craquelée", + "block.middle-earth.smooth_pumice": "Pierre ponce lisse", + "item.middle-earth.smooth_pumice": "Pierre ponce lisse", + "block.middle-earth.smooth_pumice_slab": "Dalle en pierre ponce lisse", + "item.middle-earth.smooth_pumice_slab": "Dalle en pierre ponce lisse", + "block.middle-earth.smooth_pumice_stairs": "Escalier en pierre ponce lisse", + "item.middle-earth.smooth_pumice_stairs": "Escalier en pierre ponce lisse", + "block.middle-earth.smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse", + "item.middle-earth.smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse", + "block.middle-earth.smooth_pumice_wall": "Muret en pierre ponce lisse", + "item.middle-earth.smooth_pumice_wall": "Muret en pierre ponce lisse", + "block.middle-earth.mossy_smooth_pumice": "Pierre ponce lisse moussue", + "item.middle-earth.mossy_smooth_pumice": "Pierre ponce lisse moussue", + "block.middle-earth.mossy_smooth_pumice_slab": "Dalle en pierre ponce lisse moussue", + "item.middle-earth.mossy_smooth_pumice_slab": "Dalle en pierre ponce lisse moussue", + "block.middle-earth.mossy_smooth_pumice_stairs": "Escalier en pierre ponce lisse moussue", + "item.middle-earth.mossy_smooth_pumice_stairs": "Escalier en pierre ponce lisse moussue", + "block.middle-earth.mossy_smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse moussue", + "item.middle-earth.mossy_smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse moussue", + "block.middle-earth.mossy_smooth_pumice_wall": "Muret en pierre ponce lisse moussue", + "item.middle-earth.mossy_smooth_pumice_wall": "Muret en pierre ponce lisse moussue", + "block.middle-earth.cracked_smooth_pumice": "Pierre ponce lisse craquelée", + "item.middle-earth.cracked_smooth_pumice": "Pierre ponce lisse craquelée", + "block.middle-earth.cracked_smooth_pumice_slab": "Dalle en pierre ponce lisse craquelée", + "item.middle-earth.cracked_smooth_pumice_slab": "Dalle en pierre ponce lisse craquelée", + "block.middle-earth.cracked_smooth_pumice_stairs": "Escalier en pierre ponce lisse craquelée", + "item.middle-earth.cracked_smooth_pumice_stairs": "Escalier en pierre ponce lisse craquelée", + "block.middle-earth.cracked_smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse craquelée", + "item.middle-earth.cracked_smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse craquelée", + "block.middle-earth.cracked_smooth_pumice_wall": "Muret en pierre ponce lisse craquelée", + "item.middle-earth.cracked_smooth_pumice_wall": "Muret en pierre ponce lisse craquelée", + "block.middle-earth.chiseled_smooth_pumice": "Pierre ponce lisse sculptée", + "item.middle-earth.chiseled_smooth_pumice": "Pierre ponce lisse sculptée", + "block.middle-earth.chiseled_smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse sculptée", + "item.middle-earth.chiseled_smooth_pumice_vertical_slab": "Dalle verticale en pierre ponce lisse sculptée", + "block.middle-earth.chiseled_smooth_pumice_wall": "Muret en pierre ponce lisse sculptée", + "item.middle-earth.chiseled_smooth_pumice_wall": "Muret en pierre ponce lisse sculptée", + "block.middle-earth.old_pumice": "Vieille pierre ponce", + "item.middle-earth.old_pumice": "Vieille pierre ponce", + "block.middle-earth.old_pumice_slab": "Dalle de vieux pierre ponce", + "item.middle-earth.old_pumice_slab": "Dalle de vieux pierre ponce", + "block.middle-earth.old_pumice_stairs": "Escalier en vieux pierre ponce", + "item.middle-earth.old_pumice_stairs": "Escalier en vieux pierre ponce", + "block.middle-earth.old_pumice_vertical_slab": "Dalle verticale de vieux pierre ponce", + "item.middle-earth.old_pumice_vertical_slab": "Dalle verticale de vieux pierre ponce", + "block.middle-earth.old_pumice_wall": "Muret en vieux pierre ponce", + "item.middle-earth.old_pumice_wall": "Muret en vieux pierre ponce", + "block.middle-earth.chiseled_pumice_bricks_vertical_slab": "Dalle verticale de briques en pierre ponce sculptées", + "item.middle-earth.chiseled_pumice_bricks_vertical_slab": "Dalle verticale de briques en pierre ponce sculptées", + "block.middle-earth.chiseled_pumice_bricks_wall": "Muret de briques en pierre ponce sculptées", + "item.middle-earth.chiseled_pumice_bricks_wall": "Muret de briques en pierre ponce sculptées", + "block.middle-earth.mossy_pumice_brick_slab": "Brique en pierre ponce moussue", + "item.middle-earth.mossy_pumice_brick_slab": "Brique en pierre ponce moussue", + "block.middle-earth.mossy_pumice_brick_stairs": "Escalier de brique en pierre ponce moussue", + "item.middle-earth.mossy_pumice_brick_stairs": "Escalier de brique en pierre ponce moussue", + "block.middle-earth.mossy_pumice_brick_vertical_slab": "Dalle verticale de brique en pierre ponce moussue", + "item.middle-earth.mossy_pumice_brick_vertical_slab": "Dalle verticale de brique en pierre ponce moussue", + "block.middle-earth.mossy_pumice_brick_wall": "Muret de brique en pierre ponce moussue", + "item.middle-earth.mossy_pumice_brick_wall": "Muret de brique en pierre ponce moussue", + "block.middle-earth.cracked_pumice_brick_slab": "Brique en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_brick_slab": "Brique en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_brick_stairs": "Escalier de brique en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_brick_stairs": "Escalier de brique en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_brick_vertical_slab": "Dalle verticale de brique en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_brick_vertical_slab": "Dalle verticale de brique en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_brick_wall": "Muret de brique en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_brick_wall": "Muret de brique en pierre ponce craquelée", + "block.middle-earth.chiseled_pumice_tiles": "Pierre ponce carrelée sculptée", + "item.middle-earth.chiseled_pumice_tiles": "Pierre ponce carrelée sculptée", + "block.middle-earth.chiseled_pumice_tiles_vertical_slab": "Dalle verticale de pierre ponce carrelée sculptée", + "item.middle-earth.chiseled_pumice_tiles_vertical_slab": "Dalle verticale de pierre ponce carrelée sculptée", + "block.middle-earth.chiseled_pumice_tiles_wall": "Muret de pierre ponce carrelée sculptée", + "item.middle-earth.chiseled_pumice_tiles_wall": "Muret de pierre ponce carrelée sculptée", + "block.middle-earth.mossy_pumice_tile_slab": "Tuile en pierre ponce moussue", + "item.middle-earth.mossy_pumice_tile_slab": "Tuile en pierre ponce moussue", + "block.middle-earth.mossy_pumice_tile_stairs": "Escalier de tuile en pierre ponce moussue", + "item.middle-earth.mossy_pumice_tile_stairs": "Escalier de tuile en pierre ponce moussue", + "block.middle-earth.mossy_pumice_tile_vertical_slab": "Dalle verticale de tuile en pierre ponce moussue", + "item.middle-earth.mossy_pumice_tile_vertical_slab": "Dalle verticale de tuile en pierre ponce moussue", + "block.middle-earth.mossy_pumice_tile_wall": "Muret de tuile en pierre ponce moussue", + "item.middle-earth.mossy_pumice_tile_wall": "Muret de tuile en pierre ponce moussue", + "block.middle-earth.cracked_pumice_tile_slab": "Tuile en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_tile_slab": "Tuile en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_tile_stairs": "Escalier de tuile en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_tile_stairs": "Escalier de tuile en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_tile_vertical_slab": "Dalle verticale de tuile en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_tile_vertical_slab": "Dalle verticale de tuile en pierre ponce craquelée", + "block.middle-earth.cracked_pumice_tile_wall": "Muret de tuile en pierre ponce craquelée", + "item.middle-earth.cracked_pumice_tile_wall": "Muret de tuile en pierre ponce craquelée", + "block.middle-earth.chiseled_polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie sculptée", + "item.middle-earth.chiseled_polished_pumice_vertical_slab": "Dalle verticale en pierre ponce polie sculptée", + "block.middle-earth.chiseled_polished_pumice_wall": "Muret en pierre ponce polie sculptée", + "item.middle-earth.chiseled_polished_pumice_wall": "Muret en pierre ponce polie sculptée", + "block.middle-earth.chiseled_pumice": "Pierre ponce sculptée", + "item.middle-earth.chiseled_pumice": "Pierre ponce sculptée", + "block.middle-earth.chiseled_pumice_vertical_slab": "Dalle verticale en pierre ponce sculptée", + "item.middle-earth.chiseled_pumice_vertical_slab": "Dalle verticale en pierre ponce sculptée", + "block.middle-earth.chiseled_pumice_wall": "Muret en pierre ponce sculptée", + "item.middle-earth.chiseled_pumice_wall": "Muret en pierre ponce sculptée", + "block.middle-earth.blue_roof_tile_slab": "Dalle de tuile de toit bleue", + "item.middle-earth.blue_roof_tile_slab": "Dalle de tuile de toit bleue", + "block.middle-earth.blue_roof_tile_stairs": "Escalier de tuile de toit bleue", + "item.middle-earth.blue_roof_tile_stairs": "Escalier de tuile de toit bleue", + "block.middle-earth.blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleue", + "item.middle-earth.blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleue", + "block.middle-earth.blue_roof_tile_wall": "Muret de tuile de toit bleue", + "item.middle-earth.blue_roof_tile_wall": "Muret de tuile de toit bleue", + "block.middle-earth.bright_blue_roof_tile_slab": "Dalle de tuile de toit bleu vif", + "item.middle-earth.bright_blue_roof_tile_slab": "Dalle de tuile de toit bleu vif", + "block.middle-earth.bright_blue_roof_tile_stairs": "Escalier de tuile de toit bleu vif", + "item.middle-earth.bright_blue_roof_tile_stairs": "Escalier de tuile de toit bleu vif", + "block.middle-earth.bright_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu vif", + "item.middle-earth.bright_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu vif", + "block.middle-earth.bright_blue_roof_tile_wall": "Muret de tuile de toit bleu vif", + "item.middle-earth.bright_blue_roof_tile_wall": "Muret de tuile de toit bleu vif", + "block.middle-earth.dark_blue_roof_tile_slab": "Dalle de tuile de toit bleu foncé", + "item.middle-earth.dark_blue_roof_tile_slab": "Dalle de tuile de toit bleu foncé", + "block.middle-earth.dark_blue_roof_tile_stairs": "Escalier de tuile de toit bleu foncé", + "item.middle-earth.dark_blue_roof_tile_stairs": "Escalier de tuile de toit bleu foncé", + "block.middle-earth.dark_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu foncé", + "item.middle-earth.dark_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu foncé", + "block.middle-earth.dark_blue_roof_tile_wall": "Muret de tuile de toit bleu foncé", + "item.middle-earth.dark_blue_roof_tile_wall": "Muret de tuile de toit bleu foncé", + "block.middle-earth.light_blue_roof_tile_slab": "Dalle de tuile de toit bleu clair", + "item.middle-earth.light_blue_roof_tile_slab": "Dalle de tuile de toit bleu clair", + "block.middle-earth.light_blue_roof_tile_stairs": "Escalier de tuile de toit bleu clair", + "item.middle-earth.light_blue_roof_tile_stairs": "Escalier de tuile de toit bleu clair", + "block.middle-earth.light_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu clair", + "item.middle-earth.light_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu clair", + "block.middle-earth.light_blue_roof_tile_wall": "Muret de tuile de toit bleu clair", + "item.middle-earth.light_blue_roof_tile_wall": "Muret de tuile de toit bleu clair", + "block.middle-earth.off_blue_roof_tile_slab": "Dalle de tuile de toit bleu délavé", + "item.middle-earth.off_blue_roof_tile_slab": "Dalle de tuile de toit bleu délavé", + "block.middle-earth.off_blue_roof_tile_stairs": "Escalier de tuile de toit bleu délavé", + "item.middle-earth.off_blue_roof_tile_stairs": "Escalier de tuile de toit bleu délavé", + "block.middle-earth.off_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu délavé", + "item.middle-earth.off_blue_roof_tile_vertical_slab": "Dalle verticale de tuile de toit bleu délavé", + "block.middle-earth.off_blue_roof_tile_wall": "Muret de tuile de toit bleu délavé", + "item.middle-earth.off_blue_roof_tile_wall": "Muret de tuile de toit bleu délavé", + "block.middle-earth.brown_roof_tile_slab": "Dalle de tuile de toit marron", + "item.middle-earth.brown_roof_tile_slab": "Dalle de tuile de toit marron", + "block.middle-earth.brown_roof_tile_stairs": "Escalier de tuile de toit marron", + "item.middle-earth.brown_roof_tile_stairs": "Escalier de tuile de toit marron", + "block.middle-earth.brown_roof_tile_vertical_slab": "Dalle verticale de tuile de toit marron", + "item.middle-earth.brown_roof_tile_vertical_slab": "Dalle verticale de tuile de toit marron", + "block.middle-earth.brown_roof_tile_wall": "Muret de tuile de toit marron", + "item.middle-earth.brown_roof_tile_wall": "Muret de tuile de toit marron", + "block.middle-earth.dark_brown_roof_tile_slab": "Dalle de tuile de toit marron foncé", + "item.middle-earth.dark_brown_roof_tile_slab": "Dalle de tuile de toit marron foncé", + "block.middle-earth.dark_brown_roof_tile_stairs": "Escalier de tuile de toit marron foncé", + "item.middle-earth.dark_brown_roof_tile_stairs": "Escalier de tuile de toit marron foncé", + "block.middle-earth.dark_brown_roof_tile_vertical_slab": "Dalle verticale de tuile de toit marron foncé", + "item.middle-earth.dark_brown_roof_tile_vertical_slab": "Dalle verticale de tuile de toit marron foncé", + "block.middle-earth.dark_brown_roof_tile_wall": "Muret de tuile de toit marron foncé", + "item.middle-earth.dark_brown_roof_tile_wall": "Muret de tuile de toit marron foncé", + "block.middle-earth.off_brown_roof_tile_slab": "Dalle de tuile de toit marron délavé", + "item.middle-earth.off_brown_roof_tile_slab": "Dalle de tuile de toit marron délavé", + "block.middle-earth.off_brown_roof_tile_stairs": "Escalier de tuile de toit marron délavé", + "item.middle-earth.off_brown_roof_tile_stairs": "Escalier de tuile de toit marron délavé", + "block.middle-earth.off_brown_roof_tile_vertical_slab": "Dalle verticale de tuile de toit marron délavé", + "item.middle-earth.off_brown_roof_tile_vertical_slab": "Dalle verticale de tuile de toit marron délavé", + "block.middle-earth.off_brown_roof_tile_wall": "Muret de tuile de toit marron délavé", + "item.middle-earth.off_brown_roof_tile_wall": "Muret de tuile de toit marron délavé", + "block.middle-earth.cyan_roof_tile_slab": "Dalle de tuile de toit cyan", + "item.middle-earth.cyan_roof_tile_slab": "Dalle de tuile de toit cyan", + "block.middle-earth.cyan_roof_tile_stairs": "Escalier de tuile de toit cyan", + "item.middle-earth.cyan_roof_tile_stairs": "Escalier de tuile de toit cyan", + "block.middle-earth.cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan", + "item.middle-earth.cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan", + "block.middle-earth.cyan_roof_tile_wall": "Muret de tuile de toit cyan", + "item.middle-earth.cyan_roof_tile_wall": "Muret de tuile de toit cyan", + "block.middle-earth.bright_cyan_roof_tile_slab": "Dalle de tuile de toit cyan vif", + "item.middle-earth.bright_cyan_roof_tile_slab": "Dalle de tuile de toit cyan vif", + "block.middle-earth.bright_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan vif", + "item.middle-earth.bright_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan vif", + "block.middle-earth.bright_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan vif", + "item.middle-earth.bright_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan vif", + "block.middle-earth.bright_cyan_roof_tile_wall": "Muret de tuile de toit cyan vif", + "item.middle-earth.bright_cyan_roof_tile_wall": "Muret de tuile de toit cyan vif", + "block.middle-earth.dark_cyan_roof_tile_slab": "Dalle de tuile de toit cyan foncé", + "item.middle-earth.dark_cyan_roof_tile_slab": "Dalle de tuile de toit cyan foncé", + "block.middle-earth.dark_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan foncé", + "item.middle-earth.dark_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan foncé", + "block.middle-earth.dark_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan foncé", + "item.middle-earth.dark_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan foncé", + "block.middle-earth.dark_cyan_roof_tile_wall": "Muret de tuile de toit cyan foncé", + "item.middle-earth.dark_cyan_roof_tile_wall": "Muret de tuile de toit cyan foncé", + "block.middle-earth.light_cyan_roof_tile_slab": "Dalle de tuile de toit cyan clair", + "item.middle-earth.light_cyan_roof_tile_slab": "Dalle de tuile de toit cyan clair", + "block.middle-earth.light_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan clair", + "item.middle-earth.light_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan clair", + "block.middle-earth.light_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan clair", + "item.middle-earth.light_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan clair", + "block.middle-earth.light_cyan_roof_tile_wall": "Muret de tuile de toit cyan clair", + "item.middle-earth.light_cyan_roof_tile_wall": "Muret de tuile de toit cyan clair", + "block.middle-earth.off_cyan_roof_tile_slab": "Dalle de tuile de toit cyan délavé", + "item.middle-earth.off_cyan_roof_tile_slab": "Dalle de tuile de toit cyan délavé", + "block.middle-earth.off_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan délavé", + "item.middle-earth.off_cyan_roof_tile_stairs": "Escalier de tuile de toit cyan délavé", + "block.middle-earth.off_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan délavé", + "item.middle-earth.off_cyan_roof_tile_vertical_slab": "Dalle verticale de tuile de toit cyan délavé", + "block.middle-earth.off_cyan_roof_tile_wall": "Muret de tuile de toit cyan délavé", + "item.middle-earth.off_cyan_roof_tile_wall": "Muret de tuile de toit cyan délavé", + "block.middle-earth.gray_roof_tile_slab": "Dalle de tuile de toit grise", + "item.middle-earth.gray_roof_tile_slab": "Dalle de tuile de toit grise", + "block.middle-earth.gray_roof_tile_stairs": "Escalier de tuile de toit grise", + "item.middle-earth.gray_roof_tile_stairs": "Escalier de tuile de toit grise", + "block.middle-earth.gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit grise", + "item.middle-earth.gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit grise", + "block.middle-earth.gray_roof_tile_wall": "Muret de tuile de toit grise", + "item.middle-earth.gray_roof_tile_wall": "Muret de tuile de toit grise", + "block.middle-earth.dark_gray_roof_tile_slab": "Dalle de tuile de toit gris foncé", + "item.middle-earth.dark_gray_roof_tile_slab": "Dalle de tuile de toit gris foncé", + "block.middle-earth.dark_gray_roof_tile_stairs": "Escalier de tuile de toit gris foncé", + "item.middle-earth.dark_gray_roof_tile_stairs": "Escalier de tuile de toit gris foncé", + "block.middle-earth.dark_gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit gris foncé", + "item.middle-earth.dark_gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit gris foncé", + "block.middle-earth.dark_gray_roof_tile_wall": "Muret de tuile de toit gris foncé", + "item.middle-earth.dark_gray_roof_tile_wall": "Muret de tuile de toit gris foncé", + "block.middle-earth.light_gray_roof_tile_slab": "Dalle de tuile de toit gris clair", + "item.middle-earth.light_gray_roof_tile_slab": "Dalle de tuile de toit gris clair", + "block.middle-earth.light_gray_roof_tile_stairs": "Escalier de tuile de toit gris clair", + "item.middle-earth.light_gray_roof_tile_stairs": "Escalier de tuile de toit gris clair", + "block.middle-earth.light_gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit gris clair", + "item.middle-earth.light_gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit gris clair", + "block.middle-earth.light_gray_roof_tile_wall": "Muret de tuile de toit gris clair", + "item.middle-earth.light_gray_roof_tile_wall": "Muret de tuile de toit gris clair", + "block.middle-earth.off_gray_roof_tile_slab": "Dalle de tuile de toit gris délavé", + "item.middle-earth.off_gray_roof_tile_slab": "Dalle de tuile de toit gris délavé", + "block.middle-earth.off_gray_roof_tile_stairs": "Escalier de tuile de toit gris délavé", + "item.middle-earth.off_gray_roof_tile_stairs": "Escalier de tuile de toit gris délavé", + "block.middle-earth.off_gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit gris délavé", + "item.middle-earth.off_gray_roof_tile_vertical_slab": "Dalle verticale de tuile de toit gris délavé", + "block.middle-earth.off_gray_roof_tile_wall": "Muret de tuile de toit gris délavé", + "item.middle-earth.off_gray_roof_tile_wall": "Muret de tuile de toit gris délavé", + "block.middle-earth.green_roof_tile_slab": "Dalle de tuile de toit verte", + "item.middle-earth.green_roof_tile_slab": "Dalle de tuile de toit verte", + "block.middle-earth.green_roof_tile_stairs": "Escalier de tuile de toit verte", + "item.middle-earth.green_roof_tile_stairs": "Escalier de tuile de toit verte", + "block.middle-earth.green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit verte", + "item.middle-earth.green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit verte", + "block.middle-earth.green_roof_tile_wall": "Muret de tuile de toit verte", + "item.middle-earth.green_roof_tile_wall": "Muret de tuile de toit verte", + "block.middle-earth.bright_green_roof_tile_slab": "Dalle de tuile de toit vert vif", + "item.middle-earth.bright_green_roof_tile_slab": "Dalle de tuile de toit vert vif", + "block.middle-earth.bright_green_roof_tile_stairs": "Escalier de tuile de toit vert vif", + "item.middle-earth.bright_green_roof_tile_stairs": "Escalier de tuile de toit vert vif", + "block.middle-earth.bright_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert vif", + "item.middle-earth.bright_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert vif", + "block.middle-earth.bright_green_roof_tile_wall": "Muret de tuile de toit vert vif", + "item.middle-earth.bright_green_roof_tile_wall": "Muret de tuile de toit vert vif", + "block.middle-earth.dark_green_roof_tile_slab": "Dalle de tuile de toit vert foncé", + "item.middle-earth.dark_green_roof_tile_slab": "Dalle de tuile de toit vert foncé", + "block.middle-earth.dark_green_roof_tile_stairs": "Escalier de tuile de toit vert foncé", + "item.middle-earth.dark_green_roof_tile_stairs": "Escalier de tuile de toit vert foncé", + "block.middle-earth.dark_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert foncé", + "item.middle-earth.dark_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert foncé", + "block.middle-earth.dark_green_roof_tile_wall": "Muret de tuile de toit vert foncé", + "item.middle-earth.dark_green_roof_tile_wall": "Muret de tuile de toit vert foncé", + "block.middle-earth.light_green_roof_tile_slab": "Dalle de tuile de toit vert clair", + "item.middle-earth.light_green_roof_tile_slab": "Dalle de tuile de toit vert clair", + "block.middle-earth.light_green_roof_tile_stairs": "Escalier de tuile de toit vert clair", + "item.middle-earth.light_green_roof_tile_stairs": "Escalier de tuile de toit vert clair", + "block.middle-earth.light_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert clair", + "item.middle-earth.light_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert clair", + "block.middle-earth.light_green_roof_tile_wall": "Muret de tuile de toit vert clair", + "item.middle-earth.light_green_roof_tile_wall": "Muret de tuile de toit vert clair", + "block.middle-earth.off_green_roof_tile_slab": "Dalle de tuile de toit vert délavé", + "item.middle-earth.off_green_roof_tile_slab": "Dalle de tuile de toit vert délavé", + "block.middle-earth.off_green_roof_tile_stairs": "Escalier de tuile de toit vert délavé", + "item.middle-earth.off_green_roof_tile_stairs": "Escalier de tuile de toit vert délavé", + "block.middle-earth.off_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert délavé", + "item.middle-earth.off_green_roof_tile_vertical_slab": "Dalle verticale de tuile de toit vert délavé", + "block.middle-earth.off_green_roof_tile_wall": "Muret de tuile de toit vert délavé", + "item.middle-earth.off_green_roof_tile_wall": "Muret de tuile de toit vert délavé", + "block.middle-earth.red_roof_tile_slab": "Dalle de tuile de toit rouge", + "item.middle-earth.red_roof_tile_slab": "Dalle de tuile de toit rouge", + "block.middle-earth.red_roof_tile_stairs": "Escalier de tuile de toit rouge", + "item.middle-earth.red_roof_tile_stairs": "Escalier de tuile de toit rouge", + "block.middle-earth.red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge", + "item.middle-earth.red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge", + "block.middle-earth.red_roof_tile_wall": "Muret de tuile de toit rouge", + "item.middle-earth.red_roof_tile_wall": "Muret de tuile de toit rouge", + "block.middle-earth.bright_red_roof_tile_slab": "Dalle de tuile de toit rouge vif", + "item.middle-earth.bright_red_roof_tile_slab": "Dalle de tuile de toit rouge vif", + "block.middle-earth.bright_red_roof_tile_stairs": "Escalier de tuile de toit rouge vif", + "item.middle-earth.bright_red_roof_tile_stairs": "Escalier de tuile de toit rouge vif", + "block.middle-earth.bright_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge vif", + "item.middle-earth.bright_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge vif", + "block.middle-earth.bright_red_roof_tile_wall": "Muret de tuile de toit rouge vif", + "item.middle-earth.bright_red_roof_tile_wall": "Muret de tuile de toit rouge vif", + "block.middle-earth.dark_red_roof_tile_slab": "Dalle de tuile de toit rouge foncé", + "item.middle-earth.dark_red_roof_tile_slab": "Dalle de tuile de toit rouge foncé", + "block.middle-earth.dark_red_roof_tile_stairs": "Escalier de tuile de toit rouge foncé", + "item.middle-earth.dark_red_roof_tile_stairs": "Escalier de tuile de toit rouge foncé", + "block.middle-earth.dark_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge foncé", + "item.middle-earth.dark_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge foncé", + "block.middle-earth.dark_red_roof_tile_wall": "Muret de tuile de toit rouge foncé", + "item.middle-earth.dark_red_roof_tile_wall": "Muret de tuile de toit rouge foncé", + "block.middle-earth.light_red_roof_tile_slab": "Dalle de tuile de toit rouge clair", + "item.middle-earth.light_red_roof_tile_slab": "Dalle de tuile de toit rouge clair", + "block.middle-earth.light_red_roof_tile_stairs": "Escalier de tuile de toit rouge clair", + "item.middle-earth.light_red_roof_tile_stairs": "Escalier de tuile de toit rouge clair", + "block.middle-earth.light_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge clair", + "item.middle-earth.light_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge clair", + "block.middle-earth.light_red_roof_tile_wall": "Muret de tuile de toit rouge clair", + "item.middle-earth.light_red_roof_tile_wall": "Muret de tuile de toit rouge clair", + "block.middle-earth.off_red_roof_tile_slab": "Dalle de tuile de toit rouge délavé", + "item.middle-earth.off_red_roof_tile_slab": "Dalle de tuile de toit rouge délavé", + "block.middle-earth.off_red_roof_tile_stairs": "Escalier de tuile de toit rouge délavé", + "item.middle-earth.off_red_roof_tile_stairs": "Escalier de tuile de toit rouge délavé", + "block.middle-earth.off_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge délavé", + "item.middle-earth.off_red_roof_tile_vertical_slab": "Dalle verticale de tuile de toit rouge délavé", + "block.middle-earth.off_red_roof_tile_wall": "Muret de tuile de toit rouge délavé", + "item.middle-earth.off_red_roof_tile_wall": "Muret de tuile de toit rouge délavé", + "block.middle-earth.yellow_roof_tile_slab": "Dalle de tuile de toit jaune", + "item.middle-earth.yellow_roof_tile_slab": "Dalle de tuile de toit jaune", + "block.middle-earth.yellow_roof_tile_stairs": "Escalier de tuile de toit jaune", + "item.middle-earth.yellow_roof_tile_stairs": "Escalier de tuile de toit jaune", + "block.middle-earth.yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune", + "item.middle-earth.yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune", + "block.middle-earth.yellow_roof_tile_wall": "Muret de tuile de toit jaune", + "item.middle-earth.yellow_roof_tile_wall": "Muret de tuile de toit jaune", + "block.middle-earth.bright_yellow_roof_tile_slab": "Dalle de tuile de toit jaune vif", + "item.middle-earth.bright_yellow_roof_tile_slab": "Dalle de tuile de toit jaune vif", + "block.middle-earth.bright_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune vif", + "item.middle-earth.bright_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune vif", + "block.middle-earth.bright_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune vif", + "item.middle-earth.bright_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune vif", + "block.middle-earth.bright_yellow_roof_tile_wall": "Muret de tuile de toit jaune vif", + "item.middle-earth.bright_yellow_roof_tile_wall": "Muret de tuile de toit jaune vif", + "block.middle-earth.dark_yellow_roof_tile_slab": "Dalle de tuile de toit jaune foncé", + "item.middle-earth.dark_yellow_roof_tile_slab": "Dalle de tuile de toit jaune foncé", + "block.middle-earth.dark_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune foncé", + "item.middle-earth.dark_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune foncé", + "block.middle-earth.dark_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune foncé", + "item.middle-earth.dark_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune foncé", + "block.middle-earth.dark_yellow_roof_tile_wall": "Muret de tuile de toit jaune foncé", + "item.middle-earth.dark_yellow_roof_tile_wall": "Muret de tuile de toit jaune foncé", + "block.middle-earth.light_yellow_roof_tile_slab": "Dalle de tuile de toit jaune clair", + "item.middle-earth.light_yellow_roof_tile_slab": "Dalle de tuile de toit jaune clair", + "block.middle-earth.light_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune clair", + "item.middle-earth.light_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune clair", + "block.middle-earth.light_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune clair", + "item.middle-earth.light_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune clair", + "block.middle-earth.light_yellow_roof_tile_wall": "Muret de tuile de toit jaune clair", + "item.middle-earth.light_yellow_roof_tile_wall": "Muret de tuile de toit jaune clair", + "block.middle-earth.off_yellow_roof_tile_slab": "Dalle de tuile de toit jaune délavé", + "item.middle-earth.off_yellow_roof_tile_slab": "Dalle de tuile de toit jaune délavé", + "block.middle-earth.off_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune délavé", + "item.middle-earth.off_yellow_roof_tile_stairs": "Escalier de tuile de toit jaune délavé", + "block.middle-earth.off_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune délavé", + "item.middle-earth.off_yellow_roof_tile_vertical_slab": "Dalle verticale de tuile de toit jaune délavé", + "block.middle-earth.off_yellow_roof_tile_wall": "Muret de tuile de toit jaune délavé", + "item.middle-earth.off_yellow_roof_tile_wall": "Muret de tuile de toit jaune délavé", + "block.middle-earth.acacia_roofing": "Toiture en acacia", + "item.middle-earth.acacia_roofing": "Toiture en acacia", + "block.middle-earth.acacia_roofing_slab": "Dalle de toiture en acacia", + "item.middle-earth.acacia_roofing_slab": "Dalle de toiture en acacia", + "block.middle-earth.acacia_roofing_stairs": "Escalier de toiture en acacia", + "item.middle-earth.acacia_roofing_stairs": "Escalier de toiture en acacia", + "block.middle-earth.acacia_roofing_vertical_slab": "Dalle verticale de toiture en acacia", + "item.middle-earth.acacia_roofing_vertical_slab": "Dalle verticale de toiture en acacia", + "block.middle-earth.acacia_roofing_wall": "Muret de toiture en acacia", + "item.middle-earth.acacia_roofing_wall": "Muret de toiture en acacia", + "block.middle-earth.bamboo_roofing": "Toiture en bambou", + "item.middle-earth.bamboo_roofing": "Toiture en bambou", + "block.middle-earth.bamboo_roofing_slab": "Dalle de toiture en bambou", + "item.middle-earth.bamboo_roofing_slab": "Dalle de toiture en bambou", + "block.middle-earth.bamboo_roofing_stairs": "Escalier de toiture en bambou", + "item.middle-earth.bamboo_roofing_stairs": "Escalier de toiture en bambou", + "block.middle-earth.bamboo_roofing_vertical_slab": "Dalle verticale de toiture en bambou", + "item.middle-earth.bamboo_roofing_vertical_slab": "Dalle verticale de toiture en bambou", + "block.middle-earth.bamboo_roofing_wall": "Muret de toiture en bambou", + "item.middle-earth.bamboo_roofing_wall": "Muret de toiture en bambou", + "block.middle-earth.birch_roofing": "Toiture en bouleau", + "item.middle-earth.birch_roofing": "Toiture en bouleau", + "block.middle-earth.birch_roofing_slab": "Dalle de toiture en bouleau", + "item.middle-earth.birch_roofing_slab": "Dalle de toiture en bouleau", + "block.middle-earth.birch_roofing_stairs": "Escalier de toiture en bouleau", + "item.middle-earth.birch_roofing_stairs": "Escalier de toiture en bouleau", + "block.middle-earth.birch_roofing_vertical_slab": "Dalle verticale de toiture en bouleau", + "item.middle-earth.birch_roofing_vertical_slab": "Dalle verticale de toiture en bouleau", + "block.middle-earth.birch_roofing_wall": "Muret de toiture en bouleau", + "item.middle-earth.birch_roofing_wall": "Muret de toiture en bouleau", + "block.middle-earth.cherry_roofing": "Toiture en cerisier", + "item.middle-earth.cherry_roofing": "Toiture en cerisier", + "block.middle-earth.cherry_roofing_slab": "Dalle de toiture en cerisier", + "item.middle-earth.cherry_roofing_slab": "Dalle de toiture en cerisier", + "block.middle-earth.cherry_roofing_stairs": "Escalier de toiture en cerisier", + "item.middle-earth.cherry_roofing_stairs": "Escalier de toiture en cerisier", + "block.middle-earth.cherry_roofing_vertical_slab": "Dalle verticale de toiture en cerisier", + "item.middle-earth.cherry_roofing_vertical_slab": "Dalle verticale de toiture en cerisier", + "block.middle-earth.cherry_roofing_wall": "Muret de toiture en cerisier", + "item.middle-earth.cherry_roofing_wall": "Muret de toiture en cerisier", + "block.middle-earth.dark_oak_roofing": "Toiture en chêne noir", + "item.middle-earth.dark_oak_roofing": "Toiture en chêne noir", + "block.middle-earth.dark_oak_roofing_slab": "Dalle de toiture en chêne noir", + "item.middle-earth.dark_oak_roofing_slab": "Dalle de toiture en chêne noir", + "block.middle-earth.dark_oak_roofing_stairs": "Escalier de toiture en chêne noir", + "item.middle-earth.dark_oak_roofing_stairs": "Escalier de toiture en chêne noir", + "block.middle-earth.dark_oak_roofing_vertical_slab": "Dalle verticale de toiture en chêne noir", + "item.middle-earth.dark_oak_roofing_vertical_slab": "Dalle verticale de toiture en chêne noir", + "block.middle-earth.dark_oak_roofing_wall": "Muret de toiture en chêne noir", + "item.middle-earth.dark_oak_roofing_wall": "Muret de toiture en chêne noir", + "block.middle-earth.jungle_roofing": "Toiture en acajou", + "item.middle-earth.jungle_roofing": "Toiture en acajou", + "block.middle-earth.jungle_roofing_slab": "Dalle de toiture en acajou", + "item.middle-earth.jungle_roofing_slab": "Dalle de toiture en acajou", + "block.middle-earth.jungle_roofing_stairs": "Escalier de toiture en acajou", + "item.middle-earth.jungle_roofing_stairs": "Escalier de toiture en acajou", + "block.middle-earth.jungle_roofing_vertical_slab": "Dalle verticale de toiture en acajou", + "item.middle-earth.jungle_roofing_vertical_slab": "Dalle verticale de toiture en acajou", + "block.middle-earth.jungle_roofing_wall": "Muret de toiture en acajou", + "item.middle-earth.jungle_roofing_wall": "Muret de toiture en acajou", + "block.middle-earth.mangrove_roofing": "Toiture en palétuvier", + "item.middle-earth.mangrove_roofing": "Toiture en palétuvier", + "block.middle-earth.mangrove_roofing_slab": "Dalle de toiture en palétuvier", + "item.middle-earth.mangrove_roofing_slab": "Dalle de toiture en palétuvier", + "block.middle-earth.mangrove_roofing_stairs": "Escalier de toiture en palétuvier", + "item.middle-earth.mangrove_roofing_stairs": "Escalier de toiture en palétuvier", + "block.middle-earth.mangrove_roofing_vertical_slab": "Dalle verticale de toiture en palétuvier", + "item.middle-earth.mangrove_roofing_vertical_slab": "Dalle verticale de toiture en palétuvier", + "block.middle-earth.mangrove_roofing_wall": "Muret de toiture en palétuvier", + "item.middle-earth.mangrove_roofing_wall": "Muret de toiture en palétuvier", + "block.middle-earth.oak_roofing": "Toiture en chêne", + "item.middle-earth.oak_roofing": "Toiture en chêne", + "block.middle-earth.oak_roofing_slab": "Dalle de toiture en chêne", + "item.middle-earth.oak_roofing_slab": "Dalle de toiture en chêne", + "block.middle-earth.oak_roofing_stairs": "Escalier de toiture en chêne", + "item.middle-earth.oak_roofing_stairs": "Escalier de toiture en chêne", + "block.middle-earth.oak_roofing_vertical_slab": "Dalle verticale de toiture en chêne", + "item.middle-earth.oak_roofing_vertical_slab": "Dalle verticale de toiture en chêne", + "block.middle-earth.oak_roofing_wall": "Muret de toiture en chêne", + "item.middle-earth.oak_roofing_wall": "Muret de toiture en chêne", + "block.middle-earth.spruce_roofing": "Toiture en sapin", + "item.middle-earth.spruce_roofing": "Toiture en sapin", + "block.middle-earth.spruce_roofing_slab": "Dalle de toiture en sapin", + "item.middle-earth.spruce_roofing_slab": "Dalle de toiture en sapin", + "block.middle-earth.spruce_roofing_stairs": "Escalier de toiture en sapin", + "item.middle-earth.spruce_roofing_stairs": "Escalier de toiture en sapin", + "block.middle-earth.spruce_roofing_vertical_slab": "Dalle verticale de toiture en sapin", + "item.middle-earth.spruce_roofing_vertical_slab": "Dalle verticale de toiture en sapin", + "block.middle-earth.spruce_roofing_wall": "Muret de toiture en sapin", + "item.middle-earth.spruce_roofing_wall": "Muret de toiture en sapin", + "block.middle-earth.crimson_roofing": "Toiture carmin", + "item.middle-earth.crimson_roofing": "Toiture carmin", + "block.middle-earth.crimson_roofing_slab": "Dalle de toiture carmin", + "item.middle-earth.crimson_roofing_slab": "Dalle de toiture carmin", + "block.middle-earth.crimson_roofing_stairs": "Escalier de toiture carmin", + "item.middle-earth.crimson_roofing_stairs": "Escalier de toiture carmin", + "block.middle-earth.crimson_roofing_vertical_slab": "Dalle verticale de toiture carmin", + "item.middle-earth.crimson_roofing_vertical_slab": "Dalle verticale de toiture carmin", + "block.middle-earth.crimson_roofing_wall": "Muret de toiture carmin", + "item.middle-earth.crimson_roofing_wall": "Muret de toiture carmin", + "block.middle-earth.warped_roofing": "Toiture biscornu", + "item.middle-earth.warped_roofing": "Toiture biscornu", + "block.middle-earth.warped_roofing_slab": "Dalle de toiture biscornu", + "item.middle-earth.warped_roofing_slab": "Dalle de toiture biscornu", + "block.middle-earth.warped_roofing_stairs": "Escalier de toiture biscornu", + "item.middle-earth.warped_roofing_stairs": "Escalier de toiture biscornu", + "block.middle-earth.warped_roofing_vertical_slab": "Dalle verticale de toiture biscornu", + "item.middle-earth.warped_roofing_vertical_slab": "Dalle verticale de toiture biscornu", + "block.middle-earth.warped_roofing_wall": "Muret de toiture biscornu", + "item.middle-earth.warped_roofing_wall": "Muret de toiture biscornu", + "block.middle-earth.tan_clay_brick_slab": "Brique en argile fauve", + "item.middle-earth.tan_clay_brick_slab": "Brique en argile fauve", + "block.middle-earth.tan_clay_brick_stairs": "Escalier de brique en argile fauve", + "item.middle-earth.tan_clay_brick_stairs": "Escalier de brique en argile fauve", + "block.middle-earth.tan_clay_brick_vertical_slab": "Dalle verticale de brique en argile fauve", + "item.middle-earth.tan_clay_brick_vertical_slab": "Dalle verticale de brique en argile fauve", + "block.middle-earth.tan_clay_brick_wall": "Muret de brique en argile fauve", + "item.middle-earth.tan_clay_brick_wall": "Muret de brique en argile fauve", + "block.middle-earth.tan_clay_tile_slab": "Tuile en argile fauve", + "item.middle-earth.tan_clay_tile_slab": "Tuile en argile fauve", + "block.middle-earth.tan_clay_tile_stairs": "Escalier de tuile en argile fauve", + "item.middle-earth.tan_clay_tile_stairs": "Escalier de tuile en argile fauve", + "block.middle-earth.tan_clay_tile_vertical_slab": "Dalle verticale de tuile en argile fauve", + "item.middle-earth.tan_clay_tile_vertical_slab": "Dalle verticale de tuile en argile fauve", + "block.middle-earth.tan_clay_tile_wall": "Muret de tuile en argile fauve", + "item.middle-earth.tan_clay_tile_wall": "Muret de tuile en argile fauve", + "block.middle-earth.mire_brick_slab": "Brique de bourbier", + "item.middle-earth.mire_brick_slab": "Brique de bourbier", + "block.middle-earth.mire_brick_stairs": "Escalier de brique de bourbier", + "item.middle-earth.mire_brick_stairs": "Escalier de brique de bourbier", + "block.middle-earth.mire_brick_vertical_slab": "Dalle verticale de brique de bourbier", + "item.middle-earth.mire_brick_vertical_slab": "Dalle verticale de brique de bourbier", + "block.middle-earth.mire_brick_wall": "Muret de brique de bourbier", + "item.middle-earth.mire_brick_wall": "Muret de brique de bourbier", + "block.middle-earth.old_brick_slab": "Brique ancienne", + "item.middle-earth.old_brick_slab": "Brique ancienne", + "block.middle-earth.old_brick_stairs": "Escalier de brique ancienne", + "item.middle-earth.old_brick_stairs": "Escalier de brique ancienne", + "block.middle-earth.old_brick_vertical_slab": "Dalle verticale de brique ancienne", + "item.middle-earth.old_brick_vertical_slab": "Dalle verticale de brique ancienne", + "block.middle-earth.old_brick_wall": "Muret de brique ancienne", + "item.middle-earth.old_brick_wall": "Muret de brique ancienne", + "block.middle-earth.stone_pillar_vertical_slab": "Dalle verticale de pilier en roche", + "item.middle-earth.stone_pillar_vertical_slab": "Dalle verticale de pilier en roche", + "block.middle-earth.stone_pillar_wall": "Muret de pilier en roche", + "item.middle-earth.stone_pillar_wall": "Muret de pilier en roche", + "block.middle-earth.stone_tile_slab": "Tuile en roche", + "item.middle-earth.stone_tile_slab": "Tuile en roche", + "block.middle-earth.stone_tile_stairs": "Escalier de tuile en roche", + "item.middle-earth.stone_tile_stairs": "Escalier de tuile en roche", + "block.middle-earth.stone_tile_vertical_slab": "Dalle verticale de tuile en roche", + "item.middle-earth.stone_tile_vertical_slab": "Dalle verticale de tuile en roche", + "block.middle-earth.stone_tile_wall": "Muret de tuile en roche", + "item.middle-earth.stone_tile_wall": "Muret de tuile en roche", + "block.middle-earth.stone_wall": "Muret en roche", + "item.middle-earth.stone_wall": "Muret en roche", + "block.middle-earth.stone_carved_window": "Fenêtre sculptée en roche", + "item.middle-earth.stone_carved_window": "Fenêtre sculptée en roche", + "block.middle-earth.stone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en roche", + "item.middle-earth.stone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en roche", + "item.middle-earth.stone_anvil": "Enclume en roche", + "block.middle-earth.stone_lectern": "Lutrin en roche", + "item.middle-earth.stone_lectern": "Lutrin en roche", + "block.middle-earth.mossy_stone_pillar_vertical_slab": "Dalle verticale de pilier en roche moussue", + "item.middle-earth.mossy_stone_pillar_vertical_slab": "Dalle verticale de pilier en roche moussue", + "block.middle-earth.mossy_stone_pillar_wall": "Muret de pilier en roche moussue", + "item.middle-earth.mossy_stone_pillar_wall": "Muret de pilier en roche moussue", + "block.middle-earth.mossy_stone_tile_slab": "Tuile en roche moussue", + "item.middle-earth.mossy_stone_tile_slab": "Tuile en roche moussue", + "block.middle-earth.mossy_stone_tile_stairs": "Escalier de tuile en roche moussue", + "item.middle-earth.mossy_stone_tile_stairs": "Escalier de tuile en roche moussue", + "block.middle-earth.mossy_stone_tile_vertical_slab": "Dalle verticale de tuile en roche moussue", + "item.middle-earth.mossy_stone_tile_vertical_slab": "Dalle verticale de tuile en roche moussue", + "block.middle-earth.mossy_stone_tile_wall": "Muret de tuile en roche moussue", + "item.middle-earth.mossy_stone_tile_wall": "Muret de tuile en roche moussue", + "block.middle-earth.cracked_stone_pillar_vertical_slab": "Dalle verticale de pilier en roche craquelée", + "item.middle-earth.cracked_stone_pillar_vertical_slab": "Dalle verticale de pilier en roche craquelée", + "block.middle-earth.cracked_stone_pillar_wall": "Muret de pilier en roche craquelée", + "item.middle-earth.cracked_stone_pillar_wall": "Muret de pilier en roche craquelée", + "block.middle-earth.cracked_stone_tile_slab": "Tuile en roche craquelée", + "item.middle-earth.cracked_stone_tile_slab": "Tuile en roche craquelée", + "block.middle-earth.cracked_stone_tile_stairs": "Escalier de tuile en roche craquelée", + "item.middle-earth.cracked_stone_tile_stairs": "Escalier de tuile en roche craquelée", + "block.middle-earth.cracked_stone_tile_vertical_slab": "Dalle verticale de tuile en roche craquelée", + "item.middle-earth.cracked_stone_tile_vertical_slab": "Dalle verticale de tuile en roche craquelée", + "block.middle-earth.cracked_stone_tile_wall": "Muret de tuile en roche craquelée", + "item.middle-earth.cracked_stone_tile_wall": "Muret de tuile en roche craquelée", + "block.middle-earth.cracked_stone_brick_slab": "Brique en roche craquelée", + "item.middle-earth.cracked_stone_brick_slab": "Brique en roche craquelée", + "block.middle-earth.cracked_stone_brick_stairs": "Escalier de brique en roche craquelée", + "item.middle-earth.cracked_stone_brick_stairs": "Escalier de brique en roche craquelée", + "block.middle-earth.cracked_stone_brick_vertical_slab": "Dalle verticale de brique en roche craquelée", + "item.middle-earth.cracked_stone_brick_vertical_slab": "Dalle verticale de brique en roche craquelée", + "block.middle-earth.cracked_stone_brick_wall": "Muret de brique en roche craquelée", + "item.middle-earth.cracked_stone_brick_wall": "Muret de brique en roche craquelée", + "block.middle-earth.chiseled_stone_bricks_vertical_slab": "Dalle verticale de briques en roche sculptées", + "item.middle-earth.chiseled_stone_bricks_vertical_slab": "Dalle verticale de briques en roche sculptées", + "block.middle-earth.chiseled_stone_bricks_wall": "Muret de briques en roche sculptées", + "item.middle-earth.chiseled_stone_bricks_wall": "Muret de briques en roche sculptées", + "block.middle-earth.chiseled_stone_tiles_vertical_slab": "Dalle verticale de roche carrelée sculptée", + "item.middle-earth.chiseled_stone_tiles_vertical_slab": "Dalle verticale de roche carrelée sculptée", + "block.middle-earth.chiseled_stone_tiles_wall": "Muret de roche carrelée sculptée", + "item.middle-earth.chiseled_stone_tiles_wall": "Muret de roche carrelée sculptée", + "block.middle-earth.chiseled_stone_vertical_slab": "Dalle verticale en roche sculptée", + "item.middle-earth.chiseled_stone_vertical_slab": "Dalle verticale en roche sculptée", + "block.middle-earth.chiseled_stone_wall": "Muret en roche sculptée", + "item.middle-earth.chiseled_stone_wall": "Muret en roche sculptée", + "block.middle-earth.chiseled_polished_stone_vertical_slab": "Dalle verticale en roche polie sculptée", + "item.middle-earth.chiseled_polished_stone_vertical_slab": "Dalle verticale en roche polie sculptée", + "block.middle-earth.chiseled_polished_stone_wall": "Muret en roche polie sculptée", + "item.middle-earth.chiseled_polished_stone_wall": "Muret en roche polie sculptée", + "block.middle-earth.chiseled_smooth_stone_vertical_slab": "Dalle verticale en roche lisse sculptée", + "item.middle-earth.chiseled_smooth_stone_vertical_slab": "Dalle verticale en roche lisse sculptée", + "block.middle-earth.chiseled_smooth_stone_wall": "Muret en roche lisse sculptée", + "item.middle-earth.chiseled_smooth_stone_wall": "Muret en roche lisse sculptée", + "block.middle-earth.smooth_stone_stairs": "Escalier en roche lisse", + "item.middle-earth.smooth_stone_stairs": "Escalier en roche lisse", + "block.middle-earth.smooth_stone_wall": "Muret en roche lisse", + "item.middle-earth.smooth_stone_wall": "Muret en roche lisse", + "block.middle-earth.polished_andesite_wall": "Muret en andésite polie", + "item.middle-earth.polished_andesite_wall": "Muret en andésite polie", + "block.middle-earth.polished_diorite_wall": "Muret en diorite polie", + "item.middle-earth.polished_diorite_wall": "Muret en diorite polie", + "block.middle-earth.polished_granite_wall": "Muret en granite poli", + "item.middle-earth.polished_granite_wall": "Muret en granite poli", + "block.middle-earth.deepslate_slab": "Dalle en ardoise des abîmes", + "item.middle-earth.deepslate_slab": "Dalle en ardoise des abîmes", + "block.middle-earth.deepslate_stairs": "Escalier en ardoise des abîmes", + "item.middle-earth.deepslate_stairs": "Escalier en ardoise des abîmes", + "block.middle-earth.deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes", + "item.middle-earth.deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes", + "block.middle-earth.deepslate_wall": "Muret en ardoise des abîmes", + "item.middle-earth.deepslate_wall": "Muret en ardoise des abîmes", + "item.middle-earth.deepslate_statue": "Statue en ardoise des abîmes", + "block.middle-earth.deepslate_carved_window": "Fenêtre sculptée en ardoise des abîmes", + "item.middle-earth.deepslate_carved_window": "Fenêtre sculptée en ardoise des abîmes", + "block.middle-earth.deepslate_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en ardoise des abîmes", + "item.middle-earth.deepslate_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en ardoise des abîmes", + "block.middle-earth.deepslate_pillar_vertical_slab": "Dalle verticale de pilier d'ardoise des abîmes", + "item.middle-earth.deepslate_pillar_vertical_slab": "Dalle verticale de pilier d'ardoise des abîmes", + "block.middle-earth.deepslate_pillar_wall": "Muret de pilier d'ardoise des abîmes", + "item.middle-earth.deepslate_pillar_wall": "Muret de pilier d'ardoise des abîmes", + "block.middle-earth.mossy_deepslate_pillar_vertical_slab": "Dalle verticale de pilier d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_pillar_vertical_slab": "Dalle verticale de pilier d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_pillar_wall": "Muret de pilier d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_pillar_wall": "Muret de pilier d'ardoise des abîmes moussue", + "block.middle-earth.cracked_deepslate_pillar_vertical_slab": "Dalle verticale de pilier d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_pillar_vertical_slab": "Dalle verticale de pilier d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_deepslate_pillar_wall": "Muret de pilier d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_pillar_wall": "Muret de pilier d'ardoise des abîmes craquelée", + "block.middle-earth.mossy_deepslate_brick_slab": "Brique d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_brick_slab": "Brique d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_brick_stairs": "Escalier de brique d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_brick_stairs": "Escalier de brique d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_brick_vertical_slab": "Dalle verticale de brique d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_brick_vertical_slab": "Dalle verticale de brique d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_brick_wall": "Muret de brique d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_brick_wall": "Muret de brique d'ardoise des abîmes moussue", + "block.middle-earth.cracked_deepslate_brick_slab": "Brique d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_brick_slab": "Brique d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_deepslate_brick_stairs": "Escalier de brique d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_brick_stairs": "Escalier de brique d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_deepslate_brick_vertical_slab": "Dalle verticale de brique d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_brick_vertical_slab": "Dalle verticale de brique d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_deepslate_brick_wall": "Muret de brique d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_brick_wall": "Muret de brique d'ardoise des abîmes craquelée", + "block.middle-earth.mossy_deepslate_tile_slab": "Tuile d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_tile_slab": "Tuile d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_tile_stairs": "Escalier de tuile d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_tile_stairs": "Escalier de tuile d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_tile_vertical_slab": "Dalle verticale de tuile d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_tile_vertical_slab": "Dalle verticale de tuile d'ardoise des abîmes moussue", + "block.middle-earth.mossy_deepslate_tile_wall": "Muret de tuile d'ardoise des abîmes moussue", + "item.middle-earth.mossy_deepslate_tile_wall": "Muret de tuile d'ardoise des abîmes moussue", + "block.middle-earth.cracked_deepslate_tile_slab": "Tuile d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_tile_slab": "Tuile d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_deepslate_tile_stairs": "Escalier de tuile d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_tile_stairs": "Escalier de tuile d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_deepslate_tile_vertical_slab": "Dalle verticale de tuile d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_tile_vertical_slab": "Dalle verticale de tuile d'ardoise des abîmes craquelée", + "block.middle-earth.cracked_deepslate_tile_wall": "Muret de tuile d'ardoise des abîmes craquelée", + "item.middle-earth.cracked_deepslate_tile_wall": "Muret de tuile d'ardoise des abîmes craquelée", + "block.middle-earth.chiseled_deepslate_bricks_vertical_slab": "Dalle verticale de briques d'ardoise des abîmes sculptées", + "item.middle-earth.chiseled_deepslate_bricks_vertical_slab": "Dalle verticale de briques d'ardoise des abîmes sculptées", + "block.middle-earth.chiseled_deepslate_bricks_wall": "Muret de briques d'ardoise des abîmes sculptées", + "item.middle-earth.chiseled_deepslate_bricks_wall": "Muret de briques d'ardoise des abîmes sculptées", + "block.middle-earth.chiseled_deepslate_tiles_vertical_slab": "Dalle verticale d'ardoise des abîmes carrelée sculptée", + "item.middle-earth.chiseled_deepslate_tiles_vertical_slab": "Dalle verticale d'ardoise des abîmes carrelée sculptée", + "block.middle-earth.chiseled_deepslate_tiles_wall": "Muret d'ardoise des abîmes carrelée sculptée", + "item.middle-earth.chiseled_deepslate_tiles_wall": "Muret d'ardoise des abîmes carrelée sculptée", + "block.middle-earth.chiseled_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes sculptée", + "item.middle-earth.chiseled_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes sculptée", + "block.middle-earth.chiseled_deepslate_wall": "Muret en ardoise des abîmes sculptée", + "item.middle-earth.chiseled_deepslate_wall": "Muret en ardoise des abîmes sculptée", + "block.middle-earth.chiseled_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie sculptée", + "item.middle-earth.chiseled_polished_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes polie sculptée", + "block.middle-earth.chiseled_polished_deepslate_wall": "Muret en ardoise des abîmes polie sculptée", + "item.middle-earth.chiseled_polished_deepslate_wall": "Muret en ardoise des abîmes polie sculptée", + "block.middle-earth.chiseled_smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse sculptée", + "item.middle-earth.chiseled_smooth_deepslate_vertical_slab": "Dalle verticale en ardoise des abîmes lisse sculptée", + "block.middle-earth.chiseled_smooth_deepslate_wall": "Muret en ardoise des abîmes lisse sculptée", + "item.middle-earth.chiseled_smooth_deepslate_wall": "Muret en ardoise des abîmes lisse sculptée", + "block.middle-earth.blackstone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre noire", + "item.middle-earth.blackstone_carved_window_vertical_slab": "Dalle verticale de fenêtre sculptée en pierre noire", + "block.middle-earth.blackstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre noire", + "item.middle-earth.blackstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre noire", + "block.middle-earth.blackstone_pillar_wall": "Muret de pilier en pierre noire", + "item.middle-earth.blackstone_pillar_wall": "Muret de pilier en pierre noire", + "block.middle-earth.mossy_blackstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre noire moussue", + "item.middle-earth.mossy_blackstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre noire moussue", + "block.middle-earth.mossy_blackstone_pillar_wall": "Muret de pilier en pierre noire moussue", + "item.middle-earth.mossy_blackstone_pillar_wall": "Muret de pilier en pierre noire moussue", + "block.middle-earth.cracked_blackstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre noire craquelée", + "item.middle-earth.cracked_blackstone_pillar_vertical_slab": "Dalle verticale de pilier en pierre noire craquelée", + "block.middle-earth.cracked_blackstone_pillar_wall": "Muret de pilier en pierre noire craquelée", + "item.middle-earth.cracked_blackstone_pillar_wall": "Muret de pilier en pierre noire craquelée", + "block.middle-earth.blackstone_tile_slab": "Tuile en pierre noire", + "item.middle-earth.blackstone_tile_slab": "Tuile en pierre noire", + "block.middle-earth.blackstone_tile_stairs": "Escalier de tuile en pierre noire", + "item.middle-earth.blackstone_tile_stairs": "Escalier de tuile en pierre noire", + "block.middle-earth.blackstone_tile_vertical_slab": "Dalle verticale de tuile en pierre noire", + "item.middle-earth.blackstone_tile_vertical_slab": "Dalle verticale de tuile en pierre noire", + "block.middle-earth.blackstone_tile_wall": "Muret de tuile en pierre noire", + "item.middle-earth.blackstone_tile_wall": "Muret de tuile en pierre noire", + "block.middle-earth.mossy_blackstone_tile_slab": "Tuile en pierre noire moussue", + "item.middle-earth.mossy_blackstone_tile_slab": "Tuile en pierre noire moussue", + "block.middle-earth.mossy_blackstone_tile_stairs": "Escalier de tuile en pierre noire moussue", + "item.middle-earth.mossy_blackstone_tile_stairs": "Escalier de tuile en pierre noire moussue", + "block.middle-earth.mossy_blackstone_tile_vertical_slab": "Dalle verticale de tuile en pierre noire moussue", + "item.middle-earth.mossy_blackstone_tile_vertical_slab": "Dalle verticale de tuile en pierre noire moussue", + "block.middle-earth.mossy_blackstone_tile_wall": "Muret de tuile en pierre noire moussue", + "item.middle-earth.mossy_blackstone_tile_wall": "Muret de tuile en pierre noire moussue", + "block.middle-earth.cracked_blackstone_tile_slab": "Tuile en pierre noire craquelée", + "item.middle-earth.cracked_blackstone_tile_slab": "Tuile en pierre noire craquelée", + "block.middle-earth.cracked_blackstone_tile_stairs": "Escalier de tuile en pierre noire craquelée", + "item.middle-earth.cracked_blackstone_tile_stairs": "Escalier de tuile en pierre noire craquelée", + "block.middle-earth.cracked_blackstone_tile_vertical_slab": "Dalle verticale de tuile en pierre noire craquelée", + "item.middle-earth.cracked_blackstone_tile_vertical_slab": "Dalle verticale de tuile en pierre noire craquelée", + "block.middle-earth.cracked_blackstone_tile_wall": "Muret de tuile en pierre noire craquelée", + "item.middle-earth.cracked_blackstone_tile_wall": "Muret de tuile en pierre noire craquelée", + "block.middle-earth.cracked_polished_blackstone_brick_slab": "Brique en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_brick_slab": "Brique en pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blackstone_brick_stairs": "Escalier de brique en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_brick_stairs": "Escalier de brique en pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blackstone_brick_vertical_slab": "Dalle verticale de brique en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_brick_vertical_slab": "Dalle verticale de brique en pierre noire polie craquelée", + "block.middle-earth.cracked_polished_blackstone_brick_wall": "Muret de brique en pierre noire polie craquelée", + "item.middle-earth.cracked_polished_blackstone_brick_wall": "Muret de brique en pierre noire polie craquelée", + "block.middle-earth.mossy_polished_blackstone_brick_slab": "Brique en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_brick_slab": "Brique en pierre noire polie moussue", + "block.middle-earth.mossy_polished_blackstone_brick_stairs": "Escalier de brique en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_brick_stairs": "Escalier de brique en pierre noire polie moussue", + "block.middle-earth.mossy_polished_blackstone_brick_vertical_slab": "Dalle verticale de brique en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_brick_vertical_slab": "Dalle verticale de brique en pierre noire polie moussue", + "block.middle-earth.mossy_polished_blackstone_brick_wall": "Muret de brique en pierre noire polie moussue", + "item.middle-earth.mossy_polished_blackstone_brick_wall": "Muret de brique en pierre noire polie moussue", + "block.middle-earth.chiseled_blackstone_tiles_vertical_slab": "Dalle verticale de roche noire carrelée sculptée", + "item.middle-earth.chiseled_blackstone_tiles_vertical_slab": "Dalle verticale de roche noire carrelée sculptée", + "block.middle-earth.chiseled_blackstone_tiles_wall": "Muret de roche noire carrelée sculptée", + "item.middle-earth.chiseled_blackstone_tiles_wall": "Muret de roche noire carrelée sculptée", + "block.middle-earth.chiseled_blackstone_vertical_slab": "Dalle verticale en pierre noire sculptée", + "item.middle-earth.chiseled_blackstone_vertical_slab": "Dalle verticale en pierre noire sculptée", + "block.middle-earth.chiseled_blackstone_wall": "Muret en pierre noire sculptée", + "item.middle-earth.chiseled_blackstone_wall": "Muret en pierre noire sculptée", + "block.middle-earth.chiseled_polished_blackstone_bricks_vertical_slab": "Dalle verticale de briques en pierre noire polie sculptées", + "item.middle-earth.chiseled_polished_blackstone_bricks_vertical_slab": "Dalle verticale de briques en pierre noire polie sculptées", + "block.middle-earth.chiseled_polished_blackstone_bricks_wall": "Muret de briques en pierre noire polie sculptées", + "item.middle-earth.chiseled_polished_blackstone_bricks_wall": "Muret de briques en pierre noire polie sculptées", + "block.middle-earth.chiseled_polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie sculptée", + "item.middle-earth.chiseled_polished_blackstone_vertical_slab": "Dalle verticale en pierre noire polie sculptée", + "block.middle-earth.chiseled_polished_blackstone_wall": "Muret en pierre noire polie sculptée", + "item.middle-earth.chiseled_polished_blackstone_wall": "Muret en pierre noire polie sculptée", + "block.middle-earth.chiseled_smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse sculptée", + "item.middle-earth.chiseled_smooth_blackstone_vertical_slab": "Dalle verticale en roche noire lisse sculptée", + "block.middle-earth.chiseled_smooth_blackstone_wall": "Muret en roche noire lisse sculptée", + "item.middle-earth.chiseled_smooth_blackstone_wall": "Muret en roche noire lisse sculptée", + "block.middle-earth.chiseled_gilded_green_tuff": "Tuf vert doré sculpté", + "item.middle-earth.chiseled_gilded_green_tuff": "Tuf vert doré sculpté", + "block.middle-earth.chiseled_gilded_green_tuff_bricks": "Briques en tuf vert doré sculptées", + "item.middle-earth.chiseled_gilded_green_tuff_bricks": "Briques en tuf vert doré sculptées", + "block.middle-earth.chiseled_gilded_green_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf vert doré sculptées", + "item.middle-earth.chiseled_gilded_green_tuff_bricks_vertical_slab": "Dalle verticale de briques en tuf vert doré sculptées", + "block.middle-earth.chiseled_gilded_green_tuff_bricks_wall": "Muret de briques en tuf vert doré sculptées", + "item.middle-earth.chiseled_gilded_green_tuff_bricks_wall": "Muret de briques en tuf vert doré sculptées", + "block.middle-earth.chiseled_gilded_green_tuff_tiles": "Tuf vert doré carrelé sculpté", + "item.middle-earth.chiseled_gilded_green_tuff_tiles": "Tuf vert doré carrelé sculpté", + "block.middle-earth.chiseled_gilded_green_tuff_tiles_vertical_slab": "Dalle verticale de tuf vert doré carrelé sculpté", + "item.middle-earth.chiseled_gilded_green_tuff_tiles_vertical_slab": "Dalle verticale de tuf vert doré carrelé sculpté", + "block.middle-earth.chiseled_gilded_green_tuff_tiles_wall": "Muret de tuf vert doré carrelé sculpté", + "item.middle-earth.chiseled_gilded_green_tuff_tiles_wall": "Muret de tuf vert doré carrelé sculpté", + "block.middle-earth.chiseled_gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré sculpté", + "item.middle-earth.chiseled_gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré sculpté", + "block.middle-earth.chiseled_gilded_green_tuff_wall": "Muret en tuf vert doré sculpté", + "item.middle-earth.chiseled_gilded_green_tuff_wall": "Muret en tuf vert doré sculpté", + "block.middle-earth.chiseled_polished_gilded_green_tuff": "Tuf vert doré poli sculpté", + "item.middle-earth.chiseled_polished_gilded_green_tuff": "Tuf vert doré poli sculpté", + "block.middle-earth.chiseled_polished_gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré poli sculpté", + "item.middle-earth.chiseled_polished_gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré poli sculpté", + "block.middle-earth.chiseled_polished_gilded_green_tuff_wall": "Muret en tuf vert doré poli sculpté", + "item.middle-earth.chiseled_polished_gilded_green_tuff_wall": "Muret en tuf vert doré poli sculpté", + "block.middle-earth.chiseled_smooth_gilded_green_tuff": "Tuf vert doré lisse sculpté", + "item.middle-earth.chiseled_smooth_gilded_green_tuff": "Tuf vert doré lisse sculpté", + "block.middle-earth.chiseled_smooth_gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré lisse sculpté", + "item.middle-earth.chiseled_smooth_gilded_green_tuff_vertical_slab": "Dalle verticale en tuf vert doré lisse sculpté", + "block.middle-earth.chiseled_smooth_gilded_green_tuff_wall": "Muret en tuf vert doré lisse sculpté", + "item.middle-earth.chiseled_smooth_gilded_green_tuff_wall": "Muret en tuf vert doré lisse sculpté", + "block.middle-earth.black_curtain": "Rideau noir", + "item.middle-earth.black_curtain": "Rideau noir", + "block.middle-earth.small_black_curtain": "Petit rideau noir", + "item.middle-earth.small_black_curtain": "Petit rideau noir", + "block.middle-earth.blue_curtain": "Rideau bleu", + "item.middle-earth.blue_curtain": "Rideau bleu", + "block.middle-earth.small_blue_curtain": "Petit rideau bleu", + "item.middle-earth.small_blue_curtain": "Petit rideau bleu", + "block.middle-earth.brown_curtain": "Rideau marron", + "item.middle-earth.brown_curtain": "Rideau marron", + "block.middle-earth.small_brown_curtain": "Petit rideau marron", + "item.middle-earth.small_brown_curtain": "Petit rideau marron", + "block.middle-earth.burnt_curtain": "Rideau brûlé", + "item.middle-earth.burnt_curtain": "Rideau brûlé", + "block.middle-earth.small_burnt_curtain": "Petit rideau brûlé", + "item.middle-earth.small_burnt_curtain": "Petit rideau brûlé", + "block.middle-earth.dark_blue_curtain": "Rideau bleu foncé", + "item.middle-earth.dark_blue_curtain": "Rideau bleu foncé", + "block.middle-earth.small_dark_blue_curtain": "Petit rideau bleu foncé", + "item.middle-earth.small_dark_blue_curtain": "Petit rideau bleu foncé", + "block.middle-earth.dark_brown_curtain": "Rideau marron foncé", + "item.middle-earth.dark_brown_curtain": "Rideau marron foncé", + "block.middle-earth.small_dark_brown_curtain": "Petit rideau marron foncé", + "item.middle-earth.small_dark_brown_curtain": "Petit rideau marron foncé", + "block.middle-earth.dark_green_curtain": "Rideau vert foncé", + "item.middle-earth.dark_green_curtain": "Rideau vert foncé", + "block.middle-earth.small_dark_green_curtain": "Petit rideau vert foncé", + "item.middle-earth.small_dark_green_curtain": "Petit rideau vert foncé", + "block.middle-earth.dark_red_curtain": "Rideau rouge foncé", + "item.middle-earth.dark_red_curtain": "Rideau rouge foncé", + "block.middle-earth.small_dark_red_curtain": "Petit rideau rouge foncé", + "item.middle-earth.small_dark_red_curtain": "Petit rideau rouge foncé", + "block.middle-earth.fancy_blue_curtain": "Rideau bleu élégant", + "item.middle-earth.fancy_blue_curtain": "Rideau bleu élégant", + "block.middle-earth.small_fancy_blue_curtain": "Petit rideau bleu élégant", + "item.middle-earth.small_fancy_blue_curtain": "Petit rideau bleu élégant", + "block.middle-earth.fancy_green_curtain": "Rideau vert élégant", + "item.middle-earth.fancy_green_curtain": "Rideau vert élégant", + "block.middle-earth.small_fancy_green_curtain": "Petit rideau vert élégant", + "item.middle-earth.small_fancy_green_curtain": "Petit rideau vert élégant", + "block.middle-earth.fancy_red_curtain": "Rideau rouge élégant", + "item.middle-earth.fancy_red_curtain": "Rideau rouge élégant", + "block.middle-earth.small_fancy_red_curtain": "Petit rideau rouge élégant", + "item.middle-earth.small_fancy_red_curtain": "Petit rideau rouge élégant", + "block.middle-earth.gray_curtain": "Rideau gris", + "item.middle-earth.gray_curtain": "Rideau gris", + "block.middle-earth.small_gray_curtain": "Petit rideau gris", + "item.middle-earth.small_gray_curtain": "Petit rideau gris", + "block.middle-earth.green_curtain": "Rideau vert", + "item.middle-earth.green_curtain": "Rideau vert", + "block.middle-earth.small_green_curtain": "Petit rideau vert", + "item.middle-earth.small_green_curtain": "Petit rideau vert", + "block.middle-earth.purple_curtain": "Rideau violet", + "item.middle-earth.purple_curtain": "Rideau violet", + "block.middle-earth.small_purple_curtain": "Petit rideau violet", + "item.middle-earth.small_purple_curtain": "Petit rideau violet", + "block.middle-earth.red_curtain": "Rideau rouge", + "item.middle-earth.red_curtain": "Rideau rouge", + "block.middle-earth.small_red_curtain": "Petit rideau rouge", + "item.middle-earth.small_red_curtain": "Petit rideau rouge", + "block.middle-earth.white_curtain": "Rideau blanc", + "item.middle-earth.white_curtain": "Rideau blanc", + "block.middle-earth.small_white_curtain": "Petit rideau blanc", + "item.middle-earth.small_white_curtain": "Petit rideau blanc", + "block.middle-earth.yellow_curtain": "Rideau jaune", + "item.middle-earth.yellow_curtain": "Rideau jaune", + "block.middle-earth.small_yellow_curtain": "Petit rideau jaune", + "item.middle-earth.small_yellow_curtain": "Petit rideau jaune", + "item.middle-earth.ruby": "Rubis", + "block.middle-earth.ruby_block": "Bloc de rubis", + "item.middle-earth.ruby_block": "Bloc de rubis", + "item.middle-earth.sapphire": "Saphir", + "block.middle-earth.sapphire_block": "Bloc de saphir", + "item.middle-earth.sapphire_block": "Bloc de saphir", + "item.middle-earth.adamant": "Adamant", + "block.middle-earth.adamant_block": "Bloc d'adamant", + "item.middle-earth.adamant_block": "Bloc d'adamant", + "block.middle-earth.loam": "Terreau", + "item.middle-earth.loam": "Terreau", + "block.middle-earth.loam_slab": "Dalle de terreau", + "item.middle-earth.loam_slab": "Dalle de terreau", + "block.middle-earth.loam_stairs": "Escalier de terreau", + "item.middle-earth.loam_stairs": "Escalier de terreau", + "block.middle-earth.loam_farmland": "Terreau labouré", + "item.middle-earth.loam_farmland": "Terreau labouré", + "block.middle-earth.loam_grass_block": "Bloc d'herbe de terreau", + "item.middle-earth.loam_grass_block": "Bloc d'herbe de terreau", + "block.middle-earth.loam_path": "Chemin de terreau", + "item.middle-earth.loam_path": "Chemin de terreau", + "block.middle-earth.coarse_loam": "Terreau stérile", + "item.middle-earth.coarse_loam": "Terreau stérile", + "block.middle-earth.coarse_loam_slab": "Dalle de terreau stérile", + "item.middle-earth.coarse_loam_slab": "Dalle de terreau stérile", + "block.middle-earth.coarse_loam_stairs": "Escalier de terreau stérile", + "item.middle-earth.coarse_loam_stairs": "Escalier de terreau stérile", + "block.middle-earth.grassy_loam": "Terreau herbeux", + "item.middle-earth.grassy_loam": "Terreau herbeux", + "block.middle-earth.grassy_loam_slab": "Dalle de terreau herbeux", + "item.middle-earth.grassy_loam_slab": "Dalle de terreau herbeux", + "block.middle-earth.grassy_loam_stairs": "Escalier de terreau herbeux", + "item.middle-earth.grassy_loam_stairs": "Escalier de terreau herbeux", + "block.middle-earth.peat": "Tourbe", + "item.middle-earth.peat": "Tourbe", + "block.middle-earth.peat_slab": "Dalle de tourbe", + "item.middle-earth.peat_slab": "Dalle de tourbe", + "block.middle-earth.peat_stairs": "Escalier de tourbe", + "item.middle-earth.peat_stairs": "Escalier de tourbe", + "block.middle-earth.peat_farmland": "Tourbe labourée", + "item.middle-earth.peat_farmland": "Tourbe labourée", + "block.middle-earth.peat_grass_block": "Bloc d'herbe de tourbe", + "item.middle-earth.peat_grass_block": "Bloc d'herbe de tourbe", + "block.middle-earth.peat_path": "Chemin de tourbe", + "item.middle-earth.peat_path": "Chemin de tourbe", + "block.middle-earth.coarse_peat": "Tourbe stérile", + "item.middle-earth.coarse_peat": "Tourbe stérile", + "block.middle-earth.coarse_peat_slab": "Dalle de tourbe stérile", + "item.middle-earth.coarse_peat_slab": "Dalle de tourbe stérile", + "block.middle-earth.coarse_peat_stairs": "Escalier de tourbe stérile", + "item.middle-earth.coarse_peat_stairs": "Escalier de tourbe stérile", + "block.middle-earth.grassy_peat": "Tourbe herbeuse", + "item.middle-earth.grassy_peat": "Tourbe herbeuse", + "block.middle-earth.grassy_peat_slab": "Dalle de tourbe herbeuse", + "item.middle-earth.grassy_peat_slab": "Dalle de tourbe herbeuse", + "block.middle-earth.grassy_peat_stairs": "Escalier de tourbe herbeuse", + "item.middle-earth.grassy_peat_stairs": "Escalier de tourbe herbeuse", + "block.middle-earth.silt": "Limon", + "item.middle-earth.silt": "Limon", + "block.middle-earth.silt_slab": "Dalle de limon", + "item.middle-earth.silt_slab": "Dalle de limon", + "block.middle-earth.silt_stairs": "Escalier de limon", + "item.middle-earth.silt_stairs": "Escalier de limon", + "block.middle-earth.silt_farmland": "Limon labouré", + "item.middle-earth.silt_farmland": "Limon labouré", + "block.middle-earth.silt_grass_block": "Bloc d'herbe de limon", + "item.middle-earth.silt_grass_block": "Bloc d'herbe de limon", + "block.middle-earth.silt_path": "Chemin de limon", + "item.middle-earth.silt_path": "Chemin de limon", + "block.middle-earth.coarse_silt": "Limon stérile", + "item.middle-earth.coarse_silt": "Limon stérile", + "block.middle-earth.coarse_silt_slab": "Dalle de limon stérile", + "item.middle-earth.coarse_silt_slab": "Dalle de limon stérile", + "block.middle-earth.coarse_silt_stairs": "Escalier de limon stérile", + "item.middle-earth.coarse_silt_stairs": "Escalier de limon stérile", + "block.middle-earth.grassy_silt": "Limon herbeux", + "item.middle-earth.grassy_silt": "Limon herbeux", + "block.middle-earth.grassy_silt_slab": "Dalle de limon herbeux", + "item.middle-earth.grassy_silt_slab": "Dalle de limon herbeux", + "block.middle-earth.grassy_silt_stairs": "Escalier de limon herbeux", + "item.middle-earth.grassy_silt_stairs": "Escalier de limon herbeux", + "block.middle-earth.foul_dirt": "Terre fétide", + "item.middle-earth.foul_dirt": "Terre fétide", + "block.middle-earth.foul_dirt_slab": "Dalle de terre fétide", + "item.middle-earth.foul_dirt_slab": "Dalle de terre fétide", + "block.middle-earth.foul_dirt_stairs": "Escalier de terre fétide", + "item.middle-earth.foul_dirt_stairs": "Escalier de terre fétide", + "block.middle-earth.crimson_hyphae_fence": "Barrière en tige carmin", + "item.middle-earth.crimson_hyphae_fence": "Barrière en tige carmin", + "block.middle-earth.crimson_hyphae_slab": "Dalle en tige carmin", + "item.middle-earth.crimson_hyphae_slab": "Dalle en tige carmin", + "block.middle-earth.crimson_hyphae_stairs": "Escaliers en tige carmin", + "item.middle-earth.crimson_hyphae_stairs": "Escaliers en tige carmin", + "block.middle-earth.crimson_hyphae_vertical_slab": "Dalle verticale en tige carmin", + "item.middle-earth.crimson_hyphae_vertical_slab": "Dalle verticale en tige carmin", + "block.middle-earth.crimson_hyphae_wall": "Muret en tige carmin", + "item.middle-earth.crimson_hyphae_wall": "Muret en tige carmin", + "block.middle-earth.stripped_crimson_hyphae_fence": "Barrière en tige carmin dénudée", + "item.middle-earth.stripped_crimson_hyphae_fence": "Barrière en tige carmin dénudée", + "block.middle-earth.stripped_crimson_hyphae_slab": "Dalle en tige carmin dénudée", + "item.middle-earth.stripped_crimson_hyphae_slab": "Dalle en tige carmin dénudée", + "block.middle-earth.stripped_crimson_hyphae_stairs": "Escaliers en tige carmin dénudée", + "item.middle-earth.stripped_crimson_hyphae_stairs": "Escaliers en tige carmin dénudée", + "block.middle-earth.stripped_crimson_hyphae_vertical_slab": "Dalle verticale en tige carmin dénudée", + "item.middle-earth.stripped_crimson_hyphae_vertical_slab": "Dalle verticale en tige carmin dénudée", + "block.middle-earth.stripped_crimson_hyphae_wall": "Muret en tige carmin dénudée", + "item.middle-earth.stripped_crimson_hyphae_wall": "Muret en tige carmin dénudée", + "block.middle-earth.warped_hyphae_fence": "Barrière en tige biscornue", + "item.middle-earth.warped_hyphae_fence": "Barrière en tige biscornue", + "block.middle-earth.warped_hyphae_slab": "Dalle en tige biscornue", + "item.middle-earth.warped_hyphae_slab": "Dalle en tige biscornue", + "block.middle-earth.warped_hyphae_stairs": "Escaliers en tige biscornue", + "item.middle-earth.warped_hyphae_stairs": "Escaliers en tige biscornue", + "block.middle-earth.warped_hyphae_vertical_slab": "Dalle verticale en tige biscornue", + "item.middle-earth.warped_hyphae_vertical_slab": "Dalle verticale en tige biscornue", + "block.middle-earth.warped_hyphae_wall": "Muret en tige biscornue", + "item.middle-earth.warped_hyphae_wall": "Muret en tige biscornue", + "block.middle-earth.stripped_warped_hyphae_fence": "Barrière en tige biscornue dénudée", + "item.middle-earth.stripped_warped_hyphae_fence": "Barrière en tige biscornue dénudée", + "block.middle-earth.stripped_warped_hyphae_slab": "Dalle en tige biscornue dénudée", + "item.middle-earth.stripped_warped_hyphae_slab": "Dalle en tige biscornue dénudée", + "block.middle-earth.stripped_warped_hyphae_stairs": "Escaliers en tige biscornue dénudée", + "item.middle-earth.stripped_warped_hyphae_stairs": "Escaliers en tige biscornue dénudée", + "block.middle-earth.stripped_warped_hyphae_vertical_slab": "Dalle verticale en tige biscornue dénudée", + "item.middle-earth.stripped_warped_hyphae_vertical_slab": "Dalle verticale en tige biscornue dénudée", + "block.middle-earth.stripped_warped_hyphae_wall": "Muret en tige biscornue dénudée", + "item.middle-earth.stripped_warped_hyphae_wall": "Muret en tige biscornue dénudée", + "block.middle-earth.pale_oak_vertical_slab": "Dalle verticale en chêne pâle", + "item.middle-earth.pale_oak_vertical_slab": "Dalle verticale en chêne pâle", + "block.middle-earth.pale_oak_wood_fence": "Barrière en bois de chêne pâle", + "item.middle-earth.pale_oak_wood_fence": "Barrière en bois de chêne pâle", + "block.middle-earth.pale_oak_wood_slab": "Dalle en bois de chêne pâle", + "item.middle-earth.pale_oak_wood_slab": "Dalle en bois de chêne pâle", + "block.middle-earth.pale_oak_wood_stairs": "Escaliers en bois de chêne pâle", + "item.middle-earth.pale_oak_wood_stairs": "Escaliers en bois de chêne pâle", + "block.middle-earth.pale_oak_wood_vertical_slab": "Dalle verticale en bois de chêne pâle", + "item.middle-earth.pale_oak_wood_vertical_slab": "Dalle verticale en bois de chêne pâle", + "block.middle-earth.pale_oak_wood_wall": "Muret en bois de chêne pâle", + "item.middle-earth.pale_oak_wood_wall": "Muret en bois de chêne pâle", + "block.middle-earth.stripped_pale_oak_wood_fence": "Barrière en bois de chêne pâle écorcé", + "item.middle-earth.stripped_pale_oak_wood_fence": "Barrière en bois de chêne pâle écorcé", + "block.middle-earth.stripped_pale_oak_wood_slab": "Dalle en bois de chêne pâle écorcé", + "item.middle-earth.stripped_pale_oak_wood_slab": "Dalle en bois de chêne pâle écorcé", + "block.middle-earth.stripped_pale_oak_wood_stairs": "Escaliers en bois de chêne pâle écorcé", + "item.middle-earth.stripped_pale_oak_wood_stairs": "Escaliers en bois de chêne pâle écorcé", + "block.middle-earth.stripped_pale_oak_wood_vertical_slab": "Dalle verticale en bois de chêne pâle écorcé", + "item.middle-earth.stripped_pale_oak_wood_vertical_slab": "Dalle verticale en bois de chêne pâle écorcé", + "block.middle-earth.stripped_pale_oak_wood_wall": "Muret en bois de chêne pâle écorcé", + "item.middle-earth.stripped_pale_oak_wood_wall": "Muret en bois de chêne pâle écorcé", + "block.middle-earth.beech_coffer": "Coffre en hêtre", + "item.middle-earth.beech_coffer": "Coffre en hêtre", + "block.middle-earth.chestnut_coffer": "Coffre en châtaignier", + "item.middle-earth.chestnut_coffer": "Coffre en châtaignier", + "block.middle-earth.larch_coffer": "Coffre en mélèze", + "item.middle-earth.larch_coffer": "Coffre en mélèze", + "block.middle-earth.oak_coffer": "Coffre en chêne", + "item.middle-earth.oak_coffer": "Coffre en chêne", + "block.middle-earth.pine_coffer": "Coffre en pin", + "item.middle-earth.pine_coffer": "Coffre en pin", + "block.middle-earth.spruce_coffer": "Coffre en sapin", + "item.middle-earth.spruce_coffer": "Coffre en sapin", + "block.middle-earth.willow_coffer": "Coffre en saule", + "item.middle-earth.willow_coffer": "Coffre en saule", + "block.middle-earth.potted_beech_sapling": "Pousse de hêtre en pot", + "block.middle-earth.potted_black_pine_sapling": "Pousse de pin noir en pot", + "block.middle-earth.potted_cave_amanita": "Amanite de caverne en pot", + "block.middle-earth.potted_chestnut_sapling": "Pousse de châtaignier en pot", + "block.middle-earth.potted_deep_firecap": "Champi-feu des profondeurs en pot", + "block.middle-earth.potted_fir_sapling": "Pousse de sapin en pot", + "block.middle-earth.potted_frozen_shrub": "Arbuste gelé en pot", + "block.middle-earth.potted_ghostshroom": "Champi-fantôme en pot", + "block.middle-earth.potted_green_jewel_cornflower": "Cornouille verdoyante en pot", + "block.middle-earth.potted_green_shrub": "Arbuste vert en pot", + "block.middle-earth.potted_holly_sapling": "Pousse de houx en pot", + "block.middle-earth.potted_larch_sapling": "Pousse de mélèze en pot", + "block.middle-earth.potted_lebethron_sapling": "Pousse de Lebethron en pot", + "block.middle-earth.potted_mallorn_sapling": "Pousse de Mallorn en pot", + "block.middle-earth.potted_mallos": "Mallos en pot", + "block.middle-earth.potted_maple_sapling": "Pousse d'érable en pot", + "block.middle-earth.potted_mirkwood_sapling": "Pousse de la forêt noire en pot", + "block.middle-earth.potted_morsel": "Morsel en pot", + "block.middle-earth.potted_palm_sapling": "Pousse de palmier en pot", + "block.middle-earth.potted_pine_sapling": "Pousse de pin en pot", + "block.middle-earth.potted_scorched_shrub": "Arbuste calciné en pot", + "block.middle-earth.potted_silver_maple_sapling": "Pousse d'érable argenté en pot", + "block.middle-earth.potted_sky_firecap": "Champi-feu de surface en pot", + "block.middle-earth.potted_tan_shrub": "Arbuste bruni en pot", + "block.middle-earth.potted_trumpet_shroom": "Champi-trompette en pot", + "block.middle-earth.potted_tubeshroom": "Champi-tube en pot", + "block.middle-earth.potted_violet_caps": "Champignon violet en pot", + "block.middle-earth.potted_white_lebethron_sapling": "Pousse de Lebethron blanc en pot", + "block.middle-earth.potted_white_mushroom": "Champignon blanc en pot", + "block.middle-earth.potted_white_palm_sapling": "Pousse de palmier blanc en pot", + "block.middle-earth.potted_willow_sapling": "Pousse de saule en pot", + "block.middle-earth.potted_yellow_amanita": "Amanite jaune en pot", + "block.middle-earth.potted_yellow_flower": "Fleur jaune en pot", + "block.middle-earth.potted_yellow_trollius": "Trolle jaune en pot", + "npc_type.middle-earth.brigand.chieftain": "Chef Bandit", + "item.middle-earth.brigand.chieftain_spawn_egg": "Œuf d'apparition de Chef Bandit", + "npc_type.middle-earth.brigand.mercenary": "Mercenaire Bandit", + "item.middle-earth.brigand.mercenary_spawn_egg": "Œuf d'apparition de Mercenaire Bandit", + "npc_type.middle-earth.brigand.thief": "Voleur Bandit", + "item.middle-earth.brigand.thief_spawn_egg": "Œuf d'apparition de Voleur Bandit", + "npc_type.middle-earth.brigand.thug": "Voyou Bandit", + "item.middle-earth.brigand.thug_spawn_egg": "Œuf d'apparition de Voyou Bandit", + "npc_type.middle-earth.dale.archer": "Archer du Val", + "item.middle-earth.dale.archer_spawn_egg": "Œuf d'apparition d'Archer du Val", + "npc_type.middle-earth.dale.elite_archer": "Archer d'élite du Val", + "item.middle-earth.dale.elite_archer_spawn_egg": "Œuf d'apparition d'Archer d'élite du Val", + "npc_type.middle-earth.dale.knight": "Chevalier du Val", + "item.middle-earth.dale.knight_spawn_egg": "Œuf d'apparition de Chevalier du Val", + "npc_type.middle-earth.dale.militia": "Milicien du Val", + "item.middle-earth.dale.militia_spawn_egg": "Œuf d'apparition de Milicien du Val", + "npc_type.middle-earth.dale.peasant": "Paysan du Val", + "item.middle-earth.dale.peasant_spawn_egg": "Œuf d'apparition de Paysan du Val", + "npc_type.middle-earth.dale.sergeant": "Sergent du Val", + "item.middle-earth.dale.sergeant_spawn_egg": "Œuf d'apparition de Sergent du Val", + "npc_type.middle-earth.dale.soldier": "Soldat du Val", + "item.middle-earth.dale.soldier_spawn_egg": "Œuf d'apparition de Soldat du Val", + "npc_type.middle-earth.dale.veteran": "Vétéran du Val", + "item.middle-earth.dale.veteran_spawn_egg": "Œuf d'apparition de Vétéran du Val", + "npc_type.middle-earth.goblin_town.goblin": "Gobelin de la Cité des Gobelins", + "item.middle-earth.goblin_town.goblin_spawn_egg": "Œuf d'apparition de Gobelin de la Cité des Gobelins", + "npc_type.middle-earth.goblin_town.rider": "Cavalier de la Cité des Gobelins", + "item.middle-earth.goblin_town.rider_spawn_egg": "Œuf d'apparition de Cavalier de la Cité des Gobelins", + "npc_type.middle-earth.goblin_town.scout": "Éclaireur de la Cité des Gobelins", + "item.middle-earth.goblin_town.scout_spawn_egg": "Œuf d'apparition d'Éclaireur de la Cité des Gobelins", + "npc_type.middle-earth.goblin_town.veteran": "Vétéran de la Cité des Gobelins", + "item.middle-earth.goblin_town.veteran_spawn_egg": "Œuf d'apparition de Vétéran de la Cité des Gobelins", + "npc_type.middle-earth.goblin_town.warrior": "Guerrier de la Cité des Gobelins", + "item.middle-earth.goblin_town.warrior_spawn_egg": "Œuf d'apparition de Guerrier de la Cité des Gobelins", + "npc_type.middle-earth.gondor.citadel_guard": "Garde de la citadelle Gondorien", + "item.middle-earth.gondor.citadel_guard_spawn_egg": "Œuf d'apparition de Garde de la citadelle Gondorien", + "npc_type.middle-earth.gondor.fountain_guard": "Garde de la fontaine Gondorien", + "item.middle-earth.gondor.fountain_guard_spawn_egg": "Œuf d'apparition de Garde de la fontaine Gondorien", + "npc_type.middle-earth.gondor.king_guard": "Garde du roi Gondorien", + "item.middle-earth.gondor.king_guard_spawn_egg": "Œuf d'apparition de Garde du roi Gondorien", + "npc_type.middle-earth.gondor.knight": "Chevalier Gondorien", + "item.middle-earth.gondor.knight_spawn_egg": "Œuf d'apparition de Chevalier Gondorien", + "npc_type.middle-earth.gondor.leader": "Capitaine Gondorien", + "item.middle-earth.gondor.leader_spawn_egg": "Œuf d'apparition de Capitaine Gondorien", + "npc_type.middle-earth.gondor.militia": "Milicien Gondorien", + "item.middle-earth.gondor.militia_spawn_egg": "Œuf d'apparition de Milicien Gondorien", + "npc_type.middle-earth.gondor.peasant": "Paysan Gondorien", + "item.middle-earth.gondor.peasant_spawn_egg": "Œuf d'apparition de Paysan Gondorien", + "npc_type.middle-earth.gondor.soldier": "Soldat Gondorien", + "item.middle-earth.gondor.soldier_spawn_egg": "Œuf d'apparition de Soldat Gondorien", + "npc_type.middle-earth.gondor.veteran": "Vétéran Gondorien", + "item.middle-earth.gondor.veteran_spawn_egg": "Œuf d'apparition de Vétéran Gondorien", + "npc_type.middle-earth.hobgoblin_tribes.gundabad.goblin": "Gobelin Hobgobelin de Gundabad", + "item.middle-earth.hobgoblin_tribes.gundabad.goblin_spawn_egg": "Œuf d'apparition de Gobelin Hobgobelin de Gundabad", + "npc_type.middle-earth.hobgoblin_tribes.gundabad.leader": "Capitaine Hobgobelin de Gundabad", + "item.middle-earth.hobgoblin_tribes.gundabad.leader_spawn_egg": "Œuf d'apparition de Capitaine Hobgobelin de Gundabad", + "npc_type.middle-earth.hobgoblin_tribes.gundabad.militia": "Milicien Hobgobelin de Gundabad", + "item.middle-earth.hobgoblin_tribes.gundabad.militia_spawn_egg": "Œuf d'apparition de Milicien Hobgobelin de Gundabad", + "npc_type.middle-earth.hobgoblin_tribes.gundabad.rider": "Cavalier Hobgobelin de Gundabad", + "item.middle-earth.hobgoblin_tribes.gundabad.rider_spawn_egg": "Œuf d'apparition de Cavalier Hobgobelin de Gundabad", + "npc_type.middle-earth.hobgoblin_tribes.gundabad.scout": "Éclaireur Hobgobelin de Gundabad", + "item.middle-earth.hobgoblin_tribes.gundabad.scout_spawn_egg": "Œuf d'apparition d'Éclaireur Hobgobelin de Gundabad", + "npc_type.middle-earth.hobgoblin_tribes.gundabad.veteran": "Vétéran Hobgobelin de Gundabad", + "item.middle-earth.hobgoblin_tribes.gundabad.veteran_spawn_egg": "Œuf d'apparition de Vétéran Hobgobelin de Gundabad", + "npc_type.middle-earth.hobgoblin_tribes.gundabad.warrior": "Guerrier Hobgobelin de Gundabad", + "item.middle-earth.hobgoblin_tribes.gundabad.warrior_spawn_egg": "Œuf d'apparition de Guerrier Hobgobelin de Gundabad", + "npc_type.middle-earth.isengard.berserker": "Berserker d'Isengard", + "item.middle-earth.isengard.berserker_spawn_egg": "Œuf d'apparition de Berserker d'Isengard", + "npc_type.middle-earth.isengard.leader": "Capitaine d'Isengard", + "item.middle-earth.isengard.leader_spawn_egg": "Œuf d'apparition de Capitaine d'Isengard", + "npc_type.middle-earth.isengard.orthanc_guard": "Garde d'Orthanc", + "item.middle-earth.isengard.orthanc_guard_spawn_egg": "Œuf d'apparition de Garde d'Orthanc", + "npc_type.middle-earth.isengard.scout": "Éclaireur d'Isengard", + "item.middle-earth.isengard.scout_spawn_egg": "Œuf d'apparition d'Éclaireur d'Isengard", + "npc_type.middle-earth.isengard.snaga": "Snaga d'Isengard", + "item.middle-earth.isengard.snaga_spawn_egg": "Œuf d'apparition de Snaga d'Isengard", + "npc_type.middle-earth.isengard.soldier": "Soldat d'Isengard", + "item.middle-earth.isengard.soldier_spawn_egg": "Œuf d'apparition de Soldat d'Isengard", + "npc_type.middle-earth.isengard.veteran": "Vétéran d'Isengard", + "item.middle-earth.isengard.veteran_spawn_egg": "Œuf d'apparition de Vétéran d'Isengard", + "npc_type.middle-earth.isengard.warrior": "Guerrier d'Isengard", + "item.middle-earth.isengard.warrior_spawn_egg": "Œuf d'apparition de Guerrier d'Isengard", + "npc_type.middle-earth.longbeards.erebor.archer": "Archer d'Erebor", + "item.middle-earth.longbeards.erebor.archer_spawn_egg": "Œuf d'apparition d'Archer d'Erebor", + "npc_type.middle-earth.longbeards.erebor.elite": "Élite d'Erebor", + "item.middle-earth.longbeards.erebor.elite_spawn_egg": "Œuf d'apparition d'Élite d'Erebor", + "npc_type.middle-earth.longbeards.erebor.gatewarden": "Gardien de la porte d'Erebor", + "item.middle-earth.longbeards.erebor.gatewarden_spawn_egg": "Œuf d'apparition de Gardien de la porte d'Erebor", + "npc_type.middle-earth.longbeards.erebor.leader": "Capitaine d'Erebor", + "item.middle-earth.longbeards.erebor.leader_spawn_egg": "Œuf d'apparition de Capitaine d'Erebor", + "npc_type.middle-earth.longbeards.erebor.militia": "Milicien d'Erebor", + "item.middle-earth.longbeards.erebor.militia_spawn_egg": "Œuf d'apparition de Milicien d'Erebor", + "npc_type.middle-earth.longbeards.erebor.miner": "Mineur d'Erebor", + "item.middle-earth.longbeards.erebor.miner_spawn_egg": "Œuf d'apparition de Mineur d'Erebor", + "npc_type.middle-earth.longbeards.erebor.peasant": "Paysan d'Erebor", + "item.middle-earth.longbeards.erebor.peasant_spawn_egg": "Œuf d'apparition de Paysan d'Erebor", + "npc_type.middle-earth.longbeards.erebor.soldier": "Soldat d'Erebor", + "item.middle-earth.longbeards.erebor.soldier_spawn_egg": "Œuf d'apparition de Soldat d'Erebor", + "npc_type.middle-earth.longbeards.erebor.veteran": "Vétéran d'Erebor", + "item.middle-earth.longbeards.erebor.veteran_spawn_egg": "Œuf d'apparition de Vétéran d'Erebor", + "npc_type.middle-earth.lothlorien.civilian": "Civil de Lothlórien", + "item.middle-earth.lothlorien.civilian_spawn_egg": "Œuf d'apparition de Civil de Lothlórien", + "npc_type.middle-earth.lothlorien.egladil_commander": "Commandant d'Egladil", + "item.middle-earth.lothlorien.egladil_commander_spawn_egg": "Œuf d'apparition de Commandant d'Egladil", + "npc_type.middle-earth.lothlorien.egladil_sentinel": "Sentinelle d'Egladil", + "item.middle-earth.lothlorien.egladil_sentinel_spawn_egg": "Œuf d'apparition de Sentinelle d'Egladil", + "npc_type.middle-earth.lothlorien.guard": "Garde Galadhrim", + "item.middle-earth.lothlorien.guard_spawn_egg": "Œuf d'apparition de Garde Galadhrim", + "npc_type.middle-earth.lothlorien.knight": "Chevalier Galadhrim", + "item.middle-earth.lothlorien.knight_spawn_egg": "Œuf d'apparition de Chevalier Galadhrim", + "npc_type.middle-earth.lothlorien.lord": "Seigneur Galadhrim", + "item.middle-earth.lothlorien.lord_spawn_egg": "Œuf d'apparition de Seigneur Galadhrim", + "npc_type.middle-earth.lothlorien.ranger": "Rôdeur Galadhrim", + "item.middle-earth.lothlorien.ranger_spawn_egg": "Œuf d'apparition de Rôdeur Galadhrim", + "npc_type.middle-earth.lothlorien.sentinel": "Sentinelle Galadhrim", + "item.middle-earth.lothlorien.sentinel_spawn_egg": "Œuf d'apparition de Sentinelle Galadhrim", + "npc_type.middle-earth.lothlorien.warrior": "Guerrier Galadhrim", + "item.middle-earth.lothlorien.warrior_spawn_egg": "Œuf d'apparition de Guerrier Galadhrim", + "npc_type.middle-earth.mordor.black_numenorean": "Númenóréen noir du Mordor", + "item.middle-earth.mordor.black_numenorean_spawn_egg": "Œuf d'apparition de Númenóréen noir du Mordor", + "npc_type.middle-earth.mordor.captain": "Capitaine du Mordor", + "item.middle-earth.mordor.captain_spawn_egg": "Œuf d'apparition de Capitaine du Mordor", + "npc_type.middle-earth.mordor.dol_guldur_scout": "Éclaireur de Dol Guldur", + "item.middle-earth.mordor.dol_guldur_scout_spawn_egg": "Œuf d'apparition d'Éclaireur de Dol Guldur", + "npc_type.middle-earth.mordor.dol_guldur_warrior": "Guerrier de Dol Guldur", + "item.middle-earth.mordor.dol_guldur_warrior_spawn_egg": "Œuf d'apparition de Guerrier de Dol Guldur", + "npc_type.middle-earth.mordor.militia": "Milicien du Mordor", + "item.middle-earth.mordor.militia_spawn_egg": "Œuf d'apparition de Milicien du Mordor", + "npc_type.middle-earth.mordor.scout": "Éclaireur du Mordor", + "item.middle-earth.mordor.scout_spawn_egg": "Œuf d'apparition d'Éclaireur du Mordor", + "npc_type.middle-earth.mordor.snaga": "Snaga du Mordor", + "item.middle-earth.mordor.snaga_spawn_egg": "Œuf d'apparition de Snaga du Mordor", + "npc_type.middle-earth.mordor.veteran": "Vétéran du Mordor", + "item.middle-earth.mordor.veteran_spawn_egg": "Œuf d'apparition de Vétéran du Mordor", + "npc_type.middle-earth.mordor.warrior": "Guerrier du Mordor", + "item.middle-earth.mordor.warrior_spawn_egg": "Œuf d'apparition de Guerrier du Mordor", + "npc_type.middle-earth.moria.chief": "Chef de la Moria", + "item.middle-earth.moria.chief_spawn_egg": "Œuf d'apparition de Chef de la Moria", + "npc_type.middle-earth.moria.goblin": "Gobelin de la Moria", + "item.middle-earth.moria.goblin_spawn_egg": "Œuf d'apparition de Gobelin de la Moria", + "npc_type.middle-earth.moria.militia": "Milicien de la Moria", + "item.middle-earth.moria.militia_spawn_egg": "Œuf d'apparition de Milicien de la Moria", + "npc_type.middle-earth.moria.rider": "Cavalier de la Moria", + "item.middle-earth.moria.rider_spawn_egg": "Œuf d'apparition de Cavalier de la Moria", + "npc_type.middle-earth.moria.scout": "Éclaireur de la Moria", + "item.middle-earth.moria.scout_spawn_egg": "Œuf d'apparition d'Éclaireur de la Moria", + "npc_type.middle-earth.moria.veteran": "Vétéran de la Moria", + "item.middle-earth.moria.veteran_spawn_egg": "Œuf d'apparition de Vétéran de la Moria", + "npc_type.middle-earth.moria.warrior": "Guerrier de la Moria", + "item.middle-earth.moria.warrior_spawn_egg": "Œuf d'apparition de Guerrier de la Moria", + "npc_type.middle-earth.rohan.eorling_marshal": "Maréchal Eorling", + "item.middle-earth.rohan.eorling_marshal_spawn_egg": "Œuf d'apparition de Maréchal Eorling", + "npc_type.middle-earth.rohan.horse_lord": "Seigneur des chevaux", + "item.middle-earth.rohan.horse_lord_spawn_egg": "Œuf d'apparition de Seigneur des chevaux", + "npc_type.middle-earth.rohan.knight": "Chevalier Rohirrim", + "item.middle-earth.rohan.knight_spawn_egg": "Œuf d'apparition de Chevalier Rohirrim", + "npc_type.middle-earth.rohan.militia": "Milicien Rohirrim", + "item.middle-earth.rohan.militia_spawn_egg": "Œuf d'apparition de Milicien Rohirrim", + "npc_type.middle-earth.rohan.peasant": "Paysan Rohirrim", + "item.middle-earth.rohan.peasant_spawn_egg": "Œuf d'apparition de Paysan Rohirrim", + "npc_type.middle-earth.rohan.royal_guard": "Garde royal Rohirrim", + "item.middle-earth.rohan.royal_guard_spawn_egg": "Œuf d'apparition de Garde royal Rohirrim", + "npc_type.middle-earth.rohan.soldier": "Soldat Rohirrim", + "item.middle-earth.rohan.soldier_spawn_egg": "Œuf d'apparition de Soldat Rohirrim", + "npc_type.middle-earth.shire.militia": "Milicien de la Comté", + "item.middle-earth.shire.militia_spawn_egg": "Œuf d'apparition de Milicien de la Comté", + "npc_type.middle-earth.shire.peasant": "Paysan de la Comté", + "item.middle-earth.shire.peasant_spawn_egg": "Œuf d'apparition de Paysan de la Comté", + "npc_type.middle-earth.shire.shirriff": "Shirriff de la Comté", + "item.middle-earth.shire.shirriff_spawn_egg": "Œuf d'apparition de Shirriff de la Comté", + "npc_type.middle-earth.wild_goblins.brute": "Brute des Gobelins sauvages", + "item.middle-earth.wild_goblins.brute_spawn_egg": "Œuf d'apparition de Brute des Gobelins sauvages", + "npc_type.middle-earth.wild_goblins.gatherer": "Ramasseur des Gobelins sauvages", + "item.middle-earth.wild_goblins.gatherer_spawn_egg": "Œuf d'apparition de Ramasseur des Gobelins sauvages", + "npc_type.middle-earth.wild_goblins.rider": "Cavalier des Gobelins sauvages", + "item.middle-earth.wild_goblins.rider_spawn_egg": "Œuf d'apparition de Cavalier des Gobelins sauvages", + "npc_type.middle-earth.wild_goblins.scout": "Éclaireur des Gobelins sauvages", + "item.middle-earth.wild_goblins.scout_spawn_egg": "Œuf d'apparition d'Éclaireur des Gobelins sauvages", + "npc_type.middle-earth.wild_goblins.warrior": "Guerrier des Gobelins sauvages", + "item.middle-earth.wild_goblins.warrior_spawn_egg": "Œuf d'apparition de Guerrier des Gobelins sauvages", + "npc_type.middle-earth.woodland_realm.artisan": "Artisan du Royaume Sylvestre", + "item.middle-earth.woodland_realm.artisan_spawn_egg": "Œuf d'apparition d'Artisan du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.commander": "Commandant du Royaume Sylvestre", + "item.middle-earth.woodland_realm.commander_spawn_egg": "Œuf d'apparition de Commandant du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.elven_kings_guard": "Garde du Roi elfique du Royaume Sylvestre", + "item.middle-earth.woodland_realm.elven_kings_guard_spawn_egg": "Œuf d'apparition de Garde du Roi elfique du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.hunter": "Chasseur du Royaume Sylvestre", + "item.middle-earth.woodland_realm.hunter_spawn_egg": "Œuf d'apparition de Chasseur du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.lancer": "Lancier du Royaume Sylvestre", + "item.middle-earth.woodland_realm.lancer_spawn_egg": "Œuf d'apparition de Lancier du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.nightshade": "Ombre-de-la-nuit du Royaume Sylvestre", + "item.middle-earth.woodland_realm.nightshade_spawn_egg": "Œuf d'apparition d'Ombre-de-la-nuit du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.ranger": "Rôdeur du Royaume Sylvestre", + "item.middle-earth.woodland_realm.ranger_spawn_egg": "Œuf d'apparition de Rôdeur du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.sentinel": "Sentinelle du Royaume Sylvestre", + "item.middle-earth.woodland_realm.sentinel_spawn_egg": "Œuf d'apparition de Sentinelle du Royaume Sylvestre", + "npc_type.middle-earth.woodland_realm.warden_of_the_glade": "Gardien de la Clairière", + "item.middle-earth.woodland_realm.warden_of_the_glade_spawn_egg": "Œuf d'apparition de Gardien de la Clairière", + "npc_type.middle-earth.woodland_realm.warrior": "Guerrier du Royaume Sylvestre", + "item.middle-earth.woodland_realm.warrior_spawn_egg": "Œuf d'apparition de Guerrier du Royaume Sylvestre", + "npc_data.middle-earth.npc": "PNJ", + "item.middle-earth.npc_spawn_egg": "Œuf d'apparition de PNJ", + "item.middle-earth.npc_random_spawn_egg": "Œuf d'apparition de PNJ aléatoire", + "block.middle-earth.aged_wood": "Bois vieilli", + "item.middle-earth.aged_wood": "Bois vieilli", + "block.middle-earth.aged_wood_slab": "Dalle en bois vieilli", + "item.middle-earth.aged_wood_slab": "Dalle en bois vieilli", + "block.middle-earth.aged_wood_stairs": "Escalier en bois vieilli", + "item.middle-earth.aged_wood_stairs": "Escalier en bois vieilli", + "block.middle-earth.aged_wood_vertical_slab": "Dalle verticale en bois vieilli", + "item.middle-earth.aged_wood_vertical_slab": "Dalle verticale en bois vieilli", + "block.middle-earth.aged_wood_wall": "Muret en bois vieilli", + "item.middle-earth.aged_wood_wall": "Muret en bois vieilli", + "block.middle-earth.aged_wood_beam": "Poutre en bois vieilli", + "item.middle-earth.aged_wood_beam": "Poutre en bois vieilli", + "block.middle-earth.aged_wood_beam_slab": "Dalle en poutre en bois vieilli", + "item.middle-earth.aged_wood_beam_slab": "Dalle en poutre en bois vieilli", + "block.middle-earth.aged_wood_beam_stairs": "Escalier en poutre en bois vieilli", + "item.middle-earth.aged_wood_beam_stairs": "Escalier en poutre en bois vieilli", + "block.middle-earth.aged_wood_beam_vertical_slab": "Dalle verticale en poutre en bois vieilli", + "item.middle-earth.aged_wood_beam_vertical_slab": "Dalle verticale en poutre en bois vieilli", + "block.middle-earth.aged_wood_beam_wall": "Muret en poutre en bois vieilli", + "item.middle-earth.aged_wood_beam_wall": "Muret en poutre en bois vieilli", + "block.middle-earth.aged_wood_boards": "Planches en bois vieilli", + "item.middle-earth.aged_wood_boards": "Planches en bois vieilli", + "block.middle-earth.aged_wood_boards_slab": "Dalle en planches en bois vieilli", + "item.middle-earth.aged_wood_boards_slab": "Dalle en planches en bois vieilli", + "block.middle-earth.aged_wood_boards_stairs": "Escalier en planches en bois vieilli", + "item.middle-earth.aged_wood_boards_stairs": "Escalier en planches en bois vieilli", + "block.middle-earth.aged_wood_boards_vertical_slab": "Dalle verticale en planches en bois vieilli", + "item.middle-earth.aged_wood_boards_vertical_slab": "Dalle verticale en planches en bois vieilli", + "block.middle-earth.aged_wood_boards_wall": "Muret en planches en bois vieilli", + "item.middle-earth.aged_wood_boards_wall": "Muret en planches en bois vieilli", + "block.middle-earth.aged_wood_carved_beam": "Poutre sculptée en bois vieilli", + "item.middle-earth.aged_wood_carved_beam": "Poutre sculptée en bois vieilli", + "block.middle-earth.aged_wood_carved_beam_slab": "Dalle en poutre sculptée en bois vieilli", + "item.middle-earth.aged_wood_carved_beam_slab": "Dalle en poutre sculptée en bois vieilli", + "block.middle-earth.aged_wood_carved_beam_stairs": "Escalier en poutre sculptée en bois vieilli", + "item.middle-earth.aged_wood_carved_beam_stairs": "Escalier en poutre sculptée en bois vieilli", + "block.middle-earth.aged_wood_carved_beam_vertical_slab": "Dalle verticale en poutre sculptée en bois vieilli", + "item.middle-earth.aged_wood_carved_beam_vertical_slab": "Dalle verticale en poutre sculptée en bois vieilli", + "block.middle-earth.aged_wood_carved_beam_wall": "Muret en poutre sculptée en bois vieilli", + "item.middle-earth.aged_wood_carved_beam_wall": "Muret en poutre sculptée en bois vieilli", + "block.middle-earth.aged_wood_carving": "Sculpture en bois vieilli", + "item.middle-earth.aged_wood_carving": "Sculpture en bois vieilli", + "block.middle-earth.aged_wood_carving_slab": "Dalle en sculpture en bois vieilli", + "item.middle-earth.aged_wood_carving_slab": "Dalle en sculpture en bois vieilli", + "block.middle-earth.aged_wood_carving_stairs": "Escalier en sculpture en bois vieilli", + "item.middle-earth.aged_wood_carving_stairs": "Escalier en sculpture en bois vieilli", + "block.middle-earth.aged_wood_carving_vertical_slab": "Dalle verticale en sculpture en bois vieilli", + "item.middle-earth.aged_wood_carving_vertical_slab": "Dalle verticale en sculpture en bois vieilli", + "block.middle-earth.aged_wood_carving_wall": "Muret en sculpture en bois vieilli", + "item.middle-earth.aged_wood_carving_wall": "Muret en sculpture en bois vieilli", + "block.middle-earth.aged_wood_fish_carving": "Sculpture de poisson en bois vieilli", + "item.middle-earth.aged_wood_fish_carving": "Sculpture de poisson en bois vieilli", + "block.middle-earth.aged_wood_fish_carving_slab": "Dalle en sculpture de poisson en bois vieilli", + "item.middle-earth.aged_wood_fish_carving_slab": "Dalle en sculpture de poisson en bois vieilli", + "block.middle-earth.aged_wood_fish_carving_stairs": "Escalier en sculpture de poisson en bois vieilli", + "item.middle-earth.aged_wood_fish_carving_stairs": "Escalier en sculpture de poisson en bois vieilli", + "block.middle-earth.aged_wood_fish_carving_vertical_slab": "Dalle verticale en sculpture de poisson en bois vieilli", + "item.middle-earth.aged_wood_fish_carving_vertical_slab": "Dalle verticale en sculpture de poisson en bois vieilli", + "block.middle-earth.aged_wood_fish_carving_wall": "Muret en sculpture de poisson en bois vieilli", + "item.middle-earth.aged_wood_fish_carving_wall": "Muret en sculpture de poisson en bois vieilli", + "block.middle-earth.aged_wood_gilded_carved_pillar": "Pilier sculpté doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_carved_pillar": "Pilier sculpté doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_carved_pillar_slab": "Dalle en pilier sculpté doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_carved_pillar_slab": "Dalle en pilier sculpté doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_carved_pillar_stairs": "Escalier en pilier sculpté doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_carved_pillar_stairs": "Escalier en pilier sculpté doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_carved_pillar_vertical_slab": "Dalle verticale en pilier sculpté doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_carved_pillar_vertical_slab": "Dalle verticale en pilier sculpté doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_carved_pillar_wall": "Muret en pilier sculpté doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_carved_pillar_wall": "Muret en pilier sculpté doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_carving": "Sculpture dorée en bois vieilli", + "item.middle-earth.aged_wood_gilded_carving": "Sculpture dorée en bois vieilli", + "block.middle-earth.aged_wood_gilded_carving_slab": "Dalle en sculpture dorée en bois vieilli", + "item.middle-earth.aged_wood_gilded_carving_slab": "Dalle en sculpture dorée en bois vieilli", + "block.middle-earth.aged_wood_gilded_carving_stairs": "Escalier en sculpture dorée en bois vieilli", + "item.middle-earth.aged_wood_gilded_carving_stairs": "Escalier en sculpture dorée en bois vieilli", + "block.middle-earth.aged_wood_gilded_carving_vertical_slab": "Dalle verticale en sculpture dorée en bois vieilli", + "item.middle-earth.aged_wood_gilded_carving_vertical_slab": "Dalle verticale en sculpture dorée en bois vieilli", + "block.middle-earth.aged_wood_gilded_carving_wall": "Muret en sculpture dorée en bois vieilli", + "item.middle-earth.aged_wood_gilded_carving_wall": "Muret en sculpture dorée en bois vieilli", + "block.middle-earth.aged_wood_gilded_horses": "Chevaux dorés en bois vieilli", + "item.middle-earth.aged_wood_gilded_horses": "Chevaux dorés en bois vieilli", + "block.middle-earth.aged_wood_gilded_horses_slab": "Dalle en chevaux dorés en bois vieilli", + "item.middle-earth.aged_wood_gilded_horses_slab": "Dalle en chevaux dorés en bois vieilli", + "block.middle-earth.aged_wood_gilded_horses_stairs": "Escalier en chevaux dorés en bois vieilli", + "item.middle-earth.aged_wood_gilded_horses_stairs": "Escalier en chevaux dorés en bois vieilli", + "block.middle-earth.aged_wood_gilded_horses_vertical_slab": "Dalle verticale en chevaux dorés en bois vieilli", + "item.middle-earth.aged_wood_gilded_horses_vertical_slab": "Dalle verticale en chevaux dorés en bois vieilli", + "block.middle-earth.aged_wood_gilded_horses_wall": "Muret en chevaux dorés en bois vieilli", + "item.middle-earth.aged_wood_gilded_horses_wall": "Muret en chevaux dorés en bois vieilli", + "block.middle-earth.aged_wood_gilded_trim": "Ornement doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_trim": "Ornement doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_trim_slab": "Dalle en ornement doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_trim_slab": "Dalle en ornement doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_trim_stairs": "Escalier en ornement doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_trim_stairs": "Escalier en ornement doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_trim_vertical_slab": "Dalle verticale en ornement doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_trim_vertical_slab": "Dalle verticale en ornement doré en bois vieilli", + "block.middle-earth.aged_wood_gilded_trim_wall": "Muret en ornement doré en bois vieilli", + "item.middle-earth.aged_wood_gilded_trim_wall": "Muret en ornement doré en bois vieilli", + "block.middle-earth.aged_wood_knotted_beam": "Poutre noueuse en bois vieilli", + "item.middle-earth.aged_wood_knotted_beam": "Poutre noueuse en bois vieilli", + "block.middle-earth.aged_wood_knotted_beam_slab": "Dalle en poutre noueuse en bois vieilli", + "item.middle-earth.aged_wood_knotted_beam_slab": "Dalle en poutre noueuse en bois vieilli", + "block.middle-earth.aged_wood_knotted_beam_stairs": "Escalier en poutre noueuse en bois vieilli", + "item.middle-earth.aged_wood_knotted_beam_stairs": "Escalier en poutre noueuse en bois vieilli", + "block.middle-earth.aged_wood_knotted_beam_vertical_slab": "Dalle verticale en poutre noueuse en bois vieilli", + "item.middle-earth.aged_wood_knotted_beam_vertical_slab": "Dalle verticale en poutre noueuse en bois vieilli", + "block.middle-earth.aged_wood_knotted_beam_wall": "Muret en poutre noueuse en bois vieilli", + "item.middle-earth.aged_wood_knotted_beam_wall": "Muret en poutre noueuse en bois vieilli", + "block.middle-earth.aged_wood_panels": "Panneaux en bois vieilli", + "item.middle-earth.aged_wood_panels": "Panneaux en bois vieilli", + "block.middle-earth.aged_wood_panels_slab": "Dalle en panneaux en bois vieilli", + "item.middle-earth.aged_wood_panels_slab": "Dalle en panneaux en bois vieilli", + "block.middle-earth.aged_wood_panels_stairs": "Escalier en panneaux en bois vieilli", + "item.middle-earth.aged_wood_panels_stairs": "Escalier en panneaux en bois vieilli", + "block.middle-earth.aged_wood_panels_vertical_slab": "Dalle verticale en panneaux en bois vieilli", + "item.middle-earth.aged_wood_panels_vertical_slab": "Dalle verticale en panneaux en bois vieilli", + "block.middle-earth.aged_wood_panels_wall": "Muret en panneaux en bois vieilli", + "item.middle-earth.aged_wood_panels_wall": "Muret en panneaux en bois vieilli", + "block.middle-earth.aged_wood_planks": "Planches en bois vieilli", + "item.middle-earth.aged_wood_planks": "Planches en bois vieilli", + "block.middle-earth.aged_wood_planks_slab": "Dalle en planches en bois vieilli", + "item.middle-earth.aged_wood_planks_slab": "Dalle en planches en bois vieilli", + "block.middle-earth.aged_wood_planks_stairs": "Escalier en planches en bois vieilli", + "item.middle-earth.aged_wood_planks_stairs": "Escalier en planches en bois vieilli", + "block.middle-earth.aged_wood_planks_vertical_slab": "Dalle verticale en planches en bois vieilli", + "item.middle-earth.aged_wood_planks_vertical_slab": "Dalle verticale en planches en bois vieilli", + "block.middle-earth.aged_wood_planks_wall": "Muret en planches en bois vieilli", + "item.middle-earth.aged_wood_planks_wall": "Muret en planches en bois vieilli", + "block.middle-earth.aged_wood_reddish_beam": "Poutre rougeâtre en bois vieilli", + "item.middle-earth.aged_wood_reddish_beam": "Poutre rougeâtre en bois vieilli", + "block.middle-earth.aged_wood_reddish_beam_slab": "Dalle en poutre rougeâtre en bois vieilli", + "item.middle-earth.aged_wood_reddish_beam_slab": "Dalle en poutre rougeâtre en bois vieilli", + "block.middle-earth.aged_wood_reddish_beam_stairs": "Escalier en poutre rougeâtre en bois vieilli", + "item.middle-earth.aged_wood_reddish_beam_stairs": "Escalier en poutre rougeâtre en bois vieilli", + "block.middle-earth.aged_wood_reddish_beam_vertical_slab": "Dalle verticale en poutre rougeâtre en bois vieilli", + "item.middle-earth.aged_wood_reddish_beam_vertical_slab": "Dalle verticale en poutre rougeâtre en bois vieilli", + "block.middle-earth.aged_wood_reddish_beam_wall": "Muret en poutre rougeâtre en bois vieilli", + "item.middle-earth.aged_wood_reddish_beam_wall": "Muret en poutre rougeâtre en bois vieilli", + "block.middle-earth.aged_wood_shingles": "Bardeaux en bois vieilli", + "item.middle-earth.aged_wood_shingles": "Bardeaux en bois vieilli", + "block.middle-earth.aged_wood_shingles_slab": "Dalle en bardeaux en bois vieilli", + "item.middle-earth.aged_wood_shingles_slab": "Dalle en bardeaux en bois vieilli", + "block.middle-earth.aged_wood_shingles_stairs": "Escalier en bardeaux en bois vieilli", + "item.middle-earth.aged_wood_shingles_stairs": "Escalier en bardeaux en bois vieilli", + "block.middle-earth.aged_wood_shingles_vertical_slab": "Dalle verticale en bardeaux en bois vieilli", + "item.middle-earth.aged_wood_shingles_vertical_slab": "Dalle verticale en bardeaux en bois vieilli", + "block.middle-earth.aged_wood_shingles_wall": "Muret en bardeaux en bois vieilli", + "item.middle-earth.aged_wood_shingles_wall": "Muret en bardeaux en bois vieilli", + "block.middle-earth.aged_wood_door": "Porte en bois vieilli", + "item.middle-earth.aged_wood_door": "Porte en bois vieilli", + "block.middle-earth.aged_wood_trapdoor": "Trappe en bois vieilli", + "item.middle-earth.aged_wood_trapdoor": "Trappe en bois vieilli", + "block.middle-earth.aged_wood_window": "Fenêtre en bois vieilli", + "item.middle-earth.aged_wood_window": "Fenêtre en bois vieilli", + "block.middle-earth.aged_wood_window_pane": "Fenêtre plate en bois vieilli", + "item.middle-earth.aged_wood_window_pane": "Fenêtre plate en bois vieilli", + "block.middle-earth.banner.antlers.black": "Ramure noire", + "block.middle-earth.banner.antlers.blue": "Ramure bleue", + "block.middle-earth.banner.antlers.brown": "Ramure marron", + "block.middle-earth.banner.antlers.cyan": "Ramure cyan", + "block.middle-earth.banner.antlers.gray": "Ramure grise", + "block.middle-earth.banner.antlers.green": "Ramure verte", + "block.middle-earth.banner.antlers.light_blue": "Ramure bleu clair", + "block.middle-earth.banner.antlers.light_gray": "Ramure gris clair", + "block.middle-earth.banner.antlers.lime": "Ramure vert clair", + "block.middle-earth.banner.antlers.magenta": "Ramure magenta", + "block.middle-earth.banner.antlers.orange": "Ramure orange", + "block.middle-earth.banner.antlers.pink": "Ramure rose", + "block.middle-earth.banner.antlers.purple": "Ramure violette", + "block.middle-earth.banner.antlers.red": "Ramure rouge", + "block.middle-earth.banner.antlers.white": "Ramure blanche", + "block.middle-earth.banner.antlers.yellow": "Ramure jaune", + "block.middle-earth.banner.antlers_top.black": "Haut de ramure noire", + "block.middle-earth.banner.antlers_top.blue": "Haut de ramure bleue", + "block.middle-earth.banner.antlers_top.brown": "Haut de ramure marron", + "block.middle-earth.banner.antlers_top.cyan": "Haut de ramure cyan", + "block.middle-earth.banner.antlers_top.gray": "Haut de ramure grise", + "block.middle-earth.banner.antlers_top.green": "Haut de ramure verte", + "block.middle-earth.banner.antlers_top.light_blue": "Haut de ramure bleu clair", + "block.middle-earth.banner.antlers_top.light_gray": "Haut de ramure gris clair", + "block.middle-earth.banner.antlers_top.lime": "Haut de ramure vert clair", + "block.middle-earth.banner.antlers_top.magenta": "Haut de ramure magenta", + "block.middle-earth.banner.antlers_top.orange": "Haut de ramure orange", + "block.middle-earth.banner.antlers_top.pink": "Haut de ramure rose", + "block.middle-earth.banner.antlers_top.purple": "Haut de ramure violette", + "block.middle-earth.banner.antlers_top.red": "Haut de ramure rouge", + "block.middle-earth.banner.antlers_top.white": "Haut de ramure blanche", + "block.middle-earth.banner.antlers_top.yellow": "Haut de ramure jaune", + "block.middle-earth.banner.elk.black": "Élan noir", + "block.middle-earth.banner.elk.blue": "Élan bleu", + "block.middle-earth.banner.elk.brown": "Élan marron", + "block.middle-earth.banner.elk.cyan": "Élan cyan", + "block.middle-earth.banner.elk.gray": "Élan gris", + "block.middle-earth.banner.elk.green": "Élan vert", + "block.middle-earth.banner.elk.light_blue": "Élan bleu clair", + "block.middle-earth.banner.elk.light_gray": "Élan gris clair", + "block.middle-earth.banner.elk.lime": "Élan vert clair", + "block.middle-earth.banner.elk.magenta": "Élan magenta", + "block.middle-earth.banner.elk.orange": "Élan orange", + "block.middle-earth.banner.elk.pink": "Élan rose", + "block.middle-earth.banner.elk.purple": "Élan violet", + "block.middle-earth.banner.elk.red": "Élan rouge", + "block.middle-earth.banner.elk.white": "Élan blanc", + "block.middle-earth.banner.elk.yellow": "Élan jaune", + "block.middle-earth.banner.elk_antlers.black": "Ramure d'élan noire", + "block.middle-earth.banner.elk_antlers.blue": "Ramure d'élan bleue", + "block.middle-earth.banner.elk_antlers.brown": "Ramure d'élan marron", + "block.middle-earth.banner.elk_antlers.cyan": "Ramure d'élan cyan", + "block.middle-earth.banner.elk_antlers.gray": "Ramure d'élan grise", + "block.middle-earth.banner.elk_antlers.green": "Ramure d'élan verte", + "block.middle-earth.banner.elk_antlers.light_blue": "Ramure d'élan bleu clair", + "block.middle-earth.banner.elk_antlers.light_gray": "Ramure d'élan gris clair", + "block.middle-earth.banner.elk_antlers.lime": "Ramure d'élan vert clair", + "block.middle-earth.banner.elk_antlers.magenta": "Ramure d'élan magenta", + "block.middle-earth.banner.elk_antlers.orange": "Ramure d'élan orange", + "block.middle-earth.banner.elk_antlers.pink": "Ramure d'élan rose", + "block.middle-earth.banner.elk_antlers.purple": "Ramure d'élan violette", + "block.middle-earth.banner.elk_antlers.red": "Ramure d'élan rouge", + "block.middle-earth.banner.elk_antlers.white": "Ramure d'élan blanche", + "block.middle-earth.banner.elk_antlers.yellow": "Ramure d'élan jaune", + "block.middle-earth.banner.elk_shed.black": "Ramure tombée d'élan noire", + "block.middle-earth.banner.elk_shed.blue": "Ramure tombée d'élan bleue", + "block.middle-earth.banner.elk_shed.brown": "Ramure tombée d'élan marron", + "block.middle-earth.banner.elk_shed.cyan": "Ramure tombée d'élan cyan", + "block.middle-earth.banner.elk_shed.gray": "Ramure tombée d'élan grise", + "block.middle-earth.banner.elk_shed.green": "Ramure tombée d'élan verte", + "block.middle-earth.banner.elk_shed.light_blue": "Ramure tombée d'élan bleu clair", + "block.middle-earth.banner.elk_shed.light_gray": "Ramure tombée d'élan gris clair", + "block.middle-earth.banner.elk_shed.lime": "Ramure tombée d'élan vert clair", + "block.middle-earth.banner.elk_shed.magenta": "Ramure tombée d'élan magenta", + "block.middle-earth.banner.elk_shed.orange": "Ramure tombée d'élan orange", + "block.middle-earth.banner.elk_shed.pink": "Ramure tombée d'élan rose", + "block.middle-earth.banner.elk_shed.purple": "Ramure tombée d'élan violette", + "block.middle-earth.banner.elk_shed.red": "Ramure tombée d'élan rouge", + "block.middle-earth.banner.elk_shed.white": "Ramure tombée d'élan blanche", + "block.middle-earth.banner.elk_shed.yellow": "Ramure tombée d'élan jaune", + "block.middle-earth.banner.goblin_skull.black": "Crâne de gobelin noir", + "block.middle-earth.banner.goblin_skull.blue": "Crâne de gobelin bleu", + "block.middle-earth.banner.goblin_skull.brown": "Crâne de gobelin marron", + "block.middle-earth.banner.goblin_skull.cyan": "Crâne de gobelin cyan", + "block.middle-earth.banner.goblin_skull.gray": "Crâne de gobelin gris", + "block.middle-earth.banner.goblin_skull.green": "Crâne de gobelin vert", + "block.middle-earth.banner.goblin_skull.light_blue": "Crâne de gobelin bleu clair", + "block.middle-earth.banner.goblin_skull.light_gray": "Crâne de gobelin gris clair", + "block.middle-earth.banner.goblin_skull.lime": "Crâne de gobelin vert clair", + "block.middle-earth.banner.goblin_skull.magenta": "Crâne de gobelin magenta", + "block.middle-earth.banner.goblin_skull.orange": "Crâne de gobelin orange", + "block.middle-earth.banner.goblin_skull.pink": "Crâne de gobelin rose", + "block.middle-earth.banner.goblin_skull.purple": "Crâne de gobelin violet", + "block.middle-earth.banner.goblin_skull.red": "Crâne de gobelin rouge", + "block.middle-earth.banner.goblin_skull.white": "Crâne de gobelin blanc", + "block.middle-earth.banner.goblin_skull.yellow": "Crâne de gobelin jaune", + "block.middle-earth.banner.oak_leaf.black": "Feuille de chêne noire", + "block.middle-earth.banner.oak_leaf.blue": "Feuille de chêne bleue", + "block.middle-earth.banner.oak_leaf.brown": "Feuille de chêne marron", + "block.middle-earth.banner.oak_leaf.cyan": "Feuille de chêne cyan", + "block.middle-earth.banner.oak_leaf.gray": "Feuille de chêne grise", + "block.middle-earth.banner.oak_leaf.green": "Feuille de chêne verte", + "block.middle-earth.banner.oak_leaf.light_blue": "Feuille de chêne bleu clair", + "block.middle-earth.banner.oak_leaf.light_gray": "Feuille de chêne gris clair", + "block.middle-earth.banner.oak_leaf.lime": "Feuille de chêne vert clair", + "block.middle-earth.banner.oak_leaf.magenta": "Feuille de chêne magenta", + "block.middle-earth.banner.oak_leaf.orange": "Feuille de chêne orange", + "block.middle-earth.banner.oak_leaf.pink": "Feuille de chêne rose", + "block.middle-earth.banner.oak_leaf.purple": "Feuille de chêne violette", + "block.middle-earth.banner.oak_leaf.red": "Feuille de chêne rouge", + "block.middle-earth.banner.oak_leaf.white": "Feuille de chêne blanche", + "block.middle-earth.banner.oak_leaf.yellow": "Feuille de chêne jaune", + "block.middle-earth.banner.screeching_skull.black": "Crâne hurlant noir", + "block.middle-earth.banner.screeching_skull.blue": "Crâne hurlant bleu", + "block.middle-earth.banner.screeching_skull.brown": "Crâne hurlant marron", + "block.middle-earth.banner.screeching_skull.cyan": "Crâne hurlant cyan", + "block.middle-earth.banner.screeching_skull.gray": "Crâne hurlant gris", + "block.middle-earth.banner.screeching_skull.green": "Crâne hurlant vert", + "block.middle-earth.banner.screeching_skull.light_blue": "Crâne hurlant bleu clair", + "block.middle-earth.banner.screeching_skull.light_gray": "Crâne hurlant gris clair", + "block.middle-earth.banner.screeching_skull.lime": "Crâne hurlant vert clair", + "block.middle-earth.banner.screeching_skull.magenta": "Crâne hurlant magenta", + "block.middle-earth.banner.screeching_skull.orange": "Crâne hurlant orange", + "block.middle-earth.banner.screeching_skull.pink": "Crâne hurlant rose", + "block.middle-earth.banner.screeching_skull.purple": "Crâne hurlant violet", + "block.middle-earth.banner.screeching_skull.red": "Crâne hurlant rouge", + "block.middle-earth.banner.screeching_skull.white": "Crâne hurlant blanc", + "block.middle-earth.banner.screeching_skull.yellow": "Crâne hurlant jaune", + "block.middle-earth.banner.stag.black": "Cerf noir", + "block.middle-earth.banner.stag.blue": "Cerf bleu", + "block.middle-earth.banner.stag.brown": "Cerf marron", + "block.middle-earth.banner.stag.cyan": "Cerf cyan", + "block.middle-earth.banner.stag.gray": "Cerf gris", + "block.middle-earth.banner.stag.green": "Cerf vert", + "block.middle-earth.banner.stag.light_blue": "Cerf bleu clair", + "block.middle-earth.banner.stag.light_gray": "Cerf gris clair", + "block.middle-earth.banner.stag.lime": "Cerf vert clair", + "block.middle-earth.banner.stag.magenta": "Cerf magenta", + "block.middle-earth.banner.stag.orange": "Cerf orange", + "block.middle-earth.banner.stag.pink": "Cerf rose", + "block.middle-earth.banner.stag.purple": "Cerf violet", + "block.middle-earth.banner.stag.red": "Cerf rouge", + "block.middle-earth.banner.stag.white": "Cerf blanc", + "block.middle-earth.banner.stag.yellow": "Cerf jaune", + "block.middle-earth.banner.stag_antlers.black": "Ramure de cerf noire", + "block.middle-earth.banner.stag_antlers.blue": "Ramure de cerf bleue", + "block.middle-earth.banner.stag_antlers.brown": "Ramure de cerf marron", + "block.middle-earth.banner.stag_antlers.cyan": "Ramure de cerf cyan", + "block.middle-earth.banner.stag_antlers.gray": "Ramure de cerf grise", + "block.middle-earth.banner.stag_antlers.green": "Ramure de cerf verte", + "block.middle-earth.banner.stag_antlers.light_blue": "Ramure de cerf bleu clair", + "block.middle-earth.banner.stag_antlers.light_gray": "Ramure de cerf gris clair", + "block.middle-earth.banner.stag_antlers.lime": "Ramure de cerf vert clair", + "block.middle-earth.banner.stag_antlers.magenta": "Ramure de cerf magenta", + "block.middle-earth.banner.stag_antlers.orange": "Ramure de cerf orange", + "block.middle-earth.banner.stag_antlers.pink": "Ramure de cerf rose", + "block.middle-earth.banner.stag_antlers.purple": "Ramure de cerf violette", + "block.middle-earth.banner.stag_antlers.red": "Ramure de cerf rouge", + "block.middle-earth.banner.stag_antlers.white": "Ramure de cerf blanche", + "block.middle-earth.banner.stag_antlers.yellow": "Ramure de cerf jaune", + "block.middle-earth.banner.stag_shed.black": "Ramure tombée de cerf noire", + "block.middle-earth.banner.stag_shed.blue": "Ramure tombée de cerf bleue", + "block.middle-earth.banner.stag_shed.brown": "Ramure tombée de cerf marron", + "block.middle-earth.banner.stag_shed.cyan": "Ramure tombée de cerf cyan", + "block.middle-earth.banner.stag_shed.gray": "Ramure tombée de cerf grise", + "block.middle-earth.banner.stag_shed.green": "Ramure tombée de cerf verte", + "block.middle-earth.banner.stag_shed.light_blue": "Ramure tombée de cerf bleu clair", + "block.middle-earth.banner.stag_shed.light_gray": "Ramure tombée de cerf gris clair", + "block.middle-earth.banner.stag_shed.lime": "Ramure tombée de cerf vert clair", + "block.middle-earth.banner.stag_shed.magenta": "Ramure tombée de cerf magenta", + "block.middle-earth.banner.stag_shed.orange": "Ramure tombée de cerf orange", + "block.middle-earth.banner.stag_shed.pink": "Ramure tombée de cerf rose", + "block.middle-earth.banner.stag_shed.purple": "Ramure tombée de cerf violette", + "block.middle-earth.banner.stag_shed.red": "Ramure tombée de cerf rouge", + "block.middle-earth.banner.stag_shed.white": "Ramure tombée de cerf blanche", + "block.middle-earth.banner.stag_shed.yellow": "Ramure tombée de cerf jaune", + "item.middle-earth.antlers_banner_pattern": "Motif de bannière à la ramure", + "item.middle-earth.antlers.desc": "Bois de cerf", + "item.middle-earth.goblin_skull_banner_pattern": "Motif de bannière au crâne de gobelin", + "item.middle-earth.goblin_skull_banner_pattern.desc": "Un crâne de gobelin", + "item.middle-earth.oak_leaf_banner_pattern": "Motif de bannière à la feuille de chêne", + "item.middle-earth.oak_leaf.desc": "Une feuille de chêne", + "item.middle-earth.screeching_skull_banner_pattern": "Motif de bannière au crâne hurlant", + "item.middle-earth.spider_banner_pattern": "Motif de bannière à l'araignée", + "item.middle-earth.spider_banner_pattern.desc": "Une araignée", + "item.middle-earth.great_horn_banner_pattern": "Motif de bannière au grand cor", + "item.middle-earth.great_horn_pattern.desc": "Un grand cor", + "block.middle-earth.blue_bigleaf_hydrangea": "Hortensia à grandes feuilles bleu", + "item.middle-earth.blue_bigleaf_hydrangea": "Hortensia à grandes feuilles bleu", + "block.middle-earth.pink_bigleaf_hydrangea": "Hortensia à grandes feuilles rose", + "item.middle-earth.pink_bigleaf_hydrangea": "Hortensia à grandes feuilles rose", + "block.middle-earth.white_bigleaf_hydrangea": "Hortensia à grandes feuilles blanc", + "item.middle-earth.white_bigleaf_hydrangea": "Hortensia à grandes feuilles blanc", + "block.middle-earth.blue_fescue": "Fétuque bleue", + "item.middle-earth.blue_fescue": "Fétuque bleue", + "block.middle-earth.large_blue_fescue": "Grande fétuque bleue", + "item.middle-earth.large_blue_fescue": "Grande fétuque bleue", + "block.middle-earth.blue_gentian": "Gentiane bleue", + "item.middle-earth.blue_gentian": "Gentiane bleue", + "block.middle-earth.blue_lavender": "Lavande bleue", + "item.middle-earth.blue_lavender": "Lavande bleue", + "block.middle-earth.white_lavender": "Lavande blanche", + "item.middle-earth.white_lavender": "Lavande blanche", + "block.middle-earth.lavender": "Lavande", + "item.middle-earth.lavender": "Lavande", + "block.middle-earth.brambles_of_mordor": "Ronces du Mordor", + "item.middle-earth.brambles_of_mordor": "Ronces du Mordor", + "block.middle-earth.campion": "Silène", + "item.middle-earth.campion": "Silène", + "block.middle-earth.clovers": "Trèfles", + "item.middle-earth.clovers": "Trèfles", + "block.middle-earth.giant_butterbur": "Grand pétasite", + "item.middle-earth.giant_butterbur": "Grand pétasite", + "block.middle-earth.hobbit_sunflowers": "Tournesols Hobbit", + "item.middle-earth.hobbit_sunflowers": "Tournesols Hobbit", + "block.middle-earth.hogweed": "Berce", + "item.middle-earth.hogweed": "Berce", + "block.middle-earth.short_hogweed": "Petite berce", + "item.middle-earth.short_hogweed": "Petite berce", + "block.middle-earth.meadowgrass": "Herbe des prés", + "item.middle-earth.meadowgrass": "Herbe des prés", + "block.middle-earth.mistweed": "Herbe de brume", + "item.middle-earth.mistweed": "Herbe de brume", + "block.middle-earth.nettles": "Orties", + "item.middle-earth.nettles": "Orties", + "block.middle-earth.niphredil": "Niphredil", + "item.middle-earth.niphredil": "Niphredil", + "block.middle-earth.simbelmyne": "Simbelmynë", + "item.middle-earth.simbelmyne": "Simbelmynë", + "block.middle-earth.thistle": "Chardon", + "item.middle-earth.thistle": "Chardon", + "block.middle-earth.thorny_growth": "Pousse épineuse", + "item.middle-earth.thorny_growth": "Pousse épineuse", + "block.middle-earth.wild_wheat": "Blé sauvage", + "item.middle-earth.wild_wheat": "Blé sauvage", + "block.middle-earth.tall_wild_wheat": "Grand blé sauvage", + "item.middle-earth.tall_wild_wheat": "Grand blé sauvage", + "item.middle-earth.strawberries": "Fraises", + "item.middle-earth.maple_syrup": "Sirop d'érable", + "block.middle-earth.yellow_trollius": "Trolle jaune", + "item.middle-earth.yellow_trollius": "Trolle jaune", + "block.middle-earth.large_bush": "Grand buisson", + "item.middle-earth.large_bush": "Grand buisson", + "block.middle-earth.large_shriveled_shrub": "Grand arbuste ratatiné", + "item.middle-earth.large_shriveled_shrub": "Grand arbuste ratatiné", + "block.middle-earth.dead_heather_bush": "Buisson de bruyère morte", + "item.middle-earth.dead_heather_bush": "Buisson de bruyère morte", + "block.middle-earth.dry_heather_bush": "Buisson de bruyère sèche", + "item.middle-earth.dry_heather_bush": "Buisson de bruyère sèche", + "block.middle-earth.red_heather_bush": "Buisson de bruyère rouge", + "item.middle-earth.red_heather_bush": "Buisson de bruyère rouge", + "block.middle-earth.heather_bush": "Buisson de bruyère", + "item.middle-earth.heather_bush": "Buisson de bruyère", + "item.middle-earth.large_flowering_lily_pad": "Grand nénuphar en fleurs", + "item.middle-earth.large_lily_pad": "Grand nénuphar", + "item.middle-earth.flowering_lily_pads": "Nénuphars en fleurs", + "block.middle-earth.short_reeds": "Petits roseaux", + "item.middle-earth.short_reeds": "Petits roseaux", + "block.middle-earth.short_rushes": "Petits joncs", + "item.middle-earth.short_rushes": "Petits joncs", + "block.middle-earth.short_dead_rushes": "Petits joncs morts", + "item.middle-earth.short_dead_rushes": "Petits joncs morts", + "block.middle-earth.rushes": "Joncs", + "item.middle-earth.rushes": "Joncs", + "block.middle-earth.sparse_grass": "Herbe clairsemée", + "item.middle-earth.sparse_grass": "Herbe clairsemée", + "block.middle-earth.orange_sedum": "Orpin orange", + "item.middle-earth.orange_sedum": "Orpin orange", + "block.middle-earth.red_sedum": "Orpin rouge", + "item.middle-earth.red_sedum": "Orpin rouge", + "block.middle-earth.athelas": "Athelas", + "item.middle-earth.athelas": "Athelas", + "block.middle-earth.willow_vines": "Lianes de saule", + "item.middle-earth.willow_vines": "Lianes de saule", + "block.middle-earth.webbing": "Toile", + "item.middle-earth.webbing": "Toile", + "block.middle-earth.hanging_webs": "Toiles suspendues", + "item.middle-earth.hanging_webs": "Toiles suspendues", + "block.middle-earth.amphora": "Amphore", + "item.middle-earth.amphora": "Amphore", + "block.middle-earth.brown_amphora": "Amphore marron", + "item.middle-earth.brown_amphora": "Amphore marron", + "block.middle-earth.gray_vase": "Vase gris", + "item.middle-earth.gray_vase": "Vase gris", + "block.middle-earth.brown_fat_pot": "Pot ventru marron", + "item.middle-earth.brown_fat_pot": "Pot ventru marron", + "block.middle-earth.gray_fat_pot": "Pot ventru gris", + "item.middle-earth.gray_fat_pot": "Pot ventru gris", + "block.middle-earth.fat_pot": "Pot ventru", + "item.middle-earth.fat_pot": "Pot ventru", + "block.middle-earth.brown_jar": "Jarre marron", + "item.middle-earth.brown_jar": "Jarre marron", + "block.middle-earth.gray_jar": "Jarre grise", + "item.middle-earth.gray_jar": "Jarre grise", + "block.middle-earth.clay_jar": "Jarre en argile", + "item.middle-earth.clay_jar": "Jarre en argile", + "block.middle-earth.brown_jug": "Cruche marron", + "item.middle-earth.brown_jug": "Cruche marron", + "block.middle-earth.large_jug": "Grande cruche", + "item.middle-earth.large_jug": "Grande cruche", + "block.middle-earth.gray_pot": "Pot gris", + "item.middle-earth.gray_pot": "Pot gris", + "block.middle-earth.candle_holder": "Bougeoir", + "item.middle-earth.candle_holder": "Bougeoir", + "block.middle-earth.candlestick": "Chandelier", + "item.middle-earth.candlestick": "Chandelier", + "block.middle-earth.skull_candle": "Bougie sur crâne", + "item.middle-earth.skull_candle": "Bougie sur crâne", + "block.middle-earth.ceramic_lamp": "Lampe en céramique", + "item.middle-earth.ceramic_lamp": "Lampe en céramique", + "block.middle-earth.ceramic_plate": "Assiette en céramique", + "item.middle-earth.ceramic_plate": "Assiette en céramique", + "block.middle-earth.silver_plate": "Assiette en argent", + "item.middle-earth.silver_plate": "Assiette en argent", + "item.middle-earth.sack": "Sac", + "block.middle-earth.paper_sheet": "Feuille de papier", + "item.middle-earth.paper_sheet": "Feuille de papier", + "item.middle-earth.player_book": "Livre du joueur", + "item.middle-earth.layered_cake": "Gâteau à étages", + "block.middle-earth.pot_of_gold": "Marmite d'or", + "item.middle-earth.pot_of_gold": "Marmite d'or", + "block.middle-earth.golden_chalice": "Calice doré", + "item.middle-earth.golden_chalice": "Calice doré", + "block.middle-earth.chiseled_dolomite_bookshelf": "Étagère à livres en dolomite sculptée", + "item.middle-earth.chiseled_dolomite_bookshelf": "Étagère à livres en dolomite sculptée", + "block.middle-earth.inscription_table": "Table de gravure", + "item.middle-earth.inscription_table": "Table de gravure", + "item.middle-earth.reinforced_barrel": "Tonneau renforcé", + "item.middle-earth.reinforced_scaffolding": "Échafaudage renforcé", + "item.middle-earth.watering_can": "Arrosoir", + "item.middle-earth.tapper": "Entailleur", + "block.middle-earth.bronze_bars": "Barreaux en bronze", + "item.middle-earth.bronze_bars": "Barreaux en bronze", + "block.middle-earth.bronze_door": "Porte en bronze", + "item.middle-earth.bronze_door": "Porte en bronze", + "block.middle-earth.bronze_trapdoor": "Trappe en bronze", + "item.middle-earth.bronze_trapdoor": "Trappe en bronze", + "item.middle-earth.bronze_smithing_hammer": "Marteau de forge en bronze", + "block.middle-earth.burzum_bars": "Barreaux Uruk", + "item.middle-earth.burzum_bars": "Barreaux Uruk", + "block.middle-earth.burzum_spikes": "Pointes Uruk", + "item.middle-earth.burzum_spikes": "Pointes Uruk", + "block.middle-earth.crude_bars": "Barreaux grossiers", + "item.middle-earth.crude_bars": "Barreaux grossiers", + "block.middle-earth.crude_broad_chain": "Grosse chaîne grossière", + "item.middle-earth.crude_broad_chain": "Grosse chaîne grossière", + "block.middle-earth.crude_chain": "Chaîne grossière", + "item.middle-earth.crude_chain": "Chaîne grossière", + "block.middle-earth.crude_door": "Porte grossière", + "item.middle-earth.crude_door": "Porte grossière", + "item.middle-earth.crude_lantern": "Lanterne grossière", + "block.middle-earth.crude_rod": "Baguette grossière", + "item.middle-earth.crude_smithing_hammer": "Marteau de forge grossier", + "block.middle-earth.crude_trapdoor": "Trappe grossière", + "item.middle-earth.crude_trapdoor": "Trappe grossière", + "block.middle-earth.cut_bronze": "Bronze taillé", + "item.middle-earth.cut_bronze": "Bronze taillé", + "block.middle-earth.cut_bronze_slab": "Dalle en bronze taillé", + "item.middle-earth.cut_bronze_slab": "Dalle en bronze taillé", + "block.middle-earth.cut_bronze_stairs": "Escalier en bronze taillé", + "item.middle-earth.cut_bronze_stairs": "Escalier en bronze taillé", + "block.middle-earth.cut_bronze_vertical_slab": "Dalle verticale en bronze taillé", + "item.middle-earth.cut_bronze_vertical_slab": "Dalle verticale en bronze taillé", + "block.middle-earth.cut_bronze_wall": "Muret en bronze taillé", + "item.middle-earth.cut_bronze_wall": "Muret en bronze taillé", + "block.middle-earth.cut_crude_plates": "Plaques grossières taillées", + "item.middle-earth.cut_crude_plates": "Plaques grossières taillées", + "block.middle-earth.cut_crude_plates_slab": "Dalle en plaques grossières taillées", + "item.middle-earth.cut_crude_plates_slab": "Dalle en plaques grossières taillées", + "block.middle-earth.cut_crude_plates_stairs": "Escalier en plaques grossières taillées", + "item.middle-earth.cut_crude_plates_stairs": "Escalier en plaques grossières taillées", + "block.middle-earth.cut_crude_plates_vertical_slab": "Dalle verticale en plaques grossières taillées", + "item.middle-earth.cut_crude_plates_vertical_slab": "Dalle verticale en plaques grossières taillées", + "block.middle-earth.cut_crude_plates_wall": "Muret en plaques grossières taillées", + "item.middle-earth.cut_crude_plates_wall": "Muret en plaques grossières taillées", + "block.middle-earth.cut_lead_wall": "Muret en plomb taillé", + "item.middle-earth.cut_lead_wall": "Muret en plomb taillé", + "block.middle-earth.cut_silver_wall": "Muret en argent taillé", + "item.middle-earth.cut_silver_wall": "Muret en argent taillé", + "item.middle-earth.treated_steel_lantern": "Lanterne en acier traité", + "item.middle-earth.lead_lantern": "Lanterne en plomb", + "item.middle-earth.gold_coin": "Pièce d'or", + "block.middle-earth.gold_coin_pile": "Tas de pièces d'or", + "item.middle-earth.gold_coin_pile": "Tas de pièces d'or", + "block.middle-earth.copper_coin_pile": "Tas de pièces de cuivre", + "item.middle-earth.copper_coin_pile": "Tas de pièces de cuivre", + "block.middle-earth.silver_coin_pile": "Tas de pièces d'argent", + "item.middle-earth.silver_coin_pile": "Tas de pièces d'argent", + "block.middle-earth.gold_treasure_heap_layer": "Couche de trésor d'or", + "item.middle-earth.gold_treasure_heap_layer": "Couche de trésor d'or", + "block.middle-earth.silver_treasure_heap_layer": "Couche de trésor d'argent", + "item.middle-earth.silver_treasure_heap_layer": "Couche de trésor d'argent", + "block.middle-earth.copper_treasure_heap_layer": "Couche de trésor de cuivre", + "item.middle-earth.copper_treasure_heap_layer": "Couche de trésor de cuivre", + "block.middle-earth.waste_pile": "Tas de déchets", + "item.middle-earth.waste_pile": "Tas de déchets", + "block.middle-earth.waste_pile_layer": "Couche de déchets", + "item.middle-earth.waste_pile_layer": "Couche de déchets", + "block.middle-earth.skeletal_pile": "Tas d'ossements", + "item.middle-earth.skeletal_pile": "Tas d'ossements", + "block.middle-earth.skeletal_pile_layer": "Couche d'ossements", + "item.middle-earth.skeletal_pile_layer": "Couche d'ossements", + "item.middle-earth.iron_chisel": "Burin en fer", + "item.middle-earth.steel_chisel": "Burin en acier", + "item.middle-earth.mithril_chisel": "Burin en mithril", + "block.middle-earth.dark_mushroom_stem_slab": "Dalle en tige de champignon noir", + "item.middle-earth.dark_mushroom_stem_slab": "Dalle en tige de champignon noir", + "block.middle-earth.dark_mushroom_stem_stairs": "Escalier en tige de champignon noir", + "item.middle-earth.dark_mushroom_stem_stairs": "Escalier en tige de champignon noir", + "block.middle-earth.dark_mushroom_stem_vertical_slab": "Dalle verticale en tige de champignon noir", + "item.middle-earth.dark_mushroom_stem_vertical_slab": "Dalle verticale en tige de champignon noir", + "block.middle-earth.gray_mushroom_stem_slab": "Dalle en tige de champignon gris", + "item.middle-earth.gray_mushroom_stem_slab": "Dalle en tige de champignon gris", + "block.middle-earth.gray_mushroom_stem_stairs": "Escalier en tige de champignon gris", + "item.middle-earth.gray_mushroom_stem_stairs": "Escalier en tige de champignon gris", + "block.middle-earth.gray_mushroom_stem_vertical_slab": "Dalle verticale en tige de champignon gris", + "item.middle-earth.gray_mushroom_stem_vertical_slab": "Dalle verticale en tige de champignon gris", + "block.middle-earth.mushroom_stem_slab": "Dalle en tige de champignon", + "item.middle-earth.mushroom_stem_slab": "Dalle en tige de champignon", + "block.middle-earth.mushroom_stem_stairs": "Escalier en tige de champignon", + "item.middle-earth.mushroom_stem_stairs": "Escalier en tige de champignon", + "block.middle-earth.mushroom_stem_vertical_slab": "Dalle verticale en tige de champignon", + "item.middle-earth.mushroom_stem_vertical_slab": "Dalle verticale en tige de champignon", + "item.middle-earth.woodland_realm_arming_coat": "Manteau matelassé du Royaume Sylvestre", + "item.middle-earth.woodland_realm_axe": "Hache du Royaume Sylvestre", + "item.middle-earth.woodland_realm_bow": "Arc du Royaume Sylvestre", + "item.middle-earth.woodland_realm_bronze_trimmed_ranger_helmet": "Casque de rôdeur du Royaume Sylvestre à ornements de bronze", + "item.middle-earth.woodland_realm_buckler_shield": "Targe du Royaume Sylvestre", + "item.middle-earth.woodland_realm_cavalry_helmet": "Casque de cavalier du Royaume Sylvestre", + "item.middle-earth.woodland_realm_commander_boots": "Bottes de commandant du Royaume Sylvestre", + "item.middle-earth.woodland_realm_commander_chestplate": "Plastron de commandant du Royaume Sylvestre", + "item.middle-earth.woodland_realm_commander_helmet": "Casque de commandant du Royaume Sylvestre", + "item.middle-earth.woodland_realm_commander_leggings": "Jambières de commandant du Royaume Sylvestre", + "item.middle-earth.woodland_realm_crown": "Couronne du Royaume Sylvestre", + "item.middle-earth.woodland_realm_dagger": "Dague du Royaume Sylvestre", + "item.middle-earth.woodland_realm_gilded_scale_hauberk": "Haubert à écailles doré du Royaume Sylvestre", + "item.middle-earth.woodland_realm_gilded_scale_skirt": "Jupe à écailles dorée du Royaume Sylvestre", + "item.middle-earth.woodland_realm_glade_shield": "Bouclier de clairière du Royaume Sylvestre", + "item.middle-earth.woodland_realm_heavy_blue_shield": "Bouclier lourd bleu du Royaume Sylvestre", + "item.middle-earth.woodland_realm_heavy_green_shield": "Bouclier lourd vert du Royaume Sylvestre", + "item.middle-earth.woodland_realm_heavy_ornamented_green_shield": "Bouclier lourd vert orné du Royaume Sylvestre", + "item.middle-earth.woodland_realm_heavy_ornamented_shield": "Bouclier lourd orné du Royaume Sylvestre", + "item.middle-earth.woodland_realm_heavy_shield": "Bouclier lourd du Royaume Sylvestre", + "item.middle-earth.woodland_realm_leather_arming_coat": "Manteau matelassé en cuir du Royaume Sylvestre", + "item.middle-earth.woodland_realm_leather_bronzed_arming_coat": "Manteau matelassé en cuir bronzé du Royaume Sylvestre", + "item.middle-earth.woodland_realm_leather_silver_arming_coat": "Manteau matelassé en cuir argenté du Royaume Sylvestre", + "item.middle-earth.woodland_realm_longbow": "Arc long du Royaume Sylvestre", + "item.middle-earth.woodland_realm_longsword": "Épée longue du Royaume Sylvestre", + "item.middle-earth.woodland_realm_nightshade_ornamented_shield": "Bouclier orné de l'Ombre-de-la-nuit", + "item.middle-earth.woodland_realm_nightshade_shield": "Bouclier de l'Ombre-de-la-nuit", + "item.middle-earth.woodland_realm_noble_axe": "Hache noble du Royaume Sylvestre", + "item.middle-earth.woodland_realm_noble_bow": "Arc noble du Royaume Sylvestre", + "item.middle-earth.woodland_realm_noble_dagger": "Dague noble du Royaume Sylvestre", + "item.middle-earth.woodland_realm_noble_longbow": "Arc long noble du Royaume Sylvestre", + "item.middle-earth.woodland_realm_noble_longsword": "Épée longue noble du Royaume Sylvestre", + "item.middle-earth.woodland_realm_noble_spear": "Lance noble du Royaume Sylvestre", + "item.middle-earth.woodland_realm_noble_sword": "Épée noble du Royaume Sylvestre", + "item.middle-earth.woodland_realm_royal_guard_cape": "Cape de la garde royale du Royaume Sylvestre", + "item.middle-earth.woodland_realm_royal_guard_helmet": "Casque de la garde royale du Royaume Sylvestre", + "item.middle-earth.woodland_realm_scale_hauberk": "Haubert à écailles du Royaume Sylvestre", + "item.middle-earth.woodland_realm_scale_skirt": "Jupe à écailles du Royaume Sylvestre", + "item.middle-earth.woodland_realm_scout_bronze_shield": "Bouclier d'éclaireur en bronze du Royaume Sylvestre", + "item.middle-earth.woodland_realm_scout_shield": "Bouclier d'éclaireur du Royaume Sylvestre", + "item.middle-earth.woodland_realm_silver_trimmed_ranger_helmet": "Casque de rôdeur du Royaume Sylvestre à ornements d'argent", + "item.middle-earth.woodland_realm_soldier_boots": "Bottes de soldat du Royaume Sylvestre", + "item.middle-earth.woodland_realm_soldier_cape": "Cape de soldat du Royaume Sylvestre", + "item.middle-earth.woodland_realm_soldier_chestplate": "Plastron de soldat du Royaume Sylvestre", + "item.middle-earth.woodland_realm_soldier_helmet": "Casque de soldat du Royaume Sylvestre", + "item.middle-earth.woodland_realm_soldier_leggings": "Jambières de soldat du Royaume Sylvestre", + "item.middle-earth.woodland_realm_spear": "Lance du Royaume Sylvestre", + "item.middle-earth.woodland_realm_sword": "Épée du Royaume Sylvestre", + "item.middle-earth.dol_guldur_axe": "Hache de Dol Guldur", + "item.middle-earth.dol_guldur_boots": "Bottes de Dol Guldur", + "item.middle-earth.dol_guldur_executioner_chestplate": "Plastron de bourreau de Dol Guldur", + "item.middle-earth.dol_guldur_executioner_hood": "Capuche de bourreau de Dol Guldur", + "item.middle-earth.dol_guldur_hunter_helmet": "Casque de chasseur de Dol Guldur", + "item.middle-earth.dol_guldur_jailer_collar": "Collier de geôlier de Dol Guldur", + "item.middle-earth.dol_guldur_machete": "Machette de Dol Guldur", + "item.middle-earth.dol_guldur_marauder_boots": "Bottes de maraudeur de Dol Guldur", + "item.middle-earth.dol_guldur_marauder_chestplate": "Plastron de maraudeur de Dol Guldur", + "item.middle-earth.dol_guldur_marauder_helmet": "Casque de maraudeur de Dol Guldur", + "item.middle-earth.dol_guldur_marauder_leggings": "Jambières de maraudeur de Dol Guldur", + "item.middle-earth.dol_guldur_padded_chestplate": "Plastron matelassé de Dol Guldur", + "item.middle-earth.dol_guldur_pavise": "Pavois de Dol Guldur", + "item.middle-earth.dol_guldur_raider_chestplate": "Plastron de pillard de Dol Guldur", + "item.middle-earth.dol_guldur_raider_coat": "Manteau de pillard de Dol Guldur", + "item.middle-earth.dol_guldur_raider_helmet": "Casque de pillard de Dol Guldur", + "item.middle-earth.dol_guldur_shield": "Bouclier de Dol Guldur", + "item.middle-earth.dol_guldur_stalker_boots": "Bottes de traqueur de Dol Guldur", + "item.middle-earth.dol_guldur_stalker_cape": "Cape de traqueur de Dol Guldur", + "item.middle-earth.dol_guldur_stalker_chestplate": "Plastron de traqueur de Dol Guldur", + "item.middle-earth.dol_guldur_stalker_helmet": "Casque de traqueur de Dol Guldur", + "item.middle-earth.dol_guldur_stalker_leggings": "Jambières de traqueur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_boots": "Bottes érodées de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_executioner_chestplate": "Plastron érodé de bourreau de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_jailer_collar": "Collier érodé de geôlier de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_marauder_boots": "Bottes érodées de maraudeur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_marauder_chestplate": "Plastron érodé de maraudeur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_marauder_helmet": "Casque érodé de maraudeur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_marauder_leggings": "Jambières érodées de maraudeur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_raider_chestplate": "Plastron érodé de pillard de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_raider_helmet": "Casque érodé de pillard de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_stalker_boots": "Bottes érodées de traqueur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_stalker_chestplate": "Plastron érodé de traqueur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_stalker_helmet": "Casque érodé de traqueur de Dol Guldur", + "item.middle-earth.weathered_dol_guldur_stalker_leggings": "Jambières érodées de traqueur de Dol Guldur", + "item.middle-earth.moria_goblin_biter_helmet": "Casque de mordeur de la Moria", + "item.middle-earth.moria_goblin_bow": "Arc de Gobelin de la Moria", + "item.middle-earth.moria_goblin_captain_helmet": "Casque de capitaine de la Moria", + "item.middle-earth.moria_goblin_charger_helmet": "Casque de chargeur de la Moria", + "item.middle-earth.moria_goblin_chief_boots": "Bottes de chef de la Moria", + "item.middle-earth.moria_goblin_chief_chestplate": "Plastron de chef de la Moria", + "item.middle-earth.moria_goblin_chief_helmet": "Casque de chef de la Moria", + "item.middle-earth.moria_goblin_chief_leggings": "Jambières de chef de la Moria", + "item.middle-earth.moria_goblin_cloth_coat": "Manteau en tissu de la Moria", + "item.middle-earth.moria_goblin_crude_boots": "Bottes grossières de la Moria", + "item.middle-earth.moria_goblin_falchion": "Fauchon de Gobelin de la Moria", + "item.middle-earth.moria_goblin_hauberk": "Haubert de Gobelin de la Moria", + "item.middle-earth.moria_goblin_hookaxe": "Hache à crochet de la Moria", + "item.middle-earth.moria_goblin_hookblade": "Lame à crochet de la Moria", + "item.middle-earth.moria_goblin_mandible_helmet": "Casque à mandibule de la Moria", + "item.middle-earth.moria_goblin_reinforced_coat": "Manteau renforcé de la Moria", + "item.middle-earth.moria_goblin_screecher_boots": "Bottes de hurleur de la Moria", + "item.middle-earth.moria_goblin_screecher_chestplate": "Plastron de hurleur de la Moria", + "item.middle-earth.moria_goblin_screecher_helmet": "Casque de hurleur de la Moria", + "item.middle-earth.moria_goblin_screecher_leggings": "Jambières de hurleur de la Moria", + "item.middle-earth.moria_goblin_shank": "Surin de la Moria", + "item.middle-earth.moria_goblin_snaga_belly_plate": "Plastron ventru de Snaga de la Moria", + "item.middle-earth.moria_goblin_snaga_cuirass": "Cuirasse de Snaga de la Moria", + "item.middle-earth.moria_goblin_snaga_helmet": "Casque de Snaga de la Moria", + "item.middle-earth.moria_goblin_snaga_nasal_helmet": "Casque à nasal de Snaga de la Moria", + "item.middle-earth.moria_goblin_snaga_skirt": "Jupe de Snaga de la Moria", + "item.middle-earth.moria_goblin_spear": "Lance de Gobelin de la Moria", + "item.middle-earth.moria_goblins_buckler_shield": "Targe des Gobelins de la Moria", + "item.middle-earth.moria_goblins_heavy_shield": "Bouclier lourd des Gobelins de la Moria", + "item.middle-earth.moria_ruined_dwarven_hauberk": "Haubert nain en ruine de la Moria", + "item.middle-earth.moria_ruined_dwarven_helmet": "Casque nain en ruine de la Moria", + "item.middle-earth.goblin_town_axe": "Hache de la Cité des Gobelins", + "item.middle-earth.goblin_town_belly_plate": "Plastron ventru de la Cité des Gobelins", + "item.middle-earth.goblin_town_bone_mandible_cap": "Calotte à mandibule en os de la Cité des Gobelins", + "item.middle-earth.goblin_town_bone_scale_coat": "Manteau à écailles en os de la Cité des Gobelins", + "item.middle-earth.goblin_town_bone_shield": "Bouclier en os de la Cité des Gobelins", + "item.middle-earth.goblin_town_bone_strap": "Lanière en os de la Cité des Gobelins", + "item.middle-earth.goblin_town_bone_wooden_shield": "Bouclier en bois et en os de la Cité des Gobelins", + "item.middle-earth.goblin_town_bow": "Arc de la Cité des Gobelins", + "item.middle-earth.goblin_town_cap": "Calotte de la Cité des Gobelins", + "item.middle-earth.goblin_town_carapace_harness": "Harnais de carapace de la Cité des Gobelins", + "item.middle-earth.goblin_town_crossbones_helmet": "Casque à tibias croisés de la Cité des Gobelins", + "item.middle-earth.goblin_town_crude_scale_chestplate": "Plastron à écailles grossier de la Cité des Gobelins", + "item.middle-earth.goblin_town_falchion": "Fauchon de la Cité des Gobelins", + "item.middle-earth.goblin_town_heavy_nasal_helmet": "Casque à nasal lourd de la Cité des Gobelins", + "item.middle-earth.goblin_town_heavy_shield": "Bouclier lourd de la Cité des Gobelins", + "item.middle-earth.goblin_town_leather_skirt": "Jupe en cuir de la Cité des Gobelins", + "item.middle-earth.goblin_town_leather_wooden_shield": "Bouclier en bois et en cuir de la Cité des Gobelins", + "item.middle-earth.goblin_town_loincloth": "Pagne de la Cité des Gobelins", + "item.middle-earth.goblin_town_mandible_helmet": "Casque à mandibule de la Cité des Gobelins", + "item.middle-earth.goblin_town_nasal_helmet": "Casque à nasal de la Cité des Gobelins", + "item.middle-earth.goblin_town_reinforced_carapace": "Carapace renforcée de la Cité des Gobelins", + "item.middle-earth.goblin_town_ribcage": "Cage thoracique de la Cité des Gobelins", + "item.middle-earth.goblin_town_sandals": "Sandales de la Cité des Gobelins", + "item.middle-earth.goblin_town_scimitar": "Cimeterre de la Cité des Gobelins", + "item.middle-earth.goblin_town_shank": "Surin de la Cité des Gobelins", + "item.middle-earth.goblin_town_skulker_guard_helmet": "Casque de garde furtif de la Cité des Gobelins", + "item.middle-earth.goblin_town_skull_cap": "Calotte crânienne de la Cité des Gobelins", + "item.middle-earth.goblin_town_spear": "Lance de la Cité des Gobelins", + "item.middle-earth.goblin_town_tunneler_helmet": "Casque de creuseur de la Cité des Gobelins", + "item.middle-earth.goblin_town_wooden_shield": "Bouclier en bois de la Cité des Gobelins", + "item.middle-earth.goblin_crossbow": "Arbalète de gobelin", + "item.middle-earth.goblin_king_crown": "Couronne du roi gobelin", + "item.middle-earth.eryn_galen_shield": "Bouclier d'Eryn Galen", + "item.middle-earth.eryn_galen_tarnished_shield": "Bouclier terni d'Eryn Galen", + "item.middle-earth.eryn_galen_watchwarden_boots": "Bottes de gardien de veille d'Eryn Galen", + "item.middle-earth.eryn_galen_watchwarden_chestplate": "Plastron de gardien de veille d'Eryn Galen", + "item.middle-earth.eryn_galen_watchwarden_helmet": "Casque de gardien de veille d'Eryn Galen", + "item.middle-earth.eryn_galen_watchwarden_leggings": "Jambières de gardien de veille d'Eryn Galen", + "item.middle-earth.oxidised_eryn_galen_watchwarden_boots": "Bottes de gardien de veille d'Eryn Galen oxydées", + "item.middle-earth.oxidised_eryn_galen_watchwarden_chestplate": "Plastron de gardien de veille d'Eryn Galen oxydé", + "item.middle-earth.oxidised_eryn_galen_watchwarden_helmet": "Casque de gardien de veille d'Eryn Galen oxydé", + "item.middle-earth.oxidised_eryn_galen_watchwarden_leggings": "Jambières de gardien de veille d'Eryn Galen oxydées", + "item.middle-earth.egladil_commander_helmet": "Casque de commandant d'Egladil", + "item.middle-earth.egladil_sentinel_boots": "Bottes de sentinelle d'Egladil", + "item.middle-earth.egladil_sentinel_cape": "Cape de sentinelle d'Egladil", + "item.middle-earth.egladil_sentinel_chestplate": "Plastron de sentinelle d'Egladil", + "item.middle-earth.egladil_sentinel_helmet": "Casque de sentinelle d'Egladil", + "item.middle-earth.egladil_sentinel_leggings": "Jambières de sentinelle d'Egladil", + "item.middle-earth.galadhrim_lord_cloak": "Manteau de seigneur Galadhrim", + "item.middle-earth.silvan_lord_boots": "Bottes de seigneur sylvain", + "item.middle-earth.silvan_lord_cape": "Cape de seigneur sylvain", + "item.middle-earth.silvan_lord_chestplate": "Plastron de seigneur sylvain", + "item.middle-earth.silvan_lord_helmet": "Casque de seigneur sylvain", + "item.middle-earth.silvan_lord_leggings": "Jambières de seigneur sylvain", + "item.middle-earth.warden_of_the_glade_boots": "Bottes de gardien de la Clairière", + "item.middle-earth.warden_of_the_glade_cape": "Cape de gardien de la Clairière", + "item.middle-earth.warden_of_the_glade_chestplate": "Plastron de gardien de la Clairière", + "item.middle-earth.warden_of_the_glade_helmet": "Casque de gardien de la Clairière", + "item.middle-earth.warden_of_the_glade_leggings": "Jambières de gardien de la Clairière", + "item.middle-earth.warrior_of_nightshade_boots": "Bottes de guerrier de l'Ombre-de-la-nuit", + "item.middle-earth.warrior_of_nightshade_cape": "Cape de guerrier de l'Ombre-de-la-nuit", + "item.middle-earth.warrior_of_nightshade_chestplate": "Plastron de guerrier de l'Ombre-de-la-nuit", + "item.middle-earth.warrior_of_nightshade_helmet": "Casque de guerrier de l'Ombre-de-la-nuit", + "item.middle-earth.warrior_of_nightshade_leggings": "Jambières de guerrier de l'Ombre-de-la-nuit", + "item.middle-earth.guardian_of_the_greenwood_staff": "Bâton du Gardien de la Forêt Verte", + "item.middle-earth.lord_of_the_greenwood_cape": "Cape du Seigneur de la Forêt Verte", + "item.middle-earth.keeper_of_orthanc_staff": "Bâton du Gardien d'Orthanc", + "item.middle-earth.mirk_bark_cape": "Cape d'écorce de la Forêt noire", + "item.middle-earth.mirk_leaf_cape": "Cape de feuille de la Forêt noire", + "item.middle-earth.leaf_cape": "Cape de feuilles", + "item.middle-earth.leaf_litter_cape": "Cape de litière de feuilles", + "item.middle-earth.autumn_leaf_cape": "Cape de feuille d'automne", + "item.middle-earth.mantle_of_yavanna": "Manteau de Yavanna", + "item.middle-earth.great_horn_green_plate_armor": "Armure de plates verte de Grand Cor", + "item.middle-earth.great_horn_light_armor": "Armure légère de Grand Cor", + "item.middle-earth.great_horn_light_gray_armor": "Armure légère grise de Grand Cor", + "item.middle-earth.great_horn_light_green_armor": "Armure légère verte de Grand Cor", + "item.middle-earth.great_horn_ornamented_plate_armor": "Armure de plates ornée de Grand Cor", + "item.middle-earth.great_horn_plate_armor": "Armure de plates de Grand Cor", + "item.middle-earth.great_horn_spawn_egg": "Œuf d'apparition de Grand Cor", + "item.middle-earth.bone_axe": "Hache en os", + "item.middle-earth.bone_cleaver": "Hachoir en os", + "item.middle-earth.bone_scimitar": "Cimeterre en os", + "item.middle-earth.bone_shank": "Surin en os", + "item.middle-earth.bone_spear": "Lance en os", + "item.middle-earth.ruined_dwarven_cross_shield": "Bouclier nain à croix en ruine", + "item.middle-earth.ruined_dwarven_ornamented_shield": "Bouclier nain orné en ruine", + "item.middle-earth.ruined_dwarven_ornamented_tower_shield": "Pavois nain orné en ruine", + "item.middle-earth.ruined_dwarven_reinforced_shield": "Bouclier nain renforcé en ruine", + "item.middle-earth.ruined_dwarven_reinforced_tower_shield": "Pavois nain renforcé en ruine", + "item.middle-earth.ruined_dwarven_shield": "Bouclier nain en ruine", + "item.middle-earth.black_castellan_boots": "Bottes de châtelain noir", + "item.middle-earth.black_castellan_cape": "Cape de châtelain noir", + "item.middle-earth.black_castellan_chestplate": "Plastron de châtelain noir", + "item.middle-earth.black_castellan_helmet": "Casque de châtelain noir", + "item.middle-earth.black_castellan_leggings": "Jambières de châtelain noir", + "item.middle-earth.black_reaver_helmet": "Casque de ravageur noir", + "item.middle-earth.black_reaver_shoulder_cape": "Épaulière de ravageur noir", + "item.middle-earth.bronzed_elven_gorget_mail_hauberk": "Haubert de maille à gorgerin elfique bronzé", + "item.middle-earth.bronzed_elven_mail_coif": "Coiffe de maille elfique bronzée", + "item.middle-earth.bronzed_elven_mail_hauberk": "Haubert de maille elfique bronzé", + "item.middle-earth.bronzed_elven_mail_skirt": "Jupe de maille elfique bronzée", + "item.middle-earth.bronzed_elven_padded_mail_hauberk": "Haubert de maille elfique matelassé bronzé", + "item.middle-earth.elven_silver_gorget_mail_hauberk": "Haubert de maille à gorgerin elfique argenté", + "item.middle-earth.elven_silver_padded_mail_hauberk": "Haubert de maille elfique matelassé argenté", + "block.middle-earth.hanging_shelobite_larva_egg": "Œuf de larve shélobite suspendu", + "item.middle-earth.hanging_shelobite_larva_egg": "Œuf de larve shélobite suspendu", + "block.middle-earth.shelobite_larva_egg": "Œuf de larve shélobite", + "item.middle-earth.shelobite_larva_egg": "Œuf de larve shélobite", + "item.middle-earth.shelobite_larva_spawn_egg": "Œuf d'apparition de larve shélobite", + "item.middle-earth.shelobite_scuttler_spawn_egg": "Œuf d'apparition de coureuse shélobite", + "item.middle-earth.spawn_of_shelob_spawn_egg": "Œuf d'apparition de progéniture de Shelob", + "item.middle-earth.cave_troll_spawn_egg": "Œuf d'apparition de troll des cavernes", + "item.middle-earth.spider_stinger": "Dard d'araignée", + "item.middle-earth.spider_trial_spawner": "Générateur de défi araignée", + "item.middle-earth.spider_vault": "Coffre-fort araignée", + "item.middle-earth.brigand_trial_spawner": "Générateur de défi bandit", + "item.middle-earth.brigand_vault": "Coffre-fort bandit", + "item.middle-earth.brigand_key": "Clé de bandit", + "item.middle-earth.weaver_sting": "Dard de la Tisserande", + "item.middle-earth.ceratopsian_nugget": "Pépite de cératopsien", + "item.middle-earth.pterosaur_nugget": "Pépite de ptérosaure", + "item.middle-earth.sauropod_nugget": "Pépite de sauropode", + "item.middle-earth.therapod_nugget": "Pépite de théropode", + "item.middle-earth.thyreophoran_nugget": "Pépite de thyréophore", + "block.middle-earth.dwarven_forge": "Forge naine", + "block.middle-earth.elven_forge": "Forge elfique", + "block.middle-earth.orcish_forge": "Forge orque", + "block.middle-earth.orcish_artisan_table": "Table d'artisan orque", + "item.middle-earth.orcish_artisan_table": "Table d'artisan orque", + "block.middle-earth.orcish_drum": "Tambour orque", + "item.middle-earth.orcish_drum": "Tambour orque", + "block.middle-earth.embers": "Braises", + "item.middle-earth.embers": "Braises", + "block.middle-earth.faction_banner": "Bannière de %s", + "block.middle-earth.large_beech_fence_gate": "Grand portillon en hêtre", + "item.middle-earth.large_beech_fence_gate": "Grand portillon en hêtre", + "block.middle-earth.noblewhite": "Blanc noble", + "item.middle-earth.noblewhite": "Blanc noble", + "block.middle-earth.pebbled_grass": "Herbe caillouteuse", + "item.middle-earth.pebbled_grass": "Herbe caillouteuse", + "block.middle-earth.pebbled_grass_slab": "Dalle d'herbe caillouteuse", + "item.middle-earth.pebbled_grass_slab": "Dalle d'herbe caillouteuse", + "block.middle-earth.pebbled_grass_stairs": "Escalier d'herbe caillouteuse", + "item.middle-earth.pebbled_grass_stairs": "Escalier d'herbe caillouteuse", + "block.middle-earth.simple_oak_window": "Fenêtre simple en chêne", + "item.middle-earth.simple_oak_window": "Fenêtre simple en chêne", + "block.middle-earth.simple_oak_window_pane": "Fenêtre plate simple en chêne", + "item.middle-earth.simple_oak_window_pane": "Fenêtre plate simple en chêne", + "block.middle-earth.stripped_fir_log": "Bûche de sapin écorcée", + "item.middle-earth.stripped_fir_log": "Bûche de sapin écorcée", + "block.middle-earth.stripped_fir_wood": "Bois de sapin écorcé", + "item.middle-earth.stripped_fir_wood": "Bois de sapin écorcé", + "block.middle-earth.stripped_fir_wood_fence": "Barrière en bois de sapin écorcé", + "item.middle-earth.stripped_fir_wood_fence": "Barrière en bois de sapin écorcé", + "block.middle-earth.stripped_fir_wood_slab": "Dalle en bois de sapin écorcé", + "item.middle-earth.stripped_fir_wood_slab": "Dalle en bois de sapin écorcé", + "block.middle-earth.stripped_fir_wood_stairs": "Escaliers en bois de sapin écorcé", + "item.middle-earth.stripped_fir_wood_stairs": "Escaliers en bois de sapin écorcé", + "block.middle-earth.stripped_fir_wood_vertical_slab": "Dalle verticale en bois de sapin écorcé", + "item.middle-earth.stripped_fir_wood_vertical_slab": "Dalle verticale en bois de sapin écorcé", + "block.middle-earth.stripped_fir_wood_wall": "Muret en bois de sapin écorcé", + "item.middle-earth.stripped_fir_wood_wall": "Muret en bois de sapin écorcé", + "block.middle-earth.structure_manager": "Gestionnaire de structures", + "item.middle-earth.structure_manager": "Gestionnaire de structures", + "item.middle-earth.orc_structure_manager": "Gestionnaire de structures orque", + "item.middle-earth.structure_nest": "Nid de structure", + "block.middle-earth.treated_wood_rope_fence": "Barrière à corde en bois traité", + "item.middle-earth.treated_wood_rope_fence": "Barrière à corde en bois traité", + "item.middle-earth.tall_fir_door": "Grande porte en sapin", + "item.middle-earth.troll_mace": "Masse de troll", + "item.middle-earth.wanderer_staff": "Bâton de voyageur", + "item.middle-earth.winged_helmet": "Casque ailé", + "item.middle-earth.shoulder_cape_left": "Cape d'épaule gauche", + "item.middle-earth.shoulder_cape_right": "Cape d'épaule droite", + "item.middle-earth.arkenstone": "Arkenstone", + "item.middle-earth.birch_water": "Eau de bouleau", + "item.middle-earth.cram": "Cram", + "item.middle-earth.cooking_pot_helmet": "Casque marmite", + "item.middle-earth.gundabad_longbow": "Arc long de Gundabad", + "item.middle-earth.broadhoof_goat_leather_armor": "Armure en cuir de Bouc à Sabots larges", + "item.middle-earth.broadhoof_goat_ornamented_leather_armor": "Armure en cuir ornée de Bouc à Sabots larges", + "structure_manager_data.middle-earth.brigand_dungeon_pool": "Donjon de bandits", + "structure_manager_data.middle-earth.dale_keep_pool": "Château du Val", + "structure_manager_data.middle-earth.dale_village_pool": "Village du Val", + "structure_manager_data.middle-earth.erebor_generic_pool": "Générique d'Erebor", + "structure_manager_data.middle-earth.gondor_lord_pool": "Seigneur du Gondor", + "structure_manager_data.middle-earth.gondor_village_pool": "Village du Gondor", + "structure_manager_data.middle-earth.gundabad_camp_pool": "Camp de Gundabad", + "structure_manager_data.middle-earth.isengard_camp_pool": "Camp d'Isengard", + "structure_manager_data.middle-earth.lothlorien_hamlet_pool": "Hameau de Lothlórien", + "structure_manager_data.middle-earth.mordor_camp_pool": "Camp du Mordor", + "structure_manager_data.middle-earth.moria_hall_pool": "Salle de la Moria", + "structure_manager_data.middle-earth.rohan_military_pool": "Militaire du Rohan", + "structure_manager_data.middle-earth.rohan_village_pool": "Village du Rohan", + "structure_manager_data.middle-earth.shire_village_pool": "Village de la Comté", + "structure_manager_data.middle-earth.woodland_realm_hall_pool": "Salle du Royaume Sylvestre", + "structure_manager_data.middle-earth.woodland_realm_hamlet_pool": "Hameau du Royaume Sylvestre", + "structure_nest.middle-earth.brigand_dungeon_nests.bandit": "Bandit", + "structure_nest.middle-earth.brigand_dungeon_nests.chief": "Chef", + "structure_nest.middle-earth.brigand_dungeon_nests.cook": "Cuisinier", + "structure_nest.middle-earth.brigand_dungeon_nests.mercenary": "Mercenaire", + "structure_nest.middle-earth.brigand_dungeon_nests.prisoner": "Prisonnier", + "structure_nest.middle-earth.dale_keep_nests.captain": "Capitaine", + "structure_nest.middle-earth.dale_keep_nests.elite": "Élite", + "structure_nest.middle-earth.dale_keep_nests.large_prisoner_cell": "Grande cellule de prisonnier", + "structure_nest.middle-earth.dale_keep_nests.small_prisoner_cell": "Petite cellule de prisonnier", + "structure_nest.middle-earth.dale_keep_nests.soldier": "Soldat", + "structure_nest.middle-earth.dale_keep_nests.stable": "Écurie", + "structure_nest.middle-earth.dale_keep_nests.stables_master": "Maître des écuries", + "structure_nest.middle-earth.dale_village_nests.baker": "Boulanger", + "structure_nest.middle-earth.dale_village_nests.civilian": "Civil", + "structure_nest.middle-earth.dale_village_nests.lumber": "Bûcheron", + "structure_nest.middle-earth.dale_village_nests.smith": "Forgeron", + "structure_nest.middle-earth.erebor_generic_nests.prisoner": "Prisonnier", + "structure_nest.middle-earth.erebor_generic_nests.captain": "Capitaine", + "structure_nest.middle-earth.erebor_generic_nests.stable": "Écurie", + "structure_nest.middle-earth.erebor_generic_nests.smith": "Forgeron", + "structure_nest.middle-earth.erebor_generic_nests.barrack": "Caserne", + "structure_nest.middle-earth.erebor_generic_nests.guard": "Garde", + "structure_nest.middle-earth.erebor_generic_nests.worker": "Ouvrier", + "structure_nest.middle-earth.gondor_lord_nests.prisoner": "Prisonnier", + "structure_nest.middle-earth.gondor_lord_nests.stable": "Écurie", + "structure_nest.middle-earth.gondor_lord_nests.barracks": "Casernes", + "structure_nest.middle-earth.gondor_lord_nests.guard": "Garde", + "structure_nest.middle-earth.gondor_lord_nests.workers": "Ouvriers", + "structure_nest.middle-earth.gondor_lord_nests.lord": "Seigneur", + "structure_nest.middle-earth.gondor_village_nests.lumber": "Bûcheron", + "structure_nest.middle-earth.gondor_village_nests.smith": "Forgeron", + "structure_nest.middle-earth.gondor_village_nests.barn": "Grange", + "structure_nest.middle-earth.gondor_village_nests.peasant": "Paysan", + "structure_nest.middle-earth.gondor_village_nests.potter": "Potier", + "structure_nest.middle-earth.gundabad_camp_nests.elite": "Élite", + "structure_nest.middle-earth.gundabad_camp_nests.soldier": "Soldat", + "structure_nest.middle-earth.gundabad_camp_nests.smith": "Forgeron", + "structure_nest.middle-earth.gundabad_camp_nests.orc": "Orque", + "structure_nest.middle-earth.gundabad_camp_nests.warg": "Warg", + "structure_nest.middle-earth.isengard_camp_nests.elite": "Élite", + "structure_nest.middle-earth.isengard_camp_nests.soldier": "Soldat", + "structure_nest.middle-earth.isengard_camp_nests.smith": "Forgeron", + "structure_nest.middle-earth.isengard_camp_nests.orc": "Orque", + "structure_nest.middle-earth.isengard_camp_nests.warg": "Warg", + "structure_nest.middle-earth.isengard_camp_nests.orthanc_guard": "Garde d'Orthanc", + "structure_nest.middle-earth.lothlorien_hamlet_nests.civilian": "Civil", + "structure_nest.middle-earth.lothlorien_hamlet_nests.smith": "Forgeron", + "structure_nest.middle-earth.lothlorien_hamlet_nests.innkeeper": "Aubergiste", + "structure_nest.middle-earth.mordor_camp_nests.smith": "Forgeron", + "structure_nest.middle-earth.mordor_camp_nests.orc": "Orque", + "structure_nest.middle-earth.mordor_camp_nests.warg": "Warg", + "structure_nest.middle-earth.mordor_camp_nests.cave_troll": "Troll des cavernes", + "structure_nest.middle-earth.mordor_camp_nests.chieftain": "Chef", + "structure_nest.middle-earth.mordor_camp_nests.warrior": "Guerrier", + "structure_nest.middle-earth.moria_hall_nests.elite": "Élite", + "structure_nest.middle-earth.moria_hall_nests.soldier": "Soldat", + "structure_nest.middle-earth.moria_hall_nests.smith": "Forgeron", + "structure_nest.middle-earth.moria_hall_nests.orc": "Orque", + "structure_nest.middle-earth.rohan_military_nests.soldier": "Soldat", + "structure_nest.middle-earth.rohan_military_nests.guard": "Garde", + "structure_nest.middle-earth.rohan_military_nests.marshal": "Maréchal", + "structure_nest.middle-earth.rohan_village_nests.stable": "Écurie", + "structure_nest.middle-earth.rohan_village_nests.stables_master": "Maître des écuries", + "structure_nest.middle-earth.rohan_village_nests.civilian": "Civil", + "structure_nest.middle-earth.rohan_village_nests.smith": "Forgeron", + "structure_nest.middle-earth.rohan_village_nests.beekeeper": "Apiculteur", + "structure_nest.middle-earth.rohan_village_nests.bees": "Abeilles", + "structure_nest.middle-earth.rohan_village_nests.farmer": "Fermier", + "structure_nest.middle-earth.shire_village_nests.baker": "Boulanger", + "structure_nest.middle-earth.shire_village_nests.civilian": "Civil", + "structure_nest.middle-earth.shire_village_nests.smith": "Forgeron", + "structure_nest.middle-earth.shire_village_nests.innkeeper": "Aubergiste", + "structure_nest.middle-earth.shire_village_nests.beekeeper": "Apiculteur", + "structure_nest.middle-earth.shire_village_nests.bees": "Abeilles", + "structure_nest.middle-earth.shire_village_nests.poor_civilian": "Civil pauvre", + "structure_nest.middle-earth.shire_village_nests.rich_civilian": "Civil riche", + "structure_nest.middle-earth.shire_village_nests.shirriff": "Shirriff", + "structure_nest.middle-earth.woodland_realm_hall_nests.elite": "Élite", + "structure_nest.middle-earth.woodland_realm_hall_nests.soldier": "Soldat", + "structure_nest.middle-earth.woodland_realm_hall_nests.stable": "Écurie", + "structure_nest.middle-earth.woodland_realm_hall_nests.stables_master": "Maître des écuries", + "structure_nest.middle-earth.woodland_realm_hall_nests.civilian": "Civil", + "structure_nest.middle-earth.woodland_realm_hall_nests.lord": "Seigneur", + "structure_nest.middle-earth.woodland_realm_hall_nests.prisoner_cell": "Cellule de prisonnier", + "structure_nest.middle-earth.woodland_realm_hamlet_nests.civilian": "Civil", + "structure_nest.middle-earth.woodland_realm_hamlet_nests.innkeeper": "Aubergiste", + "advancements.middle_earth.arkenstone.description": "Trouver l'Arkenstone, le joyau de la Montagne solitaire !", + "advancements.middle_earth.arkenstone.title": "Cœur de la Montagne", + "advancements.middle_earth.brigand_dungeon.description": "Piller les voleurs dans leur donjon !", + "advancements.middle_earth.brigand_dungeon.title": "Shirriff, ouvrez !", + "advancements.middle_earth.enter_dale.description": "Entrer dans le royaume du Val", + "advancements.middle_earth.enter_dale.title": "Le Royaume du Val", + "advancements.middle_earth.enter_dol_guldur.description": "Entrer à Dol Guldur", + "advancements.middle_earth.enter_dol_guldur.title": "La Colline du Nécromancien", + "advancements.middle_earth.enter_gondor.description": "Entrer dans le dernier royaume de l'héritage de Númenor", + "advancements.middle_earth.enter_gondor.title": "Le Royaume du Sud", + "advancements.middle_earth.enter_gundabad.description": "Gundabad, la montagne réveillée de Durin l'Immortel, désormais infestée d'orcs.", + "advancements.middle_earth.enter_gundabad.title": "Les Trois Pics", + "advancements.middle_earth.enter_lonely_mountain.description": "La capitale des nains", + "advancements.middle_earth.enter_lonely_mountain.title": "Erebor", + "advancements.middle_earth.enter_nan_curunir.description": "Entrer dans la vallée de Nan Curunír", + "advancements.middle_earth.enter_nan_curunir.title": "La vallée du Magicien", + "advancements.middle_earth.enter_rohan.description": "Entrer dans le royaume des Rohirrim", + "advancements.middle_earth.enter_rohan.title": "Marche des Cavaliers", + "advancements.middle_earth.enter_woodland_realm.description": "Entrer dans le Royaume Sylvestre", + "advancements.middle_earth.enter_woodland_realm.title": "Les Salles du Roi elfique", + "advancements.middle_earth.kill_spawn_of_shelob.description": "Tuer une progéniture de Shelob !", + "advancements.middle_earth.kill_spawn_of_shelob.title": "Attercop ?", + "advancements.middle_earth.spider_burrows.description": "Descendre dans les Terriers d'Araignées", + "advancements.middle_earth.spider_burrows.title": "Antre poisseux", + "advancements.middle_earth.tin.description": "Encore de l'étain ! Peut-être trouverai-je du fer plus profond", + "advancements.middle_earth.tin.title": "Le fer des idiots", + "advancements.smithing.chisel.description": "Créer un burin de gravure", + "advancements.smithing.chisel.title": "Figure sculptée", + "advancements.smithing.hot_ones.description": "Manger une pépite de poulet épicée", + "advancements.smithing.hot_ones.title": "Ça pique !", + "advancements.smithing.inscription_table.description": "Améliorer une pièce d'équipement comme les forgerons d'antan", + "advancements.smithing.inscription_table.title": "Forge inspirée", + "advancements.smithing.orcish_sconce.description": "Fabriquer une applique murale orque", + "advancements.smithing.orcish_sconce.title": "Feu cruel", + "advancements.smithing.smithing_hammer.description": "Fabriquer un marteau de forge", + "advancements.smithing.smithing_hammer.title": "L'heure du marteau", + "advancements.smithing.sturdy_storage.description": "Fabriquer le coffre renforcé", + "advancements.smithing.sturdy_storage.title": "Rangement robuste", + "advancements.smithing.tin_cauldron.description": "Fabriquer un chaudron en étain pour refroidir votre travail de forge", + "advancements.smithing.tin_cauldron.title": "Éteindre le feu", + "attribute.modifiers.creative_mode_block_range": "Portée de bloc en mode créatif", + "attribute.modifiers.creative_mode_entity_range": "Portée d'entité en mode créatif", + "attribute.modifiers.total_damage": "Ajout de dégâts totaux multipliés", + "attribute.name.climbing_strength": "Force d'escalade", + "attribute.name.detection_range": "Portée de détection", + "attribute.name.powdered_snow_immunity": "Immunité à la neige poudreuse", + "attribute.name.width_scale": "Échelle de largeur", + "biome.middle-earth.autumn_woodland": "Forêt automnale", + "biome.middle-earth.blue_mountains_high_lands": "Hautes terres des Montagnes bleues", + "biome.middle-earth.dale_city": "Cité du Val", + "biome.middle-earth.dale_riverside": "Berge du Val", + "biome.middle-earth.dol_guldur_hill": "Colline de Dol Guldur", + "biome.middle-earth.dorwinion_lavender_field": "Champ de lavande de Dorwinion", + "biome.middle-earth.druwaith_iaur": "Drúwaith Iaur", + "biome.middle-earth.dunland": "Dunlande", + "biome.middle-earth.dunland_hills": "Collines du Dunlande", + "biome.middle-earth.enedwaith_field": "Champ d'Enedwaith", + "biome.middle-earth.enedwaith_wheat_field": "Champ de blé d'Enedwaith", + "biome.middle-earth.ethir_anduin_river_delta": "Delta fluvial de l'Ethir Anduin", + "biome.middle-earth.fangorn_foothills": "Piémonts de Fangorn", + "biome.middle-earth.great_river": "Grand Fleuve", + "biome.middle-earth.grey_forest": "Forêt grise", + "biome.middle-earth.gundabad_plains": "Plaines de Gundabad", + "biome.middle-earth.gundabad_woods": "Bois de Gundabad", + "biome.middle-earth.harad_woods": "Bois du Harad", + "biome.middle-earth.isengard": "Isengard", + "biome.middle-earth.isengard_hill": "Colline d'Isengard", + "biome.middle-earth.lonely_mountain_taiga": "Taïga de la Montagne solitaire", + "biome.middle-earth.long_lake_shores": "Berges du Grand Lac", + "biome.middle-earth.long_marshes": "Longs marais", + "biome.middle-earth.mangrove_pond": "Étang à palétuviers", + "biome.middle-earth.minhiriath_wheat_field": "Champ de blé de Minhiriath", + "biome.middle-earth.morgul_river": "Rivière de Morgul", + "biome.middle-earth.nen_hithoel_rapids": "Rapides de Nen Hithoel", + "biome.middle-earth.northern_dunland_glade": "Clairière du nord du Dunlande", + "biome.middle-earth.pelennor_wheat_field": "Champ de blé du Pelennor", + "biome.middle-earth.rhun_field": "Champ du Rhûn", + "biome.middle-earth.rhun_forest": "Forêt du Rhûn", + "biome.middle-earth.rhun_hidden_blossom": "Floraison cachée du Rhûn", + "biome.middle-earth.rohan_field": "Champ du Rohan", + "biome.middle-earth.southeast_rhovanion_field": "Champ du Rhovanion sud-oriental", + "biome.middle-earth.the_white_downs": "Les Hauts Blancs", + "biome.middle-earth.the_wold_wheat_field": "Champ de blé du Wold", + "biome.middle-earth.torogwaith": "Torogwaith", + "biome.middle-earth.webbed_woods": "Bois tissés", + "biome.middle-earth.withered_heath": "Lande flétrie", + "biome.middle-earth.woodland_glade": "Clairière sylvestre", + "command.middle-earth.back_attachment.fail": "Échec de l'application du Complément dorsal.", + "command.middle-earth.back_attachment.hand_empty": "Main vide. Tenez un plastron du mod Middle-earth en main principale pour appliquer un Complément dorsal.", + "command.middle-earth.back_attachment.success": "Complément dorsal appliqué avec succès, ", + "command.middle-earth.back_attachment.wrong_item": "Type d'objet incorrect. Tenez un plastron du mod Middle-earth en main principale pour appliquer un Complément dorsal.", + "command.middle-earth.faction.banner.fail_error": "Impossible de trouver la faction <%s>", + "command.middle-earth.faction.banner.fail_id": "Une erreur est survenue lors de la récupération de la bannière pour <%s>", + "command.middle-earth.faction.banner.success": "Bannière de <%s> récupérée avec succès", + "command.middle-earth.helmet_attachment.fail": "Échec de l'application du Complément de casque.", + "command.middle-earth.helmet_attachment.hand_empty": "Main vide. Tenez un casque du mod Middle-earth en main principale pour appliquer un Complément de casque.", + "command.middle-earth.helmet_attachment.success": "Complément de casque appliqué avec succès, ", + "command.middle-earth.helmet_attachment.wrong_item": "Type d'objet incorrect. Tenez un casque du mod Middle-earth en main principale pour appliquer un Complément de casque.", + "command.middle-earth.open.onboarding.error": "Impossible d'ouvrir l'écran d'accueil, vous avez déjà choisi votre faction.", + "command.middle-earth.open_target.onboarding.error": "Impossible d'ouvrir l'écran d'accueil pour %s, sa faction est déjà choisie.", + "command.middle-earth.open_target.onboarding.success": "Écran d'accueil ouvert avec succès pour %s.", + "container.middle-earth.inscription_table": "Table de gravure", + "description.middle-earth.goblin_town.description_0": "La Cité des Gobelins était une demeure des Orques du Nord dans les Monts Brumeux. Un réseau de grottes et de tunnels ramifiés creusé par les gobelins, comportant de nombreuses entrées telles que le Porche d'Entrée. Ils quittaient souvent leurs demeures pour piller les rives de l'Anduin et saccager les habitations.", + "description.middle-earth.hobgoblin_tribes.gundabad.description_0": "Les Gobelins des Monts Brumeux sont une race belliqueuse d'Orques habitant les grottes et tunnels sous les montagnes. Jadis dispersés, ils reconstruisent aujourd'hui leur puissance, s'attaquant aux voyageurs et s'alliant aux forces de Sauron.", + "description.middle-earth.moria.description_0": "Khazad-dûm, demeure des Longues-Barbes, s'étendant d'un bout à l'autre des monts. Cependant, les nains creusèrent trop profondément. Aujourd'hui en ruine, les anciennes salles abritent Gobelins, Trolls et choses sans nom. C'est ainsi que la cité gagna un nouveau nom, la Moria.", + "description.middle-earth.woodland_realm.description_0": "Eryn Galen, ou la Forêt Verte, fut jadis une forêt vibrante abritant de nombreuses créatures, les Elfes sylvains du Royaume Sylvestre régnant en maîtres parmi elles. Aujourd'hui, par une sorcellerie immonde, la contrée a été transformée en Forêt noire, où araignées et orques rôdent sous sa canopée.", + "effect.middle-earth.enshrouded": "Enveloppé", + "effect.middle-earth.restrained": "Entravé", + "enchantment.middle-earth.ailment_protection": "Protection contre les affections", + "enchantment.middle-earth.bane_of_giants": "Fléau des géants", + "enchantment.middle-earth.beheading": "Décapitation", + "enchantment.middle-earth.celerity": "Célérité", + "enchantment.middle-earth.first_strike": "Premier coup", + "enchantment.middle-earth.grounded": "Ancré", + "enchantment.middle-earth.hewing": "Taille", + "enchantment.middle-earth.high_step": "Grand pas", + "enchantment.middle-earth.miner_reach": "Portée de mineur", + "enchantment.middle-earth.stalwart": "Vaillance", + "enchantment.middle-earth.stealthy_trail": "Piste furtive", + "enchantment.middle-earth.stride": "Enjambée", + "enchantment.middle-earth.tree_feller": "Bûcheron", + "enchantment.middle-earth.vantage": "Avantage", + "entity.middle-earth.cave_troll": "Troll des cavernes", + "entity.middle-earth.great_horn": "Grand Cor", + "entity.middle-earth.npc": "PNJ", + "entity.middle-earth.reinforced_barrel": "Tonneau renforcé", + "entity.middle-earth.seat_entity": "Entité de siège", + "entity.middle-earth.shelobite_larva": "Larve shélobite", + "entity.middle-earth.shelobite_scuttler": "Coureuse shélobite", + "entity.middle-earth.spawn_of_shelob": "Progéniture de Shelob", + "faction.middle-earth.brigand": "Bandit", + "faction.middle-earth.goblin_town": "Cité des Gobelins", + "faction.middle-earth.hobgoblin_tribes": "Tribus Hobgobelines", + "faction.middle-earth.hobgoblin_tribes.gundabad": "Gundabad", + "faction.middle-earth.moria": "Moria", + "faction.middle-earth.wild_goblins": "Gobelins sauvages", + "faction.middle-earth.woodland_realm": "Royaume Sylvestre", + "key.middle-earth.map_fullscreen_toggle": "Basculer le plein écran de la carte", + "key.middle-earth.map_teleport": "Téléportation sur la carte", + "painting.middle-earth.author.boenndal": "Boenndal", + "painting.middle-earth.author.scosher": "Scosher", + "painting.middle-earth.dwarven_plaque.title": "Plaque naine", + "painting.middle-earth.elf_portrait.title": "Portrait d'Elfe", + "painting.middle-earth.gondorian_tapestry.title": "Tapisserie gondorienne", + "race.middle-earth.goblin": "Gobelin", + "race.middle-earth.snaga": "Snaga", + "race_tooltip.middle-earth.no_attribute_change": "Rien ne change !", + "screen.middle-earth.artisan_table.back_attachment": "Complément dorsal", + "screen.middle-earth.artisan_table.chisel": "Burin", + "screen.middle-earth.artisan_table.helmet_attachment": "Complément de casque", + "screen.middle-earth.beech_coffer": "Coffre en hêtre", + "screen.middle-earth.button.full_randomizer": "Aléatoire complet", + "screen.middle-earth.chestnut_coffer": "Coffre en châtaignier", + "screen.middle-earth.fir_coffer": "Coffre en sapin", + "screen.middle-earth.larch_coffer": "Coffre en mélèze", + "screen.middle-earth.oak_coffer": "Coffre en chêne", + "screen.middle-earth.pine_coffer": "Coffre en pin", + "screen.middle-earth.spruce_coffer": "Coffre en sapin", + "screen.middle-earth.willow_coffer": "Coffre en saule", + "screen.middle-earth.sack": "Sac", + "screen.middle-earth.structure_manager": "Gestionnaire de structures", + "screen.middle-earth.playerbook.artisan_table": "Table d'artisan", + "screen.middle-earth.playerbook.brigands": "Bandits", + "screen.middle-earth.playerbook.broadhoof_goat": "Bouc à Sabots larges", + "screen.middle-earth.playerbook.casting": "Coulage", + "screen.middle-earth.playerbook.cave_monsters": "Monstres des cavernes", + "screen.middle-earth.playerbook.cave_troll": "Troll des cavernes", + "screen.middle-earth.playerbook.chapter_dungeons": "Donjons", + "screen.middle-earth.playerbook.chapter_enchanting": "Enchantement", + "screen.middle-earth.playerbook.chapter_getting_started": "Pour commencer", + "screen.middle-earth.playerbook.chapter_mining": "Minage", + "screen.middle-earth.playerbook.chapter_mounts": "Montures", + "screen.middle-earth.playerbook.chapter_smithing": "Forge", + "screen.middle-earth.playerbook.chapters": "Chapitres", + "screen.middle-earth.playerbook.copper_alloys": "Alliages de cuivre", + "screen.middle-earth.playerbook.description": "Ce mod porte sur le célèbre univers de la Terre du Milieu.\nVous découvrirez une toute nouvelle dimension avec des blocs, objets, entités, factions, structures personnalisés et bien plus encore !", + "screen.middle-earth.playerbook.dungeon_brigands_desc": "Les donjons des bandits se trouvent un peu partout autour du Val d'Anduin.\n Ils y gardent les richesses volées aux factions voisines et se cachent sous des tours en ruine.", + "screen.middle-earth.playerbook.dungeon_brigands_desc_right": "", + "screen.middle-earth.playerbook.dungeon_spider_burrows_desc": "Les araignées de Shelob ont infesté la Forêt noire.\n Voyager dans cette forêt corrompue est très dangereux, mais vous pourriez y trouver les richesses oubliées de voyageurs, si tant est que vous en reveniez vivant.", + "screen.middle-earth.playerbook.dungeon_spider_burrows_desc_right": "", + "screen.middle-earth.playerbook.dungeons_desc": "Au fil de vos aventures en Terre du Milieu, vous pourriez rencontrer toutes sortes de donjons regorgeant de richesses.\n Avant d'y entrer, préparez-vous à affronter les créatures hostiles que vous pourriez y trouver, car un tel butin n'est jamais laissé sans protection.", + "screen.middle-earth.playerbook.dungeons_desc_right": "Dans chaque donjon, vous trouverez des générateurs de défi, qui offrent des clés lorsque vous vainquez une vague d'ennemis.\n La clé de défi sert à ouvrir les coffres-forts que l'on peut trouver plus profondément dans le donjon.", + "screen.middle-earth.playerbook.enchanting_desc": "Les plus grands artisans des âges passés étaient réputés pour avoir si merveilleusement perfectionné leur art, donnant naissance à des lames et armures légendaires aux propriétés extraordinaires.\n\nCommencez par fabriquer la table de gravure comme suit.", + "screen.middle-earth.playerbook.enchanting_desc_right": "", + "screen.middle-earth.playerbook.getting_started_desc": "Pour entrer en Terre du Milieu et commencer ainsi votre aventure, vous devrez d'abord fabriquer une fiole d'étoiles.\n Une fois la fiole fabriquée, remplissez-la d'eau puis combinez-la avec un objet lumineux tel que des baies lumineuses, de la pierre lumineuse ou de l'encre luminescente pour enfin fabriquer la fiole d'étoiles.", + "screen.middle-earth.playerbook.getting_started_desc_right": "Utilisez-la et vous serez amené au processus d'accueil vers la Terre du Milieu.", + "screen.middle-earth.playerbook.great_horn": "Grand Cor", + "screen.middle-earth.playerbook.inscription_table": "Table de gravure", + "screen.middle-earth.playerbook.inscription_table_desc": "Pour utiliser la table de gravure, vous aurez besoin de gemmes, d'un burin et de l'objet que vous souhaitez enchanter. Chaque gemme est associée à des mots uniques ; vous pouvez explorer chaque combinaison de mots jusqu'à trouver un enchantement valide.", + "screen.middle-earth.playerbook.inscription_table_desc_right": "Voici un exemple de gravure pour l'enchantement Solidité ;", + "screen.middle-earth.playerbook.mining_cave_monster_desc": "Creuser en profondeur n'est pas sans danger — les mineurs racontent que des bandes de Gobelins sauvages patrouillent les confins obscurs de la Terre du Milieu, guettant les imprudents. Certains récits disent même que des choses plus viles et plus sombres encore rôdent aux racines du monde, à l'affût… ne descendez pas dans les profondeurs sans être préparé.", + "screen.middle-earth.playerbook.mining_cave_monster_desc_right": "Les profondeurs obscures cachent bien des trésors scintillants, mais la prudence est de mise !", + "screen.middle-earth.playerbook.mining_desc": "Les ressources de base comme le charbon, l'étain et le cuivre se trouvent presque partout près de la surface, mais les minerais et gemmes précieux ne se trouvent qu'en profondeur.\n\n Des couches les plus superficielles aux plus profondes, les strates du monde se composent de couches de roche, d'ardoise des abîmes, de Núrgon et de Medgon.", + "screen.middle-earth.playerbook.mining_desc_right": "", + "screen.middle-earth.playerbook.mining_tools_desc": "Vous devez forger des outils plus solides pour extraire les ressources de la roche dans les couches profondes.\n\n Les minerais d'ardoise des abîmes peuvent être obtenus avec des outils en pierre ou mieux, les minerais de Núrgon nécessitent au moins des outils en bronze, et des outils en acier sont nécessaires pour miner le Medgon.", + "screen.middle-earth.playerbook.mining_tools_desc_right": "Consultez le chapitre sur la Forge pour apprendre à obtenir de meilleurs outils.", + "screen.middle-earth.playerbook.mount_broadhoof_goat_desc": "Le Bouc à Sabots larges est une excellente monture pour les Nains, capable de grimper aisément les montagnes.\nVous les trouverez dans les montagnes où vivent les Nains, mais méfiez-vous de ces grimpeurs pelucheux ; ils peuvent devenir agressifs si on les provoque. Ils peuvent charger leurs ennemis avec leurs cornes et sauter très haut.", + "screen.middle-earth.playerbook.mount_broadhoof_goat_desc_right": "Pour les apprivoiser, vous devez être un nain et leur offrir du blé.", + "screen.middle-earth.playerbook.mount_cave_troll_desc": "Le Troll des cavernes, une créature redoutable qui habite au plus profond des grottes. Il attaque tout le monde lorsqu'il a faim, mais si vous êtes de tendance maléfique, vous pouvez tenter de l'apprivoiser avec des chaînes pendant qu'il dort.\n Le Troll des cavernes peut porter jusqu'à trois cavaliers sur son dos et être commandé avec un os.", + "screen.middle-earth.playerbook.mount_cave_troll_desc_right": "Il peut fracasser et charger.", + "screen.middle-earth.playerbook.mount_great_horn_desc": "Le Grand Cor vit dans les forêts de l'Anduin et les terres désolées du nord.\nC'est une créature majestueuse qui fuira tout le monde sauf les elfes. En effet, en tant qu'elfe, vous pouvez l'apprivoiser avec divers objets, tels que des trèfles, des baies sucrées, des champignons, et plus encore.", + "screen.middle-earth.playerbook.mount_great_horn_desc_right": "Les Grands Cors peuvent bondir\n et transpercer.", + "screen.middle-earth.playerbook.mount_warg_desc": "Ces loups vicieux sont élevés pour la guerre et la chasse. Ils attaquent toutes les entités de bon alignement et peuvent être montés par des orques, des snagas, des gobelins et des uruks.\n Pour apprivoiser cette bête vicieuse, donnez-lui simplement de la viande crue.", + "screen.middle-earth.playerbook.mount_warg_desc_right": "Les Wargs peuvent bondir et désarçonner les autres cavaliers de leurs montures.", + "screen.middle-earth.playerbook.mounts_desc": "Les routes de la Terre du Milieu sont longues et sinueuses, aussi envisagez une monture pour faciliter vos voyages.\n\n Ces compagnons se déclinent en toutes formes et toutes tailles, chacun ayant ses propres avantages et inconvénients.", + "screen.middle-earth.playerbook.mounts_desc_right": "Beaucoup de ces bêtes ne peuvent être apprivoisées que par certaines races.", + "screen.middle-earth.playerbook.navigate_to": "Naviguer vers", + "screen.middle-earth.playerbook.quenching": "Trempe", + "screen.middle-earth.playerbook.shaping_anvil": "Enclume de mise en forme", + "screen.middle-earth.playerbook.smithing_artisan_table_1_desc": "Placez votre tête de pioche en bronze et deux bâtons dans la Table d'artisan, et vous voilà prêt à explorer encore plus profondément sous terre avec votre nouvelle Pioche en bronze.\n\n Bien que les outils et armes simples puissent aussi être fabriqués dans une grille d'artisanat normale.", + "screen.middle-earth.playerbook.smithing_artisan_table_1_desc_right": "Fabriquer de l'équipement à la Table d'artisan confère un bonus notable de durabilité.", + "screen.middle-earth.playerbook.smithing_artisan_table_desc": "La Table d'artisan est l'atelier de prédilection des armuriers, forgerons et artisans à travers de nombreux royaumes, et sera nécessaire pour assembler des composants de forge en un produit final.", + "screen.middle-earth.playerbook.smithing_artisan_table_desc_right": "", + "screen.middle-earth.playerbook.smithing_casting_desc": "Tous les métaux en fusion peuvent être coulés en Pépites, Lingots, Baguettes, Plaques et Grandes baguettes. Différentes pièces coulées nécessiteront différentes quantités de métal en fusion pour être créées.\n\n Le creuset d'une forge peut contenir jusqu'à 16 lingots de métal liquide en fusion", + "screen.middle-earth.playerbook.smithing_casting_desc_right": "", + "screen.middle-earth.playerbook.smithing_copper_alloys_smithing_desc": "Le bronze et le métal grossier sont des alliages simples, plus durs et plus résistants que la pierre et le cuivre.\n\n Les outils en alliage de cuivre vous permettront de miner plus profondément qu'auparavant, en entrant dans la couche de Núrgon du monde et en exploitant les richesses qui s'y trouvent.\nVeillez à basculer la forge en mode alliage.", + "screen.middle-earth.playerbook.smithing_copper_alloys_smithing_desc_right": "", + "screen.middle-earth.playerbook.smithing_desc": "Un meilleur équipement sera essentiel pour survivre dans les contrées sauvages et dangereuses du monde.\n\n La forge vous permet de créer de nouvelles armes mortelles, des armures plus complexes et des outils efficaces pour creuser plus profondément.", + "screen.middle-earth.playerbook.smithing_desc_right": "Pour travailler les métaux avec plus de finesse qu'en artisanat, vous aurez besoin d'une Forge.\n\n Vous pouvez la fabriquer avec n'importe quelles pierres taillées, un four et des briques.\n Pour obtenir de l'argile pour les briques, trouvez une caverne luxuriante ou convertissez de la boue en argile", + "screen.middle-earth.playerbook.smithing_quenching_desc": "Une fois la grande baguette entièrement façonnée en tête de pioche, elle doit refroidir au toucher avant d'être travaillée davantage. Vous devez la tremper dans un chaudron rempli ; cela la refroidit instantanément.", + "screen.middle-earth.playerbook.smithing_quenching_desc_right": "Le chaudron et le seau peuvent tous deux être fabriqués avec de l'étain, que l'on trouve dans les grottes près de la surface.", + "screen.middle-earth.playerbook.smithing_shaping_anvil_1_desc": "Vous avez maintenant tous les outils nécessaires pour un forgeron amateur. Posez une Grande baguette de métal chaude sur l'enclume en pierre.\n\n Ensuite, façonnez-la en Tête de pioche. À l'aide du Marteau de forge, frappez la grande baguette à un rythme stable.", + "screen.middle-earth.playerbook.smithing_shaping_anvil_1_desc_right": "Les pièces coulées ne peuvent être retravaillées en nouvelles formes sur l'enclume de forge que lorsqu'elles sont chaudes, et refroidiront aussi avec le temps sur l'enclume.\n\n Vous pouvez réchauffer les pièces refroidies dans une forge à faible chaleur sans réinitialiser leur progression.", + "screen.middle-earth.playerbook.smithing_shaping_anvil_desc": "Les enclumes de forge sont une solution pratique pour aborder l'étape suivante de la forge.\n L'Enclume en pierre est le type d'enclume de forge le plus basique — créez-en une en posant une base de trois bûches de tout type sous six pierres de tout type.", + "screen.middle-earth.playerbook.smithing_shaping_anvil_desc_right": "Vous aurez besoin d'un Marteau de forge pour travailler vos pièces coulées sur l'Enclume de forge", + "screen.middle-earth.playerbook.spider_burrows": "Terriers d'Araignées", + "screen.middle-earth.playerbook.title": "Middle-earth", + "screen.middle-earth.playerbook.tools": "Outils", + "screen.middle-earth.playerbook.warg": "Warg", + "sounds.middle-earth.cave_troll_death": "Le Troll des cavernes meurt", + "sounds.middle-earth.cave_troll_hurt": "Le Troll des cavernes est blessé", + "sounds.middle-earth.cave_troll_idle": "Le Troll des cavernes grogne", + "sounds.middle-earth.cave_troll_roar": "Le Troll des cavernes rugit", + "sounds.middle-earth.cave_troll_step": "Pas du Troll des cavernes", + "sounds.middle-earth.chisel_enchant": "Le burin enchante", + "sounds.middle-earth.chisel_hit": "Le burin frappe", + "sounds.middle-earth.great_horn_call": "Le Grand Cor barrit", + "sounds.middle-earth.great_horn_death": "Le Grand Cor meurt", + "sounds.middle-earth.great_horn_hurt": "Le Grand Cor est blessé", + "sounds.middle-earth.great_horn_idle": "Le Grand Cor grogne", + "sounds.middle-earth.orc_drum": "Tambours orques", + "spawn.middle-earth.goblin_town.goblin_town": "Cité des Gobelins", + "spawn.middle-earth.hobgoblin_tribes.gundabad.grey_mountains": "Montagnes grises", + "spawn.middle-earth.hobgoblin_tribes.gundabad.gundabad": "Gundabad", + "spawn.middle-earth.hobgoblin_tribes.gundabad.mount_gram": "Mont Gram", + "spawn.middle-earth.moria.east_gate": "Porte de l'Est", + "spawn.middle-earth.moria.goblin_camp": "Camp de gobelins", + "spawn.middle-earth.moria.west_gate": "Porte de l'Ouest", + "spawn.middle-earth.woodland_realm.elvenkings_halls": "Les Salles du Roi elfique", + "tooltip.middle-earth.arkenstone_lore_0": "Le plus beau des joyaux trouvés sous", + "tooltip.middle-earth.arkenstone_lore_1": "la Montagne solitaire.", + "tooltip.middle-earth.author": "Auteur : ", + "tooltip.middle-earth.autumn_leaf_cape": "Cape de feuille d'automne", + "tooltip.middle-earth.biome": "Biome", + "tooltip.middle-earth.black_castellan_cape": "Cape de châtelain noir", + "tooltip.middle-earth.black_reaver_shoulder_cape": "Épaulière de ravageur noir", + "tooltip.middle-earth.dol_guldur_stalker_cape": "Cape de traqueur de Dol Guldur", + "tooltip.middle-earth.egladil_sentinel_cape": "Cape de sentinelle d'Egladil", + "tooltip.middle-earth.forge_mode_switch_alloying": "Cliquer pour passer en Mode chauffe", + "tooltip.middle-earth.forge_mode_switch_heating": "Cliquer pour passer en Mode alliage", + "tooltip.middle-earth.forge_output_mode5": "3 lingots", + "tooltip.middle-earth.forge_output_mode_await": "Sélectionnez un moule", + "tooltip.middle-earth.galadhrim_lord_cloak": "Manteau de seigneur Galadhrim", + "tooltip.middle-earth.leaf_cape": "Cape de feuilles", + "tooltip.middle-earth.leaf_litter_cape": "Cape de litière de feuilles", + "tooltip.middle-earth.liquid_chicken_nugget": "Pépite de poulet liquide", + "tooltip.middle-earth.liquid_empty": "Liquide vide", + "tooltip.middle-earth.lord_of_the_greenwood_cape": "Cape du Seigneur de la Forêt Verte", + "tooltip.middle-earth.mantle_of_yavanna": "Manteau de Yavanna", + "tooltip.middle-earth.mirk_bark_cape": "Cape d'écorce de la Forêt noire", + "tooltip.middle-earth.mirk_leaf_cape": "Cape de feuille de la Forêt noire", + "tooltip.middle-earth.race": "Race : ", + "tooltip.middle-earth.shoulder_cape_left": "Cape d'épaule gauche", + "tooltip.middle-earth.shoulder_cape_right": "Cape d'épaule droite", + "tooltip.middle-earth.silvan_lord_cape": "Cape de seigneur sylvain", + "tooltip.middle-earth.skull_spikes": "Pointes à crânes", + "tooltip.middle-earth.troll_weapon": "Arme de troll", + "tooltip.middle-earth.type": "Type : ", + "tooltip.middle-earth.warden_of_the_glade_cape": "Cape de gardien de la Clairière", + "tooltip.middle-earth.warrior_of_nightshade_cape": "Cape de guerrier de l'Ombre-de-la-nuit", + "tooltip.middle-earth.woodland_realm_royal_guard_cape": "Cape de la garde royale du Royaume Sylvestre", + "tooltip.middle-earth.woodland_realm_soldier_cape": "Cape de soldat du Royaume Sylvestre", + "trim_material.middle-earth.copper": "Cuivre", + "trim_material.middle-earth.gold": "Or", + "trim_material.middle-earth.iron": "Fer", + "trim_material.middle-earth.netherite": "Netherite", + "ui.middle-earth.map_screen.button.map_overlay_toggle": "Basculer la surcouche de la carte", + "ui.middle-earth.map_screen.button.recenter_on_player": "Recentrer sur le joueur", + "ui.middle-earth.map_screen.tooltip.biome_content": "%s", + "ui.middle-earth.map_screen.tooltip.biome_label": "[Biome] ", + "ui.middle-earth.structure_manager.button_kill_all": "Tout supprimer", + "ui.middle-earth.structure_manager.button_spawn_all": "Tout générer", + "ui.middle-earth.structure_manager.label_enable_status": "Activé : %s", + "ui.middle-earth.structure_manager.label_runtime_id": "Exécution : %s", + "ui.middle-earth.structure_manager.label_selected_id": "Sélectionné : %s" +} diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/hu_hu.json b/middle-earth/src/main/resources/assets/middle-earth/lang/hu_hu.json index 6f01d45a63..1f1e0284bf 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/hu_hu.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/hu_hu.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Véletlenszerű Frakció", "screen.me.button.spawn_randomizer": "Véletlenszerű Teleportálás", "screen.me.button.focus_current": "Fókusz Állítása", - "screen.me.button.zoom_out": "Közelítés", - "screen.me.button.zoom_in": "Távolítás", + "screen.me.button.zoom_out": "Távolítás", + "screen.me.button.zoom_in": "Közelítés", "screen.me.button.confirm": "Megerősítés", "screen.me.information.subfaction": "Szubfrakció: ", "screen.me.information.races": "Rassz", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Képernyőklikk Gomb", "key.category.me.me": "Középfölde", "key.me.hood_state_toggle": "Csuklya módjának átálíttása", - "modmenu.nameTranslation.me": "Középfölde", - "modmenu.descriptionTranslation.me": "Csatlakozz Tolkien legendás univerzumának világához, a Gyűrűk Urától a Hobbitig és még sok máshoz!", - "modmenu.summaryTranslation.me": "Csatlakozz Tolkien legendás univerzumának világához, a Gyűrűk Urától a Hobbitig és még sok máshoz!", + "modmenu.nameTranslation.middle-earth": "Középfölde", + "modmenu.descriptionTranslation.middle-earth": "Csatlakozz Tolkien legendás univerzumának világához, a Gyűrűk Urától a Hobbitig és még sok máshoz!", + "modmenu.summaryTranslation.middle-earth": "Csatlakozz Tolkien legendás univerzumának világához, a Gyűrűk Urától a Hobbitig és még sok máshoz!", "emi.category.me.forge": "Kohó", "emi.category.me.anvil_shaping": "Formázó Üllő", "emi.category.me.artisan_table": "Kézműves asztal", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/it_it.json b/middle-earth/src/main/resources/assets/middle-earth/lang/it_it.json index c150d4b801..2bb61a57df 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/it_it.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/it_it.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/nl_nl.json b/middle-earth/src/main/resources/assets/middle-earth/lang/nl_nl.json index 3395cedd10..9a44d18a57 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/nl_nl.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/nl_nl.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/pt_br.json b/middle-earth/src/main/resources/assets/middle-earth/lang/pt_br.json index f7f318914c..0fff58d2fe 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/pt_br.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/pt_br.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/ru_ru.json b/middle-earth/src/main/resources/assets/middle-earth/lang/ru_ru.json index bf94be53f1..a2c5ef05a0 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/ru_ru.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/ru_ru.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/tr_tr.json b/middle-earth/src/main/resources/assets/middle-earth/lang/tr_tr.json index a51690f905..cee6c25aed 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/tr_tr.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/tr_tr.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Randomize Faction", "screen.me.button.spawn_randomizer": "Randomize Spawn", "screen.me.button.focus_current": "Focus Toggle", - "screen.me.button.zoom_out": "Zoom In", - "screen.me.button.zoom_in": "Zoom Out", + "screen.me.button.zoom_out": "Zoom Out", + "screen.me.button.zoom_in": "Zoom In", "screen.me.button.confirm": "Confirm", "screen.me.information.subfaction": "Subfaction : ", "screen.me.information.races": "Race", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Screen Click Button", "key.category.me.me": "Middle-earth", "key.me.hood_state_toggle": "Toggle Worn Hood state", - "modmenu.nameTranslation.me": "Middle-earth", - "modmenu.descriptionTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", - "modmenu.summaryTranslation.me": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.nameTranslation.middle-earth": "Middle-earth", + "modmenu.descriptionTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", + "modmenu.summaryTranslation.middle-earth": "Join the legendary world of Tolkien's universe from The Lord of The Rings to the Hobbit and more!", "emi.category.me.forge": "Forge", "emi.category.me.anvil_shaping": "Shaping Anvil", "emi.category.me.artisan_table": "Artisan Table", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/vi_vn.json b/middle-earth/src/main/resources/assets/middle-earth/lang/vi_vn.json index a283a221ac..e23230c0a7 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/vi_vn.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/vi_vn.json @@ -6727,8 +6727,8 @@ "screen.me.button.faction_randomizer": "Phe phái ngẫu nhiên", "screen.me.button.spawn_randomizer": "Sinh sản ngẫu nhiên", "screen.me.button.focus_current": "Chuyển đổi tiêu điểm", - "screen.me.button.zoom_out": "Phóng to", - "screen.me.button.zoom_in": "Thu nhỏ", + "screen.me.button.zoom_out": "Thu nhỏ", + "screen.me.button.zoom_in": "Phóng to", "screen.me.button.confirm": "Xác nhận", "screen.me.information.subfaction": "Phe phụ : ", "screen.me.information.races": "Chủng tộc", @@ -6744,9 +6744,9 @@ "ui.me.search.screen_click_button": "Nút bấm nhấp màn hình", "key.category.me.me": "Trung-địa", "key.me.hood_state_toggle": "Chuyển đổi trạng thái Mũ trùm đầu", - "modmenu.nameTranslation.me": "Trung-địa", - "modmenu.descriptionTranslation.me": "Tham gia vào thế giới huyền thoại của vũ trụ Tolkien từ Chúa tể của những chiếc nhẫn đến Người Hobbit và hơn thế nữa!", - "modmenu.summaryTranslation.me": "Tham gia vào thế giới huyền thoại của vũ trụ Tolkien từ Chúa tể của những chiếc nhẫn đến Người Hobbit và hơn thế nữa!", + "modmenu.nameTranslation.middle-earth": "Trung-địa", + "modmenu.descriptionTranslation.middle-earth": "Tham gia vào thế giới huyền thoại của vũ trụ Tolkien từ Chúa tể của những chiếc nhẫn đến Người Hobbit và hơn thế nữa!", + "modmenu.summaryTranslation.middle-earth": "Tham gia vào thế giới huyền thoại của vũ trụ Tolkien từ Chúa tể của những chiếc nhẫn đến Người Hobbit và hơn thế nữa!", "emi.category.me.forge": "Lò rèn", "emi.category.me.anvil_shaping": "Đe định hình", "emi.category.me.artisan_table": "Bàn thợ thủ công", diff --git a/middle-earth/src/main/resources/assets/middle-earth/lang/zh_cn.json b/middle-earth/src/main/resources/assets/middle-earth/lang/zh_cn.json index d27d2ba42e..1e794143f7 100644 --- a/middle-earth/src/main/resources/assets/middle-earth/lang/zh_cn.json +++ b/middle-earth/src/main/resources/assets/middle-earth/lang/zh_cn.json @@ -81,6 +81,8 @@ "advancements.smithing.inscription_table.description": "像昔日的铁匠那样铭刻、改进你的装备", "advancements.smithing.smithing_hammer.title": "锤砧交响", "advancements.smithing.smithing_hammer.description": "制作出锻造锤", + "advancements.smithing.hot_ones.title": "小心烫嘴", + "advancements.smithing.hot_ones.description": "吃一个热辣鸡块", "advancements.middle_earth.brigand_dungeon.title": "开门查水表!", "advancements.middle_earth.brigand_dungeon.description": "突袭地牢中的匪盗!", @@ -92,7 +94,7 @@ "advancements.middle_earth.enter_woodland_realm.description": "进入黑森林王国", "advancements.middle_earth.kill_spawn_of_shelob.title": "蜘蛛?", - "advancements.middle_earth.kill_spawn_of_shelob.description": "杀死希洛布的子嗣!", + "advancements.middle_earth.kill_spawn_of_shelob.description": "杀死一只希洛布后裔!", "advancements.middle_earth.spider_burrows.title": "黏腻巢穴", "advancements.middle_earth.spider_burrows.description": "进入蜘蛛网道", @@ -456,8 +458,8 @@ "block.middle-earth.orcish_forge": "奥克锻造炉", "block.middle-earth.bellows": "风箱", "item.middle-earth.bellows": "风箱", - "block.middle-earth.treated_anvil": "普通精制铁砧", - "item.middle-earth.treated_anvil": "普通精制铁砧", + "block.middle-earth.treated_anvil": "标准精制铁砧", + "item.middle-earth.treated_anvil": "标准精制铁砧", "block.middle-earth.dwarven_treated_anvil": "矮人精制铁砧", "item.middle-earth.dwarven_treated_anvil": "矮人精制铁砧", "block.middle-earth.elven_treated_anvil": "精灵精制铁砧", @@ -1582,32 +1584,6 @@ "item.middle-earth.deadwood_wood_vertical_slab": "死亡原木竖台阶", "block.middle-earth.deadwood_wood_wall": "死亡原木墙", "item.middle-earth.deadwood_wood_wall": "死亡原木墙", - "block.middle-earth.dead_fence": "死亡木栅栏", - "item.middle-earth.dead_fence": "死亡木栅栏", - "block.middle-earth.dead_fence_gate": "死亡木栅栏门", - "item.middle-earth.dead_fence_gate": "死亡木栅栏门", - "block.middle-earth.dead_log": "死亡原木", - "item.middle-earth.dead_log": "死亡原木", - "block.middle-earth.dead_planks": "死亡木板", - "item.middle-earth.dead_planks": "死亡木板", - "block.middle-earth.dead_slab": "死亡木台阶", - "item.middle-earth.dead_slab": "死亡木台阶", - "block.middle-earth.dead_stairs": "死亡木楼梯", - "item.middle-earth.dead_stairs": "死亡木楼梯", - "block.middle-earth.dead_vertical_slab": "死亡木竖台阶", - "item.middle-earth.dead_vertical_slab": "死亡木竖台阶", - "block.middle-earth.dead_wood": "死亡木", - "item.middle-earth.dead_wood": "死亡木", - "block.middle-earth.dead_wood_fence": "死亡原木栅栏", - "item.middle-earth.dead_wood_fence": "死亡原木栅栏", - "block.middle-earth.dead_wood_slab": "死亡原木台阶", - "item.middle-earth.dead_wood_slab": "死亡原木台阶", - "block.middle-earth.dead_wood_stairs": "死亡原木楼梯", - "item.middle-earth.dead_wood_stairs": "死亡原木楼梯", - "block.middle-earth.dead_wood_vertical_slab": "死亡原木竖台阶", - "item.middle-earth.dead_wood_vertical_slab": "死亡原木竖台阶", - "block.middle-earth.dead_wood_wall": "死亡原木墙", - "item.middle-earth.dead_wood_wall": "死亡原木墙", "block.middle-earth.stripped_deadwood_log": "去皮死亡原木", "item.middle-earth.stripped_deadwood_log": "去皮死亡原木", "block.middle-earth.stripped_deadwood_wood": "去皮死亡木", @@ -9923,8 +9899,8 @@ "item.middle-earth.old_brick_vertical_slab": "古旧砖竖台阶", "block.middle-earth.old_brick_wall": "古旧砖墙", "item.middle-earth.old_brick_wall": "古旧砖墙", - "block.middle-earth.old_bricks": "老红砖", - "item.middle-earth.old_bricks": "老红砖", + "block.middle-earth.old_bricks": "古旧红砖", + "item.middle-earth.old_bricks": "古旧红砖", "block.middle-earth.plaster": "石膏", "item.middle-earth.plaster": "石膏", @@ -10120,16 +10096,16 @@ "item.middle-earth.waxed_rotten_thatch_vertical_slab": "涂蜡的腐朽茅草竖台阶", "block.middle-earth.waxed_rotten_thatch_wall": "涂蜡的腐朽茅草墙", "item.middle-earth.waxed_rotten_thatch_wall": "涂蜡的腐朽茅草墙", - "block.middle-earth.old_thatch": "老茅草", - "item.middle-earth.old_thatch": "老茅草", - "block.middle-earth.old_thatch_slab": "老茅草台阶", - "item.middle-earth.old_thatch_slab": "老茅草台阶", - "block.middle-earth.old_thatch_stairs": "老茅草楼梯", - "item.middle-earth.old_thatch_stairs": "老茅草楼梯", - "block.middle-earth.old_thatch_vertical_slab": "老茅草竖台阶", - "item.middle-earth.old_thatch_vertical_slab": "老茅草竖台阶", - "block.middle-earth.old_thatch_wall": "老茅草墙", - "item.middle-earth.old_thatch_wall": "老茅草墙", + "block.middle-earth.old_thatch": "古旧茅草", + "item.middle-earth.old_thatch": "古旧茅草", + "block.middle-earth.old_thatch_slab": "古旧茅草台阶", + "item.middle-earth.old_thatch_slab": "古旧茅草台阶", + "block.middle-earth.old_thatch_stairs": "古旧茅草楼梯", + "item.middle-earth.old_thatch_stairs": "古旧茅草楼梯", + "block.middle-earth.old_thatch_vertical_slab": "古旧茅草竖台阶", + "item.middle-earth.old_thatch_vertical_slab": "古旧茅草竖台阶", + "block.middle-earth.old_thatch_wall": "古旧茅草墙", + "item.middle-earth.old_thatch_wall": "古旧茅草墙", "block.middle-earth.thatch": "茅草", "item.middle-earth.thatch": "茅草", "block.middle-earth.thatch_slab": "茅草台阶", @@ -10140,16 +10116,16 @@ "item.middle-earth.thatch_vertical_slab": "茅草竖台阶", "block.middle-earth.thatch_wall": "茅草墙", "item.middle-earth.thatch_wall": "茅草墙", - "block.middle-earth.waxed_old_thatch": "涂蜡的老茅草", - "item.middle-earth.waxed_old_thatch": "涂蜡的老茅草", - "block.middle-earth.waxed_old_thatch_slab": "涂蜡的老茅草台阶", - "item.middle-earth.waxed_old_thatch_slab": "涂蜡的老茅草台阶", - "block.middle-earth.waxed_old_thatch_stairs": "涂蜡的老茅草楼梯", - "item.middle-earth.waxed_old_thatch_stairs": "涂蜡的老茅草楼梯", - "block.middle-earth.waxed_old_thatch_vertical_slab": "涂蜡的老茅草竖台阶", - "item.middle-earth.waxed_old_thatch_vertical_slab": "涂蜡的老茅草竖台阶", - "block.middle-earth.waxed_old_thatch_wall": "涂蜡的老茅草墙", - "item.middle-earth.waxed_old_thatch_wall": "涂蜡的老茅草墙", + "block.middle-earth.waxed_old_thatch": "涂蜡的古旧茅草", + "item.middle-earth.waxed_old_thatch": "涂蜡的古旧茅草", + "block.middle-earth.waxed_old_thatch_slab": "涂蜡的古旧茅草台阶", + "item.middle-earth.waxed_old_thatch_slab": "涂蜡的古旧茅草台阶", + "block.middle-earth.waxed_old_thatch_stairs": "涂蜡的古旧茅草楼梯", + "item.middle-earth.waxed_old_thatch_stairs": "涂蜡的古旧茅草楼梯", + "block.middle-earth.waxed_old_thatch_vertical_slab": "涂蜡的古旧茅草竖台阶", + "item.middle-earth.waxed_old_thatch_vertical_slab": "涂蜡的古旧茅草竖台阶", + "block.middle-earth.waxed_old_thatch_wall": "涂蜡的古旧茅草墙", + "item.middle-earth.waxed_old_thatch_wall": "涂蜡的古旧茅草墙", "block.middle-earth.waxed_thatch": "涂蜡的茅草", "item.middle-earth.waxed_thatch": "涂蜡的茅草", "block.middle-earth.waxed_thatch_slab": "涂蜡的茅草台阶", @@ -10222,8 +10198,8 @@ "block.middle-earth.lorien_podzol": "罗瑞恩灰化土", "item.middle-earth.lorien_podzol": "罗瑞恩灰化土", - "block.middle-earth.old_podzol": "老灰化土", - "item.middle-earth.old_podzol": "老灰化土", + "block.middle-earth.old_podzol": "古旧灰化土", + "item.middle-earth.old_podzol": "古旧灰化土", "block.middle-earth.pebbled_grass": "卵石草方块", "item.middle-earth.pebbled_grass": "卵石草方块", @@ -12029,8 +12005,6 @@ "item.middle-earth.amphora": "耳瓶", "block.middle-earth.big_brazier": "大火盆", "item.middle-earth.big_brazier": "大火盆", - "block.middle-earth.blue_lavender": "蓝色吊灯", - "item.middle-earth.blue_lavender": "蓝色吊灯", "block.middle-earth.bonfire": "篝火", "item.middle-earth.bonfire": "篝火", "block.middle-earth.brown_amphora": "棕色耳瓶", @@ -12138,11 +12112,27 @@ "item.middle-earth.watering_can": "浇水壶", "block.middle-earth.webbing": "蜘蛛网织带", "item.middle-earth.webbing": "蜘蛛网织带", - "block.middle-earth.white_lavender": "白色吊灯", - "item.middle-earth.white_lavender": "白色吊灯", + "block.middle-earth.blue_lavender": "蓝色薰衣草", + "item.middle-earth.blue_lavender": "蓝色薰衣草", + "block.middle-earth.white_lavender": "白色薰衣草", + "item.middle-earth.white_lavender": "白色薰衣草", "block.middle-earth.wooden_bucket": "木桶", "item.middle-earth.wooden_bucket": "木桶", + "block.middle-earth.chandelier": "吊灯", + "item.middle-earth.chandelier": "吊灯", + "block.middle-earth.small_chandelier": "小型吊灯", + "item.middle-earth.small_chandelier": "小型吊灯", + "block.middle-earth.bronze_chandelier": "青铜吊灯", + "item.middle-earth.bronze_chandelier": "青铜吊灯", + "block.middle-earth.small_bronze_chandelier": "小型青铜吊灯", + "item.middle-earth.small_bronze_chandelier": "小型青铜吊灯", + + "block.middle-earth.old_skull": "古旧头颅", + "item.middle-earth.old_skull": "古旧头颅", + "block.middle-earth.skeleton": "骷髅", + "item.middle-earth.skeleton": "骷髅", + "__COMMENT__": "旗帜类方块", "block.middle-earth.banner.antlers.black": "黑色鹿角", "block.middle-earth.banner.antlers.blue": "蓝色鹿角", @@ -13142,6 +13132,7 @@ "enchantment.middle-earth.stride": "阔步", "enchantment.middle-earth.tree_feller": "伐木大师", "enchantment.middle-earth.vantage": "先发制敌", + "enchantment.middle-earth.aule_blessing": "奥力的祝福", "__COMMENT__": "事件提示 - event", "event.middle-earth.join.faction.success": "你加入了%s", @@ -13178,8 +13169,55 @@ "faction.middle-earth.isengard": "艾森加德", "faction.middle-earth.mordor": "魔多", + "__COMMENT__": "铭文 - inscription", + + "inscription.middle-earth.linking_dash": "", + "inscription.middle-earth.level": "%d 级", + "inscription.middle-earth.levels": "%d 级", + + "inscription.middle-earth.resilient": "坚韧", + "inscription.middle-earth.blessing": "恩宠", + + "inscription.middle-earth.warded": "守护", + "inscription.middle-earth.tidal": "潮汐", + "inscription.middle-earth.traveller": "行者", + + "inscription.middle-earth.edge": "锋刃", + "inscription.middle-earth.cutter": "劈砍", + "inscription.middle-earth.piercer": "突破", + "inscription.middle-earth.core": "核心", + + "inscription.middle-earth.giant": "巨大", + "inscription.middle-earth.collector": "采集", + + "inscription.middle-earth.draw": "牵拉", + "inscription.middle-earth.point": "尖点", + + "inscription.middle-earth.fierce": "凶猛", + "inscription.middle-earth.forceful": "强力", + "inscription.middle-earth.noiseless": "无声", + "inscription.middle-earth.bane": "克星", + + "inscription.middle-earth.pierce": "穿刺", + "inscription.middle-earth.flame": "火焰", + "inscription.middle-earth.sturdy": "结实", + + "inscription.middle-earth.broad": "范围", + "inscription.middle-earth.careful": "细心", + "inscription.middle-earth.long": "远距", + "inscription.middle-earth.gifted": "天赋", + + "inscription.middle-earth.swift": "迅捷", + "__COMMENT__": "物品 - item", "__TODO__": "整理", + + "item.middle-earth.ceratopsian_nugget": "角龙型鸡块", + "item.middle-earth.pterosaur_nugget": "翼龙型鸡块", + "item.middle-earth.sauropod_nugget": "梁龙型鸡块", + "item.middle-earth.therapod_nugget": "暴龙型鸡块", + "item.middle-earth.thyreophoran_nugget": "甲龙型鸡块", + "item.middle-earth.player_book": "玩家之书", "item.middle-earth.brigand_key": "匪盗钥匙", "item.middle-earth.brigand_trial_spawner": "匪盗试炼刷怪笼", @@ -13328,7 +13366,7 @@ "item.middle-earth.fur": "毛皮", "item.middle-earth.gambeson": "软甲", "item.middle-earth.gambeson_cap": "软甲帽", - "item.middle-earth.gambeson_cowl": "软甲风帽", + "item.middle-earth.gambeson_cowl": "软甲篷帽", "item.middle-earth.golden_dagger": "金匕首", "item.middle-earth.golden_spear": "金矛", "item.middle-earth.gray_fur": "灰色毛皮披肩", @@ -13425,6 +13463,7 @@ "item.middle-earth.crude_ingot": "晦铜锭", "item.middle-earth.crude_lantern": "晦铜灯笼", + "item.middle-earth.crude_smithing_hammer": "晦铜锻造锤", "__COMMENT__": "装备物品:武器、盔甲、工具等", "item.middle-earth.armor_plate": "盔甲板材", @@ -13704,12 +13743,13 @@ "item.middle-earth.woodland_realm_scout_bronze_shield": "黑森林王国斥候铜盾牌", "item.middle-earth.woodland_realm_leather_silver_arming_coat": "银色黑森林王国皮革武装罩衣", "item.middle-earth.woodland_realm_silver_trimmed_ranger_helmet": "黑森林王国镶银游侠头盔", + "item.middle-earth.woodland_realm_dagger": "黑森林王国匕首", - "item.middle-earth.silvan_lord_boots": "希尔凡领主靴子", - "item.middle-earth.silvan_lord_cape": "希尔凡领主披风", - "item.middle-earth.silvan_lord_chestplate": "希尔凡领主胸甲", - "item.middle-earth.silvan_lord_helmet": "希尔凡领主头盔", - "item.middle-earth.silvan_lord_leggings": "希尔凡领主护腿", + "item.middle-earth.silvan_lord_boots": "西尔凡领主靴子", + "item.middle-earth.silvan_lord_cape": "西尔凡领主披风", + "item.middle-earth.silvan_lord_chestplate": "西尔凡领主胸甲", + "item.middle-earth.silvan_lord_helmet": "西尔凡领主头盔", + "item.middle-earth.silvan_lord_leggings": "西尔凡领主护腿", "item.middle-earth.great_horn_green_plate_armor": "绿色板材大角鹿铠", "item.middle-earth.great_horn_light_armor": "大角鹿轻铠", @@ -14194,6 +14234,11 @@ "item.middle-earth.weathered_dol_guldur_stalker_chestplate": "锈蚀的多古尔都追踪者胸甲", "item.middle-earth.weathered_dol_guldur_stalker_helmet": "锈蚀的多古尔都追踪者头盔", "item.middle-earth.weathered_dol_guldur_stalker_leggings": "锈蚀的多古尔都追踪者护腿", + "item.middle-earth.dol_guldur_ancient_flanged_shield": "多古尔都古老凸缘盾牌", + "item.middle-earth.dol_guldur_armrust_shield": "多古尔都护臂盾牌", + "item.middle-earth.dol_guldur_heavy_shield": "多古尔都重型盾牌", + "item.middle-earth.dol_guldur_heavy_skull_shield": "多古尔都重型颅纹盾牌", + "item.middle-earth.rusted_dol_guldur_ancient_flanged_shield": "锈蚀的多古尔都古老凸缘盾牌", "item.middle-earth.uruk_hai_axe": "乌鲁克斧", "item.middle-earth.uruk_hai_berserker_helmet": "乌鲁克狂战士头盔", @@ -14350,6 +14395,13 @@ "item.middle-earth.ringwraith_leggings": "戒灵护腿", "item.middle-earth.ringwraith_mail_hauberk": "戒灵锁链甲衫", + "item.middle-earth.baggy_hat": "袋状帽", + "item.middle-earth.beekeeper_mask": "蜂农面罩", + "item.middle-earth.blacksmith_apron": "铁匠围裙", + "item.middle-earth.chaperon": "风帽", + "item.middle-earth.dwarven_monocle": "矮人单片眼镜", + "item.middle-earth.glasses": "眼镜", + "__COMMENT__": "刷怪蛋物品", "item.middle-earth.stone_troll_spawn_egg": "岩石食人妖刷怪蛋", "item.middle-earth.brigand.chieftain_spawn_egg": "匪盗头目刷怪蛋", @@ -14570,6 +14622,9 @@ "key.middle-earth.map_teleport": "在地图界面中传送", "key.middle-earth.map_fullscreen_toggle": "切换地图全屏显示", + "__COMMENT__": "音乐 - music", + "middle-earth.music.menu.swept_away": "Swept Away", + "__COMMENT__": "npc数据 - npc_data", "npc_data.middle-earth.npc": "NPC", @@ -15217,7 +15272,7 @@ "tooltip.middle-earth.lorien_marchwarden_cape": "罗瑞恩边界守卫披风", "tooltip.middle-earth.lorien_marchwarden_hood": "罗瑞恩边界守卫兜帽", "tooltip.middle-earth.lord_of_the_greenwood_cape": "大绿林之王的披风", - "tooltip.middle-earth.silvan_lord_cape": "希尔凡领主披风", + "tooltip.middle-earth.silvan_lord_cape": "西尔凡领主披风", "tooltip.middle-earth.autumn_leaf_cape": "秋叶披风", "tooltip.middle-earth.leaf_cape": "树叶披风", "tooltip.middle-earth.leaf_litter_cape": "落叶披风", @@ -15272,6 +15327,7 @@ "tooltip.middle-earth.liquid_edhel_steel": "熔融埃蒂尔钢", "tooltip.middle-earth.liquid_khazad_steel": "熔融卡扎德钢", "tooltip.middle-earth.liquid_mithril": "熔融秘银", + "tooltip.middle-earth.liquid_chicken_nugget": "熔融鸡块", "__COMMENT__": "锻造相关 - trim*", "trim_pattern.middle-earth.smithing_part": "锻造部件", @@ -15338,7 +15394,7 @@ "emi.category.middle-earth.artisan_table": "工匠台", "__COMMENT__": "ModMenu 兼容", - "modmenu.nameTranslation.me": "中洲", - "modmenu.summaryTranslation.me": "在托尔金的传说故事集中沉浸冒险!", - "modmenu.descriptionTranslation.me": "在托尔金的传说故事集中沉浸冒险!" + "modmenu.nameTranslation.middle-earth": "中洲", + "modmenu.summaryTranslation.middle-earth": "在托尔金的传说故事集中沉浸冒险!", + "modmenu.descriptionTranslation.middle-earth": "在托尔金的传说故事集中沉浸冒险!" } \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/bronze_chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/bronze_chandelier.json new file mode 100644 index 0000000000..0fad5de912 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/bronze_chandelier.json @@ -0,0 +1,7 @@ +{ + "parent": "middle-earth:block/chandelier", + "textures": { + "1": "middle-earth:block/bronze_chandelier", + "particle": "middle-earth:block/bronze_chandelier" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/bronze_chandelier_1.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/bronze_chandelier_1.json new file mode 100644 index 0000000000..5860295e95 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/bronze_chandelier_1.json @@ -0,0 +1,7 @@ +{ + "parent": "middle-earth:block/chandelier_1", + "textures": { + "0": "middle-earth:block/bronze_chandelier_1", + "particle": "middle-earth:block/bronze_chandelier_1" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier.json new file mode 100644 index 0000000000..1616ff6705 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier.json @@ -0,0 +1,699 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "1": "middle-earth:block/chandelier", + "particle": "middle-earth:block/chandelier" + }, + "elements": [ + { + "from": [6, 4, 6], + "to": [10, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 4, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 1], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 1], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 1], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 1], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [16, 4, 16], + "to": [20, 5, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 3, 17]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [6, 4, 20], + "to": [10, 5, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, 21]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [-8, 4, 6], + "to": [-4, 5, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 3, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [20, 4, 6], + "to": [24, 5, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [21, 3, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [6, 4, -8], + "to": [10, 5, -4], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, -7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [-4, 4, -4], + "to": [0, 5, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [-3, 3, -3]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [-4, 4, 16], + "to": [0, 5, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [-3, 3, 17]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "from": [16, 4, -4], + "to": [20, 5, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 3, -3]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#1"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#1"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [17, 5, 17], + "to": [19, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 5, 17]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end1", + "from": [17.5, 11, 18], + "to": [18.5, 12, 18], + "rotation": {"angle": -45, "axis": "y", "origin": [18, 11, 18]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end2", + "from": [17.5, 11, 18], + "to": [18.5, 12, 18], + "rotation": {"angle": 45, "axis": "y", "origin": [18, 11, 18]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [-3, 5, 17], + "to": [-1, 11, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [-3, 5, 17]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end2", + "from": [-2.5, 11, 18], + "to": [-1.5, 12, 18], + "rotation": {"angle": -45, "axis": "y", "origin": [-2, 11, 18]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end3", + "from": [-2.5, 11, 18], + "to": [-1.5, 12, 18], + "rotation": {"angle": 45, "axis": "y", "origin": [-2, 11, 18]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [7, 5, 21], + "to": [9, 11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, 21]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [7, 5, 21], + "to": [9, 11, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, 21]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end3", + "from": [7.5, 11, 22], + "to": [8.5, 12, 22], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 11, 22]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end4", + "from": [7.5, 11, 22], + "to": [8.5, 12, 22], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 22]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [7, 5, -7], + "to": [9, 11, -5], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, -7]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [7, 5, -7], + "to": [9, 11, -5], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, -7]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end4", + "from": [7.5, 11, -6], + "to": [8.5, 12, -6], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 11, -6]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end5", + "from": [7.5, 11, -6], + "to": [8.5, 12, -6], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, -6]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [21, 5, 7], + "to": [23, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [21, 5, 7]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end4", + "from": [21.5, 11, 8], + "to": [22.5, 12, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [22, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end5", + "from": [21.5, 11, 8], + "to": [22.5, 12, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [22, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [-7, 5, 7], + "to": [-5, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, 5, 7]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end5", + "from": [-6.5, 11, 8], + "to": [-5.5, 12, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [-6, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end6", + "from": [-6.5, 11, 8], + "to": [-5.5, 12, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [-6, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [17, 5, -3], + "to": [19, 11, -1], + "rotation": {"angle": 0, "axis": "y", "origin": [17, 5, -3]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end3", + "from": [17.5, 11, -2], + "to": [18.5, 12, -2], + "rotation": {"angle": -45, "axis": "y", "origin": [18, 11, -2]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end4", + "from": [17.5, 11, -2], + "to": [18.5, 12, -2], + "rotation": {"angle": 45, "axis": "y", "origin": [18, 11, -2]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "candle", + "from": [-3, 5, -3], + "to": [-1, 11, -1], + "rotation": {"angle": 0, "axis": "y", "origin": [-3, 5, -3]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#1"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#1"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#1"} + } + }, + { + "name": "end4", + "from": [-2.5, 11, -2], + "to": [-1.5, 12, -2], + "rotation": {"angle": -45, "axis": "y", "origin": [-2, 11, -2]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "name": "end5", + "from": [-2.5, 11, -2], + "to": [-1.5, 12, -2], + "rotation": {"angle": 45, "axis": "y", "origin": [-2, 11, -2]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#1"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#1"} + } + }, + { + "from": [-8, -5, 8], + "to": [8, 4, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "south": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [8, -5, -8], + "to": [8, 4, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "east": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "west": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 270, "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-8, -5, 8], + "to": [8, 4, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "south": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [8, -5, 8], + "to": [8, 4, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "east": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "west": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 90, "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, -5, 8], + "to": [24, 4, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "south": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "texture": "#1"} + } + }, + { + "from": [-8, -5, 8], + "to": [8, 4, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "south": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [8, -5, 8], + "to": [8, 4, 24], + "rotation": {"angle": 45, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "east": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "south": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "west": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 90, "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8, -5, 8], + "to": [24, 4, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, -1, 8]}, + "faces": { + "north": {"uv": [0, 8.5, 8, 13], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "south": {"uv": [8, 8.5, 0, 13], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#1"}, + "up": {"uv": [0, 0, 3, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 3, 0], "texture": "#1"} + } + }, + { + "from": [6.5, 6, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [13, 8, 14.5, 13], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, + "south": {"uv": [13, 8, 14.5, 13], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#1"} + } + }, + { + "from": [6.5, 6, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [11.5, 8, 13, 13], "texture": "#1"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, + "south": {"uv": [11.5, 8, 13, 13], "texture": "#1"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#1"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#1"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#1"} + } + } + ], + "groups": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [9, 10, 11] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [12, 13, 14] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [15, 16, 17, 18] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [19, 20, 21, 22] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [23, 24, 25] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [26, 27, 28] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [29, 30, 31] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [32, 33, 34] + }, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_1.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_1.json new file mode 100644 index 0000000000..3ae17456c4 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_1.json @@ -0,0 +1,671 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "middle-earth:block/chandelier_1", + "particle": "middle-earth:block/chandelier_1" + }, + "elements": [ + { + "from": [-5, 0, 21], + "to": [21, 3, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, 21]}, + "faces": { + "north": {"uv": [0, 0, 13, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 13, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [13, 0, 0, 0], "texture": "#0"}, + "down": {"uv": [13, 0, 0, 0], "texture": "#0"} + } + }, + { + "from": [-5, 0, -5], + "to": [21, 3, -5], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, -5]}, + "faces": { + "north": {"uv": [0, 0, 13, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 13, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [13, 0, 0, 0], "texture": "#0"}, + "down": {"uv": [13, 0, 0, 0], "texture": "#0"} + } + }, + { + "from": [-5, 0, -5], + "to": [-5, 3, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [-5, 0, 11]}, + "faces": { + "north": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "east": {"uv": [0, 1.5, 13, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "west": {"uv": [0, 1.5, 13, 3], "texture": "#0"}, + "up": {"uv": [13, 0, 0, 0], "rotation": 270, "texture": "#0"}, + "down": {"uv": [13, 0, 0, 0], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [21, 0, -5], + "to": [21, 3, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [21, 0, 11]}, + "faces": { + "north": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "east": {"uv": [0, 1.5, 13, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "west": {"uv": [0, 1.5, 13, 3], "texture": "#0"}, + "up": {"uv": [13, 0, 0, 0], "rotation": 270, "texture": "#0"}, + "down": {"uv": [13, 0, 0, 0], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [-7, 3, 17], + "to": [-1, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [-5, 3, 19]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [17, 3, 17], + "to": [23, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [19, 3, 19]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [17, 3, -7], + "to": [23, 5, -1], + "rotation": {"angle": 0, "axis": "y", "origin": [19, 3, -5]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [-7, 3, -7], + "to": [-1, 5, -1], + "rotation": {"angle": 0, "axis": "y", "origin": [-5, 3, -5]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [5, 3, -7], + "to": [11, 5, -1], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, -5]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [17, 3, 5], + "to": [23, 5, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [19, 3, 7]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [5, 11, 5], + "to": [11, 13, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 11, 7]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [5, 3, 17], + "to": [11, 5, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, 19]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "from": [-7, 3, 5], + "to": [-1, 5, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [-5, 3, 7]}, + "faces": { + "north": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "east": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "south": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "west": {"uv": [11, 3, 14, 4], "texture": "#0"}, + "up": {"uv": [8, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [5, 3, 8, 6], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [19, 5, 7], + "to": [21, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [19, 5, 7]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end1", + "from": [19.5, 11, 8], + "to": [20.5, 12, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [20, 11, 8]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end2", + "from": [19.5, 11, 8], + "to": [20.5, 12, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [20, 11, 8]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [19, 5, 19], + "to": [21, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [19, 5, 19]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end2", + "from": [19.5, 11, 20], + "to": [20.5, 12, 20], + "rotation": {"angle": -45, "axis": "y", "origin": [20, 11, 20]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end3", + "from": [19.5, 11, 20], + "to": [20.5, 12, 20], + "rotation": {"angle": 45, "axis": "y", "origin": [20, 11, 20]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [7, 5, 19], + "to": [9, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, 19]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end3", + "from": [7.5, 11, 20], + "to": [8.5, 12, 20], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 11, 20]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end4", + "from": [7.5, 11, 20], + "to": [8.5, 12, 20], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 20]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [-5, 5, 19], + "to": [-3, 11, 21], + "rotation": {"angle": 0, "axis": "y", "origin": [-5, 5, 19]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end4", + "from": [-4.5, 11, 20], + "to": [-3.5, 12, 20], + "rotation": {"angle": -45, "axis": "y", "origin": [-4, 11, 20]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end5", + "from": [-4.5, 11, 20], + "to": [-3.5, 12, 20], + "rotation": {"angle": 45, "axis": "y", "origin": [-4, 11, 20]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [-5, 5, 7], + "to": [-3, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-5, 5, 7]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end5", + "from": [-4.5, 11, 8], + "to": [-3.5, 12, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [-4, 11, 8]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end6", + "from": [-4.5, 11, 8], + "to": [-3.5, 12, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [-4, 11, 8]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [-5, 5, -5], + "to": [-3, 11, -3], + "rotation": {"angle": 0, "axis": "y", "origin": [-5, 5, -5]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end6", + "from": [-4.5, 11, -4], + "to": [-3.5, 12, -4], + "rotation": {"angle": -45, "axis": "y", "origin": [-4, 11, -4]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end7", + "from": [-4.5, 11, -4], + "to": [-3.5, 12, -4], + "rotation": {"angle": 45, "axis": "y", "origin": [-4, 11, -4]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [7, 5, -5], + "to": [9, 11, -3], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, -5]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end7", + "from": [7.5, 11, -4], + "to": [8.5, 12, -4], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 11, -4]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end8", + "from": [7.5, 11, -4], + "to": [8.5, 12, -4], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, -4]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [19, 5, -5], + "to": [21, 11, -3], + "rotation": {"angle": 0, "axis": "y", "origin": [19, 5, -5]}, + "faces": { + "north": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "east": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "south": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "west": {"uv": [0, 4.5, 1, 7.5], "texture": "#0"}, + "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#0"}, + "down": {"uv": [0, 7.5, 1, 8.5], "texture": "#0"} + } + }, + { + "name": "end8", + "from": [19.5, 11, -4], + "to": [20.5, 12, -4], + "rotation": {"angle": -45, "axis": "y", "origin": [20, 11, -4]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end9", + "from": [19.5, 11, -4], + "to": [20.5, 12, -4], + "rotation": {"angle": 45, "axis": "y", "origin": [20, 11, -4]}, + "faces": { + "north": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 3, 0.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "from": [6.5, 0, -5], + "to": [9.5, 0, 11], + "rotation": {"angle": -45, "axis": "x", "origin": [6, 0, -5]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "up": {"uv": [14.5, 0, 16, 8], "texture": "#0"}, + "down": {"uv": [14.5, 0, 16, 8], "texture": "#0"} + } + }, + { + "from": [6.5, 0, 5], + "to": [9.5, 0, 21], + "rotation": {"angle": 45, "axis": "x", "origin": [8, 0, 21]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "up": {"uv": [14.5, 0, 16, 8], "texture": "#0"}, + "down": {"uv": [14.5, 0, 16, 8], "texture": "#0"} + } + }, + { + "from": [-5, 0, 6.5], + "to": [11, 0, 9.5], + "rotation": {"angle": 45, "axis": "z", "origin": [-5, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "up": {"uv": [14.5, 0, 16, 8], "rotation": 90, "texture": "#0"}, + "down": {"uv": [14.5, 0, 16, 8], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [5, 0, 6.5], + "to": [21, 0, 9.5], + "rotation": {"angle": -45, "axis": "z", "origin": [21, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 8, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "up": {"uv": [14.5, 0, 16, 8], "rotation": 90, "texture": "#0"}, + "down": {"uv": [14.5, 0, 16, 8], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [6.5, 13, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [14.5, 9, 16, 10.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [14.5, 9, 16, 10.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#0"} + } + }, + { + "from": [6.5, 13, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [13, 9, 14.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [13, 9, 14.5, 10.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#0"} + } + } + ], + "groups": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [13, 14, 15] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [16, 17, 18] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [19, 20, 21] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [22, 23, 24] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [25, 26, 27] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [28, 29, 30] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [31, 32, 33] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [34, 35, 36] + }, + 37, + 38, + 39, + 40, + 41, + 42 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_lit.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_lit.json new file mode 100644 index 0000000000..be400adb95 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_lit.json @@ -0,0 +1,7 @@ +{ + "parent": "middle-earth:block/chandelier", + "textures": { + "1": "middle-earth:block/chandelier_lit", + "particle": "middle-earth:block/chandelier_lit" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_lit_1.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_lit_1.json new file mode 100644 index 0000000000..7f2d4e82cd --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/chandelier_lit_1.json @@ -0,0 +1,7 @@ +{ + "parent": "middle-earth:block/chandelier_1", + "textures": { + "0": "middle-earth:block/chandelier_lit_1", + "particle": "middle-earth:block/chandelier_lit_1" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/old_skull.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/old_skull.json new file mode 100644 index 0000000000..6ecad6b406 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/old_skull.json @@ -0,0 +1,46 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton", + "particle": "middle-earth:block/skeleton" + }, + "elements": [ + { + "from": [3.9, -0.1, 3.9], + "to": [12.1, 8.1, 12.1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + } + ], + "display": { + "gui": { + "rotation": [ 30, 225, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 1, 1, 1 ] + }, + "fixed": { + "rotation": [ 0, 180, 0 ], + "translation": [ 0, 4, 0], + "scale":[ 1, 1, 1 ] + }, + "ground": { + "rotation": [ 0, 0, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + }, + "thirdperson_righthand": { + "rotation": [ 45, 45, 0 ], + "translation": [ 0, 3, 0 ], + "scale": [ 0.5, 0.5, 0.5 ] + } + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton1.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton1.json new file mode 100644 index 0000000000..6e9c1b965b --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton1.json @@ -0,0 +1,143 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [8.99, -0.01, -0.01], + "to": [11.01, 2.01, 12.01], + "rotation": {"angle": 0, "axis": "y", "origin": [11, 0, 12]}, + "faces": { + "north": {"uv": [3, 3, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 3, 3, 3.5], "texture": "#0"}, + "south": {"uv": [6.5, 3, 7, 3.5], "texture": "#0"}, + "west": {"uv": [3.5, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3.5, 3, 3, 0], "texture": "#0"}, + "down": {"uv": [4, 0, 3.5, 3], "texture": "#0"} + } + }, + { + "from": [4.99, -0.01, -0.01], + "to": [7.01, 2.01, 12.01], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 0, 12]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [4, 0, 15.9], + "to": [12, 12, 15.9], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 12.9]}, + "faces": { + "north": {"uv": [8.75, 8.5, 10.75, 11.5], "texture": "#0"}, + "east": {"uv": [8.75, 8.5, 8.75, 11.5], "texture": "#0"}, + "south": {"uv": [10.75, 8.5, 12.75, 11.5], "texture": "#0"}, + "west": {"uv": [10.75, 8.5, 10.75, 11.5], "texture": "#0"}, + "up": {"uv": [10.75, 8.5, 8.75, 8.5], "texture": "#0"}, + "down": {"uv": [12.75, 8.5, 10.75, 8.5], "texture": "#0"} + } + }, + { + "from": [4, 0, 11.9], + "to": [12, 12, 11.9], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 12.9]}, + "faces": { + "north": {"uv": [8.75, 5, 10.75, 8], "texture": "#0"}, + "east": {"uv": [8.75, 5, 8.75, 8], "texture": "#0"}, + "south": {"uv": [10.75, 5, 12.75, 8], "texture": "#0"}, + "west": {"uv": [10.75, 5, 10.75, 8], "texture": "#0"}, + "up": {"uv": [10.75, 5, 8.75, 5], "texture": "#0"}, + "down": {"uv": [12.75, 5, 10.75, 5], "texture": "#0"} + } + }, + { + "from": [4, 0, 11.9], + "to": [4, 12, 15.9], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 12.9]}, + "faces": { + "north": {"uv": [12.25, 1, 12.25, 4], "texture": "#0"}, + "east": {"uv": [11.25, 1, 12.25, 4], "texture": "#0"}, + "south": {"uv": [13.25, 1, 13.25, 4], "texture": "#0"}, + "west": {"uv": [12.25, 1, 13.25, 4], "texture": "#0"}, + "up": {"uv": [12.25, 1, 12.25, 0], "texture": "#0"}, + "down": {"uv": [12.25, 0, 12.25, 1], "texture": "#0"} + } + }, + { + "from": [12, 0, 11.9], + "to": [12, 12, 15.9], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 12.9]}, + "faces": { + "north": {"uv": [10, 1, 10, 4], "texture": "#0"}, + "east": {"uv": [9, 1, 10, 4], "texture": "#0"}, + "south": {"uv": [11, 1, 11, 4], "texture": "#0"}, + "west": {"uv": [10, 1, 11, 4], "texture": "#0"}, + "up": {"uv": [10, 1, 10, 0], "texture": "#0"}, + "down": {"uv": [10, 0, 10, 1], "texture": "#0"} + } + }, + { + "from": [11.99, -0.01, 13.99], + "to": [14.01, 12.01, 16.01], + "rotation": {"angle": 20, "axis": "x", "origin": [12, 12, 15]}, + "faces": { + "north": {"uv": [2.75, 4, 3.25, 7], "texture": "#0"}, + "east": {"uv": [2.25, 4, 2.75, 7], "texture": "#0"}, + "south": {"uv": [3.75, 4, 4.25, 7], "texture": "#0"}, + "west": {"uv": [3.25, 4, 3.75, 7], "texture": "#0"}, + "up": {"uv": [3.25, 4, 2.75, 3.5], "texture": "#0"}, + "down": {"uv": [3.75, 3.5, 3.25, 4], "texture": "#0"} + } + }, + { + "from": [1.99, -0.01, 13.99], + "to": [4.01, 12.01, 16.01], + "rotation": {"angle": 20, "axis": "x", "origin": [4, 12, 15]}, + "faces": { + "north": {"uv": [0.5, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 0.5, 7], "texture": "#0"}, + "south": {"uv": [1.5, 4, 2, 7], "texture": "#0"}, + "west": {"uv": [1, 4, 1.5, 7], "texture": "#0"}, + "up": {"uv": [1, 4, 0.5, 3.5], "texture": "#0"}, + "down": {"uv": [1.5, 3.5, 1, 4], "texture": "#0"} + } + }, + { + "from": [3.9, 11.9, 8.9], + "to": [12.1, 20.1, 17.1], + "rotation": {"angle": -45, "axis": "x", "origin": [4, 12, 14]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + } + ], + "display": {}, + "groups": [ + 0, + 1, + { + "name": "group", + "origin": [7, 0, 13], + "scope": 0, + "color": 0, + "children": [2, 3, 4, 5] + }, + 6, + 7, + 8 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton2.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton2.json new file mode 100644 index 0000000000..509c59cd87 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton2.json @@ -0,0 +1,142 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton2", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [13.99, -0.01, 0.99], + "to": [16.01, 2.01, 13.01], + "rotation": {"angle": 0, "axis": "y", "origin": [16, 1, 13]}, + "faces": { + "north": {"uv": [3, 3, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 3, 3, 3.5], "texture": "#0"}, + "south": {"uv": [6.5, 3, 7, 3.5], "texture": "#0"}, + "west": {"uv": [3.5, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3.5, 3, 3, 0], "texture": "#0"}, + "down": {"uv": [4, 0, 3.5, 3], "texture": "#0"} + } + }, + { + "from": [13.99, 4.99, 0.99], + "to": [16.01, 7.01, 13.01], + "rotation": {"angle": -10, "axis": "x", "origin": [14, 6, 13]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [4, 1, 15], + "to": [16, 9, 15], + "rotation": {"angle": 0, "axis": "z", "origin": [16, 4, 12]}, + "faces": { + "north": {"uv": [10, 3, 13, 5], "texture": "#0"}, + "east": {"uv": [10, 3, 10, 5], "texture": "#0"}, + "south": {"uv": [13, 3, 16, 5], "texture": "#0"}, + "west": {"uv": [13, 3, 13, 5], "texture": "#0"}, + "up": {"uv": [13, 3, 10, 3], "texture": "#0"}, + "down": {"uv": [16, 3, 13, 3], "texture": "#0"} + } + }, + { + "from": [4, 1, 11], + "to": [16, 9, 11], + "rotation": {"angle": 0, "axis": "z", "origin": [16, 4, 12]}, + "faces": { + "north": {"uv": [10, 14, 13, 16], "texture": "#0"}, + "east": {"uv": [10, 14, 10, 16], "texture": "#0"}, + "south": {"uv": [13, 14, 16, 16], "texture": "#0"}, + "west": {"uv": [13, 14, 13, 16], "texture": "#0"}, + "up": {"uv": [13, 14, 10, 14], "texture": "#0"}, + "down": {"uv": [16, 14, 13, 14], "texture": "#0"} + } + }, + { + "from": [4, 1, 11], + "to": [16, 1, 15], + "rotation": {"angle": 0, "axis": "z", "origin": [16, 4, 12]}, + "faces": { + "north": {"uv": [10, 1, 13, 1], "texture": "#0"}, + "east": {"uv": [9, 1, 10, 1], "texture": "#0"}, + "south": {"uv": [14, 1, 17, 1], "texture": "#0"}, + "west": {"uv": [13, 1, 14, 1], "texture": "#0"}, + "up": {"uv": [13, 1, 10, 0], "texture": "#0"}, + "down": {"uv": [16, 0, 13, 1], "texture": "#0"} + } + }, + { + "from": [4, 9, 11], + "to": [16, 9, 15], + "rotation": {"angle": 0, "axis": "z", "origin": [16, 4, 12]}, + "faces": { + "north": {"uv": [10, 1, 13, 1], "texture": "#0"}, + "east": {"uv": [9, 1, 10, 1], "texture": "#0"}, + "south": {"uv": [14, 1, 17, 1], "texture": "#0"}, + "west": {"uv": [13, 1, 14, 1], "texture": "#0"}, + "up": {"uv": [13, 1, 10, 0], "texture": "#0"}, + "down": {"uv": [16, 0, 13, 1], "texture": "#0"} + } + }, + { + "from": [7.99, -2.01, 10.99], + "to": [10.01, 10.01, 13.01], + "rotation": {"angle": 37.5, "axis": "x", "origin": [8, 10, 12]}, + "faces": { + "north": {"uv": [2.75, 4, 3.25, 7], "texture": "#0"}, + "east": {"uv": [2.25, 4, 2.75, 7], "texture": "#0"}, + "south": {"uv": [3.75, 4, 4.25, 7], "texture": "#0"}, + "west": {"uv": [3.25, 4, 3.75, 7], "texture": "#0"}, + "up": {"uv": [3.25, 4, 2.75, 3.5], "texture": "#0"}, + "down": {"uv": [3.75, 3.5, 3.25, 4], "texture": "#0"} + } + }, + { + "from": [1.99, -0.01, 0.99], + "to": [4.01, 2.01, 13.01], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 1, 13]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [-0.1, 1.9, 6.9], + "to": [8.1, 10.1, 15.1], + "rotation": {"angle": 0, "axis": "z", "origin": [0, 2, 12]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + } + ], + "groups": [ + 0, + 1, + { + "name": "group", + "origin": [7, 0, 13], + "scope": 0, + "color": 0, + "children": [2, 3, 4, 5] + }, + 6, + 7, + 8 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton3.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton3.json new file mode 100644 index 0000000000..ebbe548041 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton3.json @@ -0,0 +1,142 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton3", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [8.99, -0.01, -10.01], + "to": [11.01, 2.01, 2.01], + "rotation": {"angle": -15, "axis": "y", "origin": [11, 0, 2]}, + "faces": { + "north": {"uv": [3, 3, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 3, 3, 3.5], "texture": "#0"}, + "south": {"uv": [6.5, 3, 7, 3.5], "texture": "#0"}, + "west": {"uv": [3.5, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3.5, 3, 3, 0], "texture": "#0"}, + "down": {"uv": [4, 0, 3.5, 3], "texture": "#0"} + } + }, + { + "from": [4.99, -0.01, -8.01], + "to": [7.01, 2.01, 4.01], + "rotation": {"angle": 7.5, "axis": "y", "origin": [5, 0, 4]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [4, 0.1, 2], + "to": [12, 0.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [8.75, 11.5, 10.75, 11.5], "texture": "#0"}, + "east": {"uv": [5.75, 11.5, 8.75, 11.5], "texture": "#0"}, + "south": {"uv": [13.75, 11.5, 15.75, 11.5], "texture": "#0"}, + "west": {"uv": [10.75, 11.5, 13.75, 11.5], "texture": "#0"}, + "up": {"uv": [10.75, 11.5, 8.75, 8.5], "texture": "#0"}, + "down": {"uv": [12.75, 8.5, 10.75, 11.5], "texture": "#0"} + } + }, + { + "from": [4, 4.1, 2], + "to": [12, 4.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [8.75, 8, 10.75, 8], "texture": "#0"}, + "east": {"uv": [5.75, 8, 8.75, 8], "texture": "#0"}, + "south": {"uv": [13.75, 8, 15.75, 8], "texture": "#0"}, + "west": {"uv": [10.75, 8, 13.75, 8], "texture": "#0"}, + "up": {"uv": [10.75, 8, 8.75, 5], "texture": "#0"}, + "down": {"uv": [12.75, 5, 10.75, 8], "texture": "#0"} + } + }, + { + "from": [4, 0.1, 2], + "to": [4, 4.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [13, 0, 13, 1], "texture": "#0"}, + "east": {"uv": [10, 0, 13, 1], "texture": "#0"}, + "south": {"uv": [16, 0, 16, 1], "texture": "#0"}, + "west": {"uv": [13, 0, 16, 1], "texture": "#0"}, + "up": {"uv": [13, 0, 13, -3], "texture": "#0"}, + "down": {"uv": [13, -3, 13, 0], "texture": "#0"} + } + }, + { + "from": [12, 0.1, 2], + "to": [12, 4.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [13, 1.5, 13, 2.5], "texture": "#0"}, + "east": {"uv": [10, 1.5, 13, 2.5], "texture": "#0"}, + "south": {"uv": [16, 1.5, 16, 2.5], "texture": "#0"}, + "west": {"uv": [13, 1.5, 16, 2.5], "texture": "#0"}, + "up": {"uv": [13, 1.5, 13, -1.5], "texture": "#0"}, + "down": {"uv": [13, -1.5, 13, 1.5], "texture": "#0"} + } + }, + { + "from": [12.99, -0.01, 2.99], + "to": [15.01, 2.01, 15.01], + "rotation": {"angle": 0, "axis": "x", "origin": [13, 1, 15]}, + "faces": { + "north": {"uv": [3, 3, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 3, 3, 3.5], "texture": "#0"}, + "south": {"uv": [6.5, 3, 7, 3.5], "texture": "#0"}, + "west": {"uv": [3.5, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3.5, 3, 3, 0], "texture": "#0"}, + "down": {"uv": [4, 0, 3.5, 3], "texture": "#0"} + } + }, + { + "from": [0.99, -0.01, 0.99], + "to": [3.01, 2.01, 13.01], + "rotation": {"angle": 0, "axis": "x", "origin": [3, 1, 13]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [3.9, 0.9, 9.9], + "to": [12.1, 9.1, 18.1], + "rotation": {"angle": 45, "axis": "x", "origin": [4, 1, 15]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + } + ], + "groups": [ + 0, + 1, + { + "name": "group", + "origin": [7, 0, 13], + "scope": 0, + "color": 0, + "children": [2, 3, 4, 5] + }, + 6, + 7, + 8 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton4.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton4.json new file mode 100644 index 0000000000..b09f6fd4d6 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton4.json @@ -0,0 +1,173 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton3", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [10.99, -0.01, -0.01], + "to": [13.01, 2.01, 12.01], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 0, 12]}, + "faces": { + "north": {"uv": [3, 3, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 3, 3, 3.5], "texture": "#0"}, + "south": {"uv": [6.5, 3, 7, 3.5], "texture": "#0"}, + "west": {"uv": [3.5, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3.5, 3, 3, 0], "texture": "#0"}, + "down": {"uv": [4, 0, 3.5, 3], "texture": "#0"} + } + }, + { + "from": [2.99, -0.01, -0.01], + "to": [5.01, 2.01, 12.01], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 0, 12]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [1, 1, 2], + "to": [9, 1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [8.75, 11.5, 10.75, 11.5], "texture": "#0"}, + "east": {"uv": [5.75, 11.5, 8.75, 11.5], "texture": "#0"}, + "south": {"uv": [13.75, 11.5, 15.75, 11.5], "texture": "#0"}, + "west": {"uv": [10.75, 11.5, 13.75, 11.5], "texture": "#0"}, + "up": {"uv": [10.75, 11.5, 8.75, 8.5], "texture": "#0"}, + "down": {"uv": [12.75, 8.5, 10.75, 11.5], "texture": "#0"} + } + }, + { + "from": [1, 5, 2], + "to": [9, 5, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [8.75, 8, 10.75, 8], "texture": "#0"}, + "east": {"uv": [5.75, 8, 8.75, 8], "texture": "#0"}, + "south": {"uv": [13.75, 8, 15.75, 8], "texture": "#0"}, + "west": {"uv": [10.75, 8, 13.75, 8], "texture": "#0"}, + "up": {"uv": [10.75, 8, 8.75, 5], "texture": "#0"}, + "down": {"uv": [12.75, 5, 10.75, 8], "texture": "#0"} + } + }, + { + "from": [1, 1, 2], + "to": [1, 5, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [13, 0, 13, 1], "texture": "#0"}, + "east": {"uv": [10, 0, 13, 1], "texture": "#0"}, + "south": {"uv": [16, 0, 16, 1], "texture": "#0"}, + "west": {"uv": [13, 0, 16, 1], "texture": "#0"}, + "up": {"uv": [13, 0, 13, -3], "texture": "#0"}, + "down": {"uv": [13, -3, 13, 0], "texture": "#0"} + } + }, + { + "from": [9, 1, 2], + "to": [9, 5, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [13, 1.5, 13, 2.5], "texture": "#0"}, + "east": {"uv": [10, 1.5, 13, 2.5], "texture": "#0"}, + "south": {"uv": [16, 1.5, 16, 2.5], "texture": "#0"}, + "west": {"uv": [13, 1.5, 16, 2.5], "texture": "#0"}, + "up": {"uv": [13, 1.5, 13, -1.5], "texture": "#0"}, + "down": {"uv": [13, -1.5, 13, 1.5], "texture": "#0"} + } + }, + { + "from": [3.99, -0.01, 13.99], + "to": [16.01, 2.01, 16.01], + "rotation": {"angle": 0, "axis": "z", "origin": [4, 0, 15]}, + "faces": { + "north": {"uv": [9.5, 15.5, 12.5, 16], "texture": "#0"}, + "east": {"uv": [9, 15.5, 9.5, 16], "texture": "#0"}, + "south": {"uv": [13, 15.5, 16, 16], "texture": "#0"}, + "west": {"uv": [12.5, 15.5, 13, 16], "texture": "#0"}, + "up": {"uv": [12.5, 15.5, 9.5, 15], "texture": "#0"}, + "down": {"uv": [15.5, 15, 12.5, 15.5], "texture": "#0"} + } + }, + { + "from": [0.99, 3.99, 6.99], + "to": [13.01, 6.01, 9.01], + "rotation": {"angle": 32.5, "axis": "z", "origin": [1, 6, 8]}, + "faces": { + "north": {"uv": [9.5, 15.5, 12.5, 16], "texture": "#0"}, + "east": {"uv": [9, 15.5, 9.5, 16], "texture": "#0"}, + "south": {"uv": [13, 15.5, 16, 16], "texture": "#0"}, + "west": {"uv": [12.5, 15.5, 13, 16], "texture": "#0"}, + "up": {"uv": [12.5, 15.5, 9.5, 15], "texture": "#0"}, + "down": {"uv": [15.5, 15, 12.5, 15.5], "texture": "#0"} + } + }, + { + "from": [7.9, 2.9, 5.9], + "to": [16.1, 11.1, 14.1], + "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 3, 11]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, -135, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, -135, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + 1, + { + "name": "group", + "origin": [7, 0, 13], + "scope": 0, + "color": 0, + "children": [2, 3, 4, 5] + }, + 6, + 7, + 8 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton5.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton5.json new file mode 100644 index 0000000000..ac9e135217 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton5.json @@ -0,0 +1,128 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton3", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [9.99, -0.01, 2.99], + "to": [12.01, 2.01, 15.01], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 0, 15]}, + "faces": { + "north": {"uv": [3, 3, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 3, 3, 3.5], "texture": "#0"}, + "south": {"uv": [6.5, 3, 7, 3.5], "texture": "#0"}, + "west": {"uv": [3.5, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3.5, 3, 3, 0], "texture": "#0"}, + "down": {"uv": [4, 0, 3.5, 3], "texture": "#0"} + } + }, + { + "from": [1.99, -0.01, -0.01], + "to": [4.01, 2.01, 12.01], + "rotation": {"angle": 0, "axis": "y", "origin": [2, 0, 12]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [1, 1, 2], + "to": [9, 1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [8.75, 11.5, 10.75, 11.5], "texture": "#0"}, + "east": {"uv": [5.75, 11.5, 8.75, 11.5], "texture": "#0"}, + "south": {"uv": [13.75, 11.5, 15.75, 11.5], "texture": "#0"}, + "west": {"uv": [10.75, 11.5, 13.75, 11.5], "texture": "#0"}, + "up": {"uv": [10.75, 11.5, 8.75, 8.5], "texture": "#0"}, + "down": {"uv": [12.75, 8.5, 10.75, 11.5], "texture": "#0"} + } + }, + { + "from": [1, 5, 2], + "to": [9, 5, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [8.75, 8, 10.75, 8], "texture": "#0"}, + "east": {"uv": [5.75, 8, 8.75, 8], "texture": "#0"}, + "south": {"uv": [13.75, 8, 15.75, 8], "texture": "#0"}, + "west": {"uv": [10.75, 8, 13.75, 8], "texture": "#0"}, + "up": {"uv": [10.75, 8, 8.75, 5], "texture": "#0"}, + "down": {"uv": [12.75, 5, 10.75, 8], "texture": "#0"} + } + }, + { + "from": [1, 1, 2], + "to": [1, 5, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [13, 0, 13, 1], "texture": "#0"}, + "east": {"uv": [10, 0, 13, 1], "texture": "#0"}, + "south": {"uv": [16, 0, 16, 1], "texture": "#0"}, + "west": {"uv": [13, 0, 16, 1], "texture": "#0"}, + "up": {"uv": [13, 0, 13, -3], "texture": "#0"}, + "down": {"uv": [13, -3, 13, 0], "texture": "#0"} + } + }, + { + "from": [9, 1, 2], + "to": [9, 5, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [4, 4, 2]}, + "faces": { + "north": {"uv": [13, 0, 13, 1], "texture": "#0"}, + "east": {"uv": [10, 0, 13, 1], "texture": "#0"}, + "south": {"uv": [16, 0, 16, 1], "texture": "#0"}, + "west": {"uv": [13, 0, 16, 1], "texture": "#0"}, + "up": {"uv": [13, 0, 13, -3], "texture": "#0"}, + "down": {"uv": [13, -3, 13, 0], "texture": "#0"} + } + }, + { + "from": [-1.01, 4.99, 10.99], + "to": [11.01, 7.01, 13.01], + "rotation": {"angle": 0, "axis": "z", "origin": [-1, 5, 12]}, + "faces": { + "north": {"uv": [9.5, 15.5, 12.5, 16], "texture": "#0"}, + "east": {"uv": [9, 15.5, 9.5, 16], "texture": "#0"}, + "south": {"uv": [13, 15.5, 16, 16], "texture": "#0"}, + "west": {"uv": [12.5, 15.5, 13, 16], "texture": "#0"}, + "up": {"uv": [12.5, 15.5, 9.5, 15], "texture": "#0"}, + "down": {"uv": [15.5, 15, 12.5, 15.5], "texture": "#0"} + } + }, + { + "from": [5.99, 5.99, 6.99], + "to": [18.01, 8.01, 9.01], + "rotation": {"angle": -32.5, "axis": "z", "origin": [6, 8, 8]}, + "faces": { + "north": {"uv": [9.5, 15.5, 12.5, 16], "texture": "#0"}, + "east": {"uv": [9, 15.5, 9.5, 16], "texture": "#0"}, + "south": {"uv": [13, 15.5, 16, 16], "texture": "#0"}, + "west": {"uv": [12.5, 15.5, 13, 16], "texture": "#0"}, + "up": {"uv": [12.5, 15.5, 9.5, 15], "texture": "#0"}, + "down": {"uv": [15.5, 15, 12.5, 15.5], "texture": "#0"} + } + } + ], + "groups": [ + 0, + 1, + { + "name": "group", + "origin": [7, 0, 13], + "scope": 0, + "color": 0, + "children": [2, 3, 4, 5] + }, + 6, + 7 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton6.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton6.json new file mode 100644 index 0000000000..8b9e4c0b2f --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton6.json @@ -0,0 +1,72 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton3", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [4, 0.1, 2], + "to": [12, 0.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [8.75, 11.5, 10.75, 11.5], "texture": "#0"}, + "east": {"uv": [5.75, 11.5, 8.75, 11.5], "texture": "#0"}, + "south": {"uv": [13.75, 11.5, 15.75, 11.5], "texture": "#0"}, + "west": {"uv": [10.75, 11.5, 13.75, 11.5], "texture": "#0"}, + "up": {"uv": [10.75, 11.5, 8.75, 8.5], "texture": "#0"}, + "down": {"uv": [12.75, 8.5, 10.75, 11.5], "texture": "#0"} + } + }, + { + "from": [4, 4.1, 2], + "to": [12, 4.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [8.75, 8, 10.75, 8], "texture": "#0"}, + "east": {"uv": [5.75, 8, 8.75, 8], "texture": "#0"}, + "south": {"uv": [13.75, 8, 15.75, 8], "texture": "#0"}, + "west": {"uv": [10.75, 8, 13.75, 8], "texture": "#0"}, + "up": {"uv": [10.75, 8, 8.75, 5], "texture": "#0"}, + "down": {"uv": [12.75, 5, 10.75, 8], "texture": "#0"} + } + }, + { + "from": [4, 0.1, 2], + "to": [4, 4.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [13, 0, 13, 1], "texture": "#0"}, + "east": {"uv": [10, 0, 13, 1], "texture": "#0"}, + "south": {"uv": [16, 0, 16, 1], "texture": "#0"}, + "west": {"uv": [13, 0, 16, 1], "texture": "#0"}, + "up": {"uv": [13, 0, 13, -3], "texture": "#0"}, + "down": {"uv": [13, -3, 13, 0], "texture": "#0"} + } + }, + { + "from": [12, 0.1, 2], + "to": [12, 4.1, 14], + "rotation": {"angle": 0, "axis": "x", "origin": [7, 3.1, 2]}, + "faces": { + "north": {"uv": [13, 1.5, 13, 2.5], "texture": "#0"}, + "east": {"uv": [10, 1.5, 13, 2.5], "texture": "#0"}, + "south": {"uv": [16, 1.5, 16, 2.5], "texture": "#0"}, + "west": {"uv": [13, 1.5, 16, 2.5], "texture": "#0"}, + "up": {"uv": [13, 1.5, 13, -1.5], "texture": "#0"}, + "down": {"uv": [13, -1.5, 13, 1.5], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [7, 0, 13], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton7.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton7.json new file mode 100644 index 0000000000..e10d081b7a --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton7.json @@ -0,0 +1,37 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton3", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [6.99, -0.01, 2.99], + "to": [9.01, 2.01, 15.01], + "rotation": {"angle": 27.5, "axis": "y", "origin": [7, 0, 15]}, + "faces": { + "north": {"uv": [3, 10, 3.5, 10.5], "texture": "#0"}, + "east": {"uv": [0, 10, 3, 10.5], "texture": "#0"}, + "south": {"uv": [6.5, 10, 7, 10.5], "texture": "#0"}, + "west": {"uv": [3.5, 10, 6.5, 10.5], "texture": "#0"}, + "up": {"uv": [3.5, 10, 3, 7], "texture": "#0"}, + "down": {"uv": [4, 7, 3.5, 10], "texture": "#0"} + } + }, + { + "from": [11.99, -0.01, 2.99], + "to": [14.01, 2.01, 15.01], + "rotation": {"angle": 0, "axis": "y", "origin": [12, 0, 15]}, + "faces": { + "north": {"uv": [3, 3, 3.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 3, 3, 3.5], "texture": "#0"}, + "south": {"uv": [6.5, 3, 7, 3.5], "texture": "#0"}, + "west": {"uv": [3.5, 3, 6.5, 3.5], "texture": "#0"}, + "up": {"uv": [3.5, 3, 3, 0], "texture": "#0"}, + "down": {"uv": [4, 0, 3.5, 3], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton8.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton8.json new file mode 100644 index 0000000000..5cc89c24f2 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton8.json @@ -0,0 +1,37 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton8", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [6.9, -0.1, 0.9], + "to": [15.1, 8.1, 9.1], + "rotation": {"angle": -17.5, "axis": "y", "origin": [11, 0, 5]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + }, + { + "from": [1, 0, 8], + "to": [9, 8, 16], + "rotation": {"angle": 12.5, "axis": "y", "origin": [5, 0, 12]}, + "faces": { + "north": {"uv": [10, 14, 12, 16], "texture": "#0"}, + "east": {"uv": [8, 14, 10, 16], "texture": "#0"}, + "south": {"uv": [14, 14, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 14, 14, 16], "texture": "#0"}, + "up": {"uv": [12, 14, 10, 12], "texture": "#0"}, + "down": {"uv": [14, 12, 12, 14], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton9.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton9.json new file mode 100644 index 0000000000..5d8420c068 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/skeleton9.json @@ -0,0 +1,76 @@ +{ + "format_version": "1.21.6", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "0": "middle-earth:block/skeleton9", + "particle": "minecraft:block/bone_block_side" + }, + "elements": [ + { + "from": [9.9, -0.1, -1.1], + "to": [18.1, 8.1, 7.1], + "rotation": {"angle": -17.5, "axis": "y", "origin": [14, 0, 3]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + }, + { + "from": [0.9, -0.1, 9.9], + "to": [9.1, 8.1, 18.1], + "rotation": {"angle": 12.5, "axis": "y", "origin": [5, 0, 14]}, + "faces": { + "north": {"uv": [10, 14, 12, 16], "texture": "#0"}, + "east": {"uv": [8, 14, 10, 16], "texture": "#0"}, + "south": {"uv": [14, 14, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 14, 14, 16], "texture": "#0"}, + "up": {"uv": [12, 14, 10, 12], "texture": "#0"}, + "down": {"uv": [14, 12, 12, 14], "texture": "#0"} + } + }, + { + "from": [10, 0, 10], + "to": [18, 8, 18], + "rotation": {"angle": -42.5, "axis": "y", "origin": [14, 0, 14]}, + "faces": { + "north": {"uv": [2, 10, 4, 12], "texture": "#0"}, + "east": {"uv": [0, 10, 2, 12], "texture": "#0"}, + "south": {"uv": [6, 10, 8, 12], "texture": "#0"}, + "west": {"uv": [4, 10, 6, 12], "texture": "#0"}, + "up": {"uv": [4, 10, 2, 8], "texture": "#0"}, + "down": {"uv": [6, 8, 4, 10], "texture": "#0"} + } + }, + { + "from": [5, 8, 4], + "to": [13, 16, 12], + "rotation": {"angle": 12.5, "axis": "y", "origin": [9, 8, 8]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + }, + { + "from": [1, 0, 0], + "to": [9, 8, 8], + "rotation": {"angle": 42.5, "axis": "y", "origin": [5, 0, 4]}, + "faces": { + "north": {"uv": [2, 14, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 14, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 14, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 14, 6, 16], "texture": "#0"}, + "up": {"uv": [4, 14, 2, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 4, 14], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/small_bronze_chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_bronze_chandelier.json new file mode 100644 index 0000000000..433ebfd6f6 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_bronze_chandelier.json @@ -0,0 +1,7 @@ +{ + "parent": "middle-earth:block/small_chandelier", + "textures": { + "0": "middle-earth:block/bronze_chandelier", + "particle": "middle-earth:block/bronze_chandelier" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/small_bronze_chandelier_1.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_bronze_chandelier_1.json new file mode 100644 index 0000000000..85fbcea0b9 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_bronze_chandelier_1.json @@ -0,0 +1,7 @@ +{ + "parent": "middle-earth:block/small_chandelier_1", + "textures": { + "0": "middle-earth:block/small_bronze_chandelier_1", + "particle": "middle-earth:block/small_bronze_chandelier_1" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/small_chandelier.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_chandelier.json new file mode 100644 index 0000000000..9e721e9c0b --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_chandelier.json @@ -0,0 +1,364 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "middle-earth:block/small_chandelier", + "particle": "middle-earth:block/small_chandelier" + }, + "elements": [ + { + "from": [6, 4, 6], + "to": [10, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 4, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [13, 4, 13], + "to": [17, 5, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 3, 14]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [-1, 4, -1], + "to": [3, 5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 3, 0]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [-1, 4, 13], + "to": [3, 5, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 3, 14]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [13, 4, -1], + "to": [17, 5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 3, 0]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [14, 5, 14], + "to": [16, 11, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 5, 14]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end1", + "from": [14.5, 11, 15], + "to": [15.5, 12, 15], + "rotation": {"angle": -45, "axis": "y", "origin": [15, 11, 15]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end2", + "from": [14.5, 11, 15], + "to": [15.5, 12, 15], + "rotation": {"angle": 45, "axis": "y", "origin": [15, 11, 15]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [0, 5, 14], + "to": [2, 11, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 14]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end2", + "from": [0.5, 11, 15], + "to": [1.5, 12, 15], + "rotation": {"angle": -45, "axis": "y", "origin": [1, 11, 15]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end3", + "from": [0.5, 11, 15], + "to": [1.5, 12, 15], + "rotation": {"angle": 45, "axis": "y", "origin": [1, 11, 15]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [14, 5, 0], + "to": [16, 11, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 5, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end3", + "from": [14.5, 11, 1], + "to": [15.5, 12, 1], + "rotation": {"angle": -45, "axis": "y", "origin": [15, 11, 1]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end4", + "from": [14.5, 11, 1], + "to": [15.5, 12, 1], + "rotation": {"angle": 45, "axis": "y", "origin": [15, 11, 1]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [0, 5, 0], + "to": [2, 11, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 5, 0]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end4", + "from": [0.5, 11, 1], + "to": [1.5, 12, 1], + "rotation": {"angle": -45, "axis": "y", "origin": [1, 11, 1]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end5", + "from": [0.5, 11, 1], + "to": [1.5, 12, 1], + "rotation": {"angle": 45, "axis": "y", "origin": [1, 11, 1]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "from": [8, 0, -3], + "to": [8, 5, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "east": {"uv": [5.5, 13.5, 0, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "west": {"uv": [0, 13.5, 5.5, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [8, 0, 8], + "to": [19, 5, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 13.5, 5.5, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "south": {"uv": [5.5, 13.5, 0, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "texture": "#0"} + } + }, + { + "from": [8, 0, 8], + "to": [8, 5, 19], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "east": {"uv": [0, 13.5, 5.5, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "west": {"uv": [5.5, 13.5, 0, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [-3, 0, 8], + "to": [8, 5, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [5.5, 13.5, 0, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "south": {"uv": [0, 13.5, 5.5, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [6.5, 6, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [13, 8, 14.5, 13], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [13, 8, 14.5, 13], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#0"} + } + }, + { + "from": [6.5, 6, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [11.5, 8, 13, 13], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [11.5, 8, 13, 13], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#0"} + } + } + ], + "display": {}, + "groups": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [5, 6, 7] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [8, 9, 10] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [11, 12, 13] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [14, 15, 16] + }, + 17, + 18, + 19, + 20, + 21, + 22 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/block/small_chandelier_1.json b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_chandelier_1.json new file mode 100644 index 0000000000..c2f1851a0d --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/block/small_chandelier_1.json @@ -0,0 +1,433 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "middle-earth:block/small_chandelier_1", + "particle": "middle-earth:block/small_chandelier_1" + }, + "elements": [ + { + "from": [6, 2, 6], + "to": [10, 4, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 2, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [12, 4, 6], + "to": [16, 5, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 3, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [0, 4, 6], + "to": [4, 5, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 3, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [6, 11, 6], + "to": [10, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 11, 7]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 1], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [6, 4, 12], + "to": [10, 5, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, 13]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "from": [6, 4, 0], + "to": [10, 5, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 3, 1]}, + "faces": { + "north": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "east": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "south": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "west": {"uv": [0.5, 0, 2.5, 0.5], "texture": "#0"}, + "up": {"uv": [5.5, 0.5, 7.5, 2.5], "texture": "#0"}, + "down": {"uv": [5.5, 3.5, 7.5, 5.5], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [13, 5, 7], + "to": [15, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [13, 5, 7]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end1", + "from": [13.5, 11, 8], + "to": [14.5, 12, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [14, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end2", + "from": [13.5, 11, 8], + "to": [14.5, 12, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [14, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [1, 5, 7], + "to": [3, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 5, 7]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end2", + "from": [1.5, 11, 8], + "to": [2.5, 12, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [2, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end3", + "from": [1.5, 11, 8], + "to": [2.5, 12, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [2, 11, 8]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [7, 5, 1], + "to": [9, 11, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, 1]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end3", + "from": [7.5, 11, 2], + "to": [8.5, 12, 2], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 11, 2]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end4", + "from": [7.5, 11, 2], + "to": [8.5, 12, 2], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 2]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "candle", + "from": [7, 5, 13], + "to": [9, 11, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 5, 13]}, + "faces": { + "north": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "east": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "south": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "west": {"uv": [0, 4, 1, 7], "texture": "#0"}, + "up": {"uv": [0, 3, 1, 4], "texture": "#0"}, + "down": {"uv": [0, 7, 1, 8], "texture": "#0"} + } + }, + { + "name": "end4", + "from": [7.5, 11, 14], + "to": [8.5, 12, 14], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 11, 14]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "name": "end5", + "from": [7.5, 11, 14], + "to": [8.5, 12, 14], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 11, 14]}, + "faces": { + "north": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0.5, 0], "texture": "#0"} + } + }, + { + "from": [9, 0, 8], + "to": [15, 5, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 0, 7]}, + "faces": { + "north": {"uv": [13, 0, 16, 2.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "south": {"uv": [16, 0, 13, 2.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "texture": "#0"} + } + }, + { + "from": [1, 0, 8], + "to": [7, 5, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 8]}, + "faces": { + "north": {"uv": [16, 0, 13, 2.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "south": {"uv": [13, 0, 16, 2.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [8, 0, 1], + "to": [8, 5, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 7]}, + "faces": { + "north": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "east": {"uv": [16, 0, 13, 2.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "west": {"uv": [13, 0, 16, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [8, 0, 9], + "to": [8, 5, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 9]}, + "faces": { + "north": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "east": {"uv": [13, 0, 16, 2.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 2.5], "texture": "#0"}, + "west": {"uv": [16, 0, 13, 2.5], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 0], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 3, 0], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [12, 5, 6.5], + "to": [12, 13, 9.5], + "rotation": {"angle": 22.5, "axis": "z", "origin": [12, 5, 7]}, + "faces": { + "north": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "east": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "west": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 1.5], "texture": "#0"} + } + }, + { + "from": [4, 5, 6.5], + "to": [4, 13, 9.5], + "rotation": {"angle": -22.5, "axis": "z", "origin": [4, 5, 7]}, + "faces": { + "north": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "east": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "west": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 1.5], "texture": "#0"} + } + }, + { + "from": [6.5, 5, 12], + "to": [9.5, 13, 12], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 5, 12]}, + "faces": { + "north": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "south": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 1.5], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 0, 1.5], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [6.5, 5, 4], + "to": [9.5, 13, 4], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 5, 4]}, + "faces": { + "north": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "south": {"uv": [14.5, 5.5, 16, 9.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 4], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 1.5], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 0, 1.5], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [6.5, 12, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": 45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [11, 11, 12.5, 13], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [11, 11, 12.5, 13], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#0"} + } + }, + { + "from": [6.5, 12, 8], + "to": [9.5, 16, 8], + "rotation": {"angle": -45, "axis": "y", "origin": [8, 16, 8]}, + "faces": { + "north": {"uv": [12.5, 8.5, 14, 10.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "south": {"uv": [12.5, 8.5, 14, 10.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 0], "texture": "#0"} + } + } + ], + "groups": [ + 0, + 1, + 2, + 3, + 4, + 5, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [6, 7, 8] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [9, 10, 11] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [12, 13, 14] + }, + { + "name": "candle", + "origin": [8, 8, 8], + "scope": 0, + "color": 0, + "children": [15, 16, 17] + }, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_ancient_flanged_shield.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_ancient_flanged_shield.json new file mode 100644 index 0000000000..66eb5b812d --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_ancient_flanged_shield.json @@ -0,0 +1,347 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "2": "middle-earth:item/dol_guldur_ancient_flanged_shield", + "particle": "middle-earth:item/dol_guldur_ancient_flanged_shield" + }, + "elements": [ + { + "name": "Handle", + "from": [5, 11, 9], + "to": [11, 13, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12.5, 12]}, + "faces": { + "north": {"uv": [12, 0, 12.5, 1.5], "rotation": 90, "texture": "#2"}, + "east": {"uv": [10.5, 1.5, 9, 2], "rotation": 180, "texture": "#2"}, + "south": {"uv": [12.5, 0, 13, 1.5], "rotation": 270, "texture": "#2"}, + "west": {"uv": [12, 2, 10.5, 1.5], "texture": "#2"}, + "up": {"uv": [9, 0, 10.5, 1.5], "rotation": 270, "texture": "#2"}, + "down": {"uv": [10.5, 0, 12, 1.5], "rotation": 270, "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_19", + "from": [9, 2, 8], + "to": [11, 3, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3, 4.5, 2.5, 4.75], "texture": "#2"}, + "east": {"uv": [11.75, 6.5, 12, 6.75], "texture": "#2"}, + "south": {"uv": [7, 4.5, 7.5, 4.75], "texture": "#2"}, + "west": {"uv": [11.5, 6.5, 11.75, 6.75], "texture": "#2"}, + "up": {"uv": [11.5, 6.5, 12, 6.75], "texture": "#2"}, + "down": {"uv": [11.5, 6.5, 12, 6.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_18", + "from": [6, 2, 8], + "to": [7, 3, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2, 4.5, 1.75, 4.75], "texture": "#2"}, + "east": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"}, + "south": {"uv": [6.25, 4.5, 6.5, 4.75], "texture": "#2"}, + "west": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"}, + "up": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"}, + "down": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_17", + "from": [10, 3, 8], + "to": [13, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3.5, 4.25, 2.75, 4.5], "texture": "#2"}, + "east": {"uv": [12.25, 6.25, 12.5, 6.5], "texture": "#2"}, + "south": {"uv": [7.25, 4.25, 8, 4.5], "texture": "#2"}, + "west": {"uv": [11.75, 6.25, 12, 6.5], "texture": "#2"}, + "up": {"uv": [11.75, 6.25, 12.5, 6.5], "texture": "#2"}, + "down": {"uv": [11.75, 6.25, 12.5, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_16", + "from": [5, 2, 8], + "to": [6, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1.75, 4.25, 1.5, 4.75], "texture": "#2"}, + "east": {"uv": [10.5, 6.25, 10.75, 6.75], "texture": "#2"}, + "south": {"uv": [6, 4.25, 6.25, 4.75], "texture": "#2"}, + "west": {"uv": [10.5, 6.25, 10.75, 6.75], "texture": "#2"}, + "up": {"uv": [10.5, 6.25, 10.75, 6.5], "texture": "#2"}, + "down": {"uv": [10.5, 6.5, 10.75, 6.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_15", + "from": [16, 8, 8], + "to": [17, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [4.5, 1.5, 4.25, 3.25], "texture": "#2"}, + "east": {"uv": [13.25, 3.5, 13.5, 5.25], "texture": "#2"}, + "south": {"uv": [8.75, 1.5, 9, 3.25], "texture": "#2"}, + "west": {"uv": [13.25, 3.5, 13.5, 5.25], "texture": "#2"}, + "up": {"uv": [13.25, 3.5, 13.5, 3.75], "texture": "#2"}, + "down": {"uv": [13.25, 5, 13.5, 5.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_14", + "from": [-1, 8, 8], + "to": [0, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [0.25, 1.5, 0, 3.25], "texture": "#2"}, + "east": {"uv": [9, 3.5, 9.25, 5.25], "texture": "#2"}, + "south": {"uv": [4.5, 1.5, 4.75, 3.25], "texture": "#2"}, + "west": {"uv": [9, 3.5, 9.25, 5.25], "texture": "#2"}, + "up": {"uv": [9, 3.5, 9.25, 3.75], "texture": "#2"}, + "down": {"uv": [9, 5, 9.25, 5.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_13", + "from": [15, 6, 8], + "to": [16, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [4.25, 1, 4, 3.75], "texture": "#2"}, + "east": {"uv": [13, 3, 13.25, 5.75], "texture": "#2"}, + "south": {"uv": [8.5, 1, 8.75, 3.75], "texture": "#2"}, + "west": {"uv": [13, 3, 13.25, 5.75], "texture": "#2"}, + "up": {"uv": [13, 3, 13.25, 3.25], "texture": "#2"}, + "down": {"uv": [13, 5.5, 13.25, 5.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_12", + "from": [7, 6, 8], + "to": [9, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2.5, 1, 2, 3.75], "texture": "#2"}, + "east": {"uv": [11.25, 3, 11.5, 5.75], "texture": "#2"}, + "south": {"uv": [6.5, 1, 7, 3.75], "texture": "#2"}, + "west": {"uv": [11, 3, 11.25, 5.75], "texture": "#2"}, + "up": {"uv": [11, 3, 11.5, 3.25], "texture": "#2"}, + "down": {"uv": [11, 5.5, 11.5, 5.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_11", + "from": [0, 6, 8], + "to": [1, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [0.5, 1, 0.25, 3.75], "texture": "#2"}, + "east": {"uv": [9.25, 3, 9.5, 5.75], "texture": "#2"}, + "south": {"uv": [4.75, 1, 5, 3.75], "texture": "#2"}, + "west": {"uv": [9.25, 3, 9.5, 5.75], "texture": "#2"}, + "up": {"uv": [9.25, 3, 9.5, 3.25], "texture": "#2"}, + "down": {"uv": [9.25, 5.5, 9.5, 5.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_10", + "from": [14, 5, 8], + "to": [15, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [4, 0.75, 3.75, 4], "texture": "#2"}, + "east": {"uv": [12.75, 2.75, 13, 6], "texture": "#2"}, + "south": {"uv": [8.25, 0.75, 8.5, 4], "texture": "#2"}, + "west": {"uv": [12.75, 2.75, 13, 6], "texture": "#2"}, + "up": {"uv": [12.75, 2.75, 13, 3], "texture": "#2"}, + "down": {"uv": [12.75, 5.75, 13, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_9", + "from": [9, 5, 8], + "to": [11, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3, 0.75, 2.5, 4], "texture": "#2"}, + "east": {"uv": [11.75, 2.75, 12, 6], "texture": "#2"}, + "south": {"uv": [7, 0.75, 7.5, 4], "texture": "#2"}, + "west": {"uv": [11.5, 2.75, 11.75, 6], "texture": "#2"}, + "up": {"uv": [11.5, 2.75, 12, 3], "texture": "#2"}, + "down": {"uv": [11.5, 5.75, 12, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_8", + "from": [5, 5, 8], + "to": [7, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2, 0.75, 1.5, 4], "texture": "#2"}, + "east": {"uv": [10.75, 2.75, 11, 6], "texture": "#2"}, + "south": {"uv": [6, 0.75, 6.5, 4], "texture": "#2"}, + "west": {"uv": [10.5, 2.75, 10.75, 6], "texture": "#2"}, + "up": {"uv": [10.5, 2.75, 11, 3], "texture": "#2"}, + "down": {"uv": [10.5, 5.75, 11, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_7", + "from": [1, 5, 8], + "to": [2, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [0.75, 0.75, 0.5, 4], "texture": "#2"}, + "east": {"uv": [9.5, 2.75, 9.75, 6], "texture": "#2"}, + "south": {"uv": [5, 0.75, 5.25, 4], "texture": "#2"}, + "west": {"uv": [9.5, 2.75, 9.75, 6], "texture": "#2"}, + "up": {"uv": [9.5, 2.75, 9.75, 3], "texture": "#2"}, + "down": {"uv": [9.5, 5.75, 9.75, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_6", + "from": [11, 4, 8], + "to": [14, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3.75, 0.5, 3, 4.25], "texture": "#2"}, + "east": {"uv": [12.5, 2.5, 12.75, 6.25], "texture": "#2"}, + "south": {"uv": [7.5, 0.5, 8.25, 4.25], "texture": "#2"}, + "west": {"uv": [12, 2.5, 12.25, 6.25], "texture": "#2"}, + "up": {"uv": [12, 2.5, 12.75, 2.75], "texture": "#2"}, + "down": {"uv": [12, 6, 12.75, 6.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_5", + "from": [2, 4, 8], + "to": [3, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1, 0.5, 0.75, 4.25], "texture": "#2"}, + "east": {"uv": [9.75, 2.5, 10, 6.25], "texture": "#2"}, + "south": {"uv": [5.25, 0.5, 5.5, 4.25], "texture": "#2"}, + "west": {"uv": [9.75, 2.5, 10, 6.25], "texture": "#2"}, + "up": {"uv": [9.75, 2.5, 10, 2.75], "texture": "#2"}, + "down": {"uv": [9.75, 6, 10, 6.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_4", + "from": [10, 19, 8], + "to": [13, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3.5, 0.25, 2.75, 0.5], "texture": "#2"}, + "east": {"uv": [12.25, 2.25, 12.5, 2.5], "texture": "#2"}, + "south": {"uv": [7.25, 0.25, 8, 0.5], "texture": "#2"}, + "west": {"uv": [11.75, 2.25, 12, 2.5], "texture": "#2"}, + "up": {"uv": [11.75, 2.25, 12.5, 2.5], "texture": "#2"}, + "down": {"uv": [11.75, 2.25, 12.5, 2.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_3", + "from": [5, 19, 8], + "to": [6, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1.75, 0.25, 1.5, 0.5], "texture": "#2"}, + "east": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"}, + "south": {"uv": [6, 0.25, 6.25, 0.5], "texture": "#2"}, + "west": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"}, + "up": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"}, + "down": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_2", + "from": [3, 3, 8], + "to": [5, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1.5, 0.25, 1, 4.5], "texture": "#2"}, + "east": {"uv": [10.25, 2.25, 10.5, 6.5], "texture": "#2"}, + "south": {"uv": [5.5, 0.25, 6, 4.5], "texture": "#2"}, + "west": {"uv": [10, 2.25, 10.25, 6.5], "texture": "#2"}, + "up": {"uv": [10, 2.25, 10.5, 2.5], "texture": "#2"}, + "down": {"uv": [10, 6.25, 10.5, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_1", + "from": [9, 20, 8], + "to": [11, 21, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3, 0, 2.5, 0.25], "texture": "#2"}, + "east": {"uv": [11.75, 2, 12, 2.25], "texture": "#2"}, + "south": {"uv": [7, 0, 7.5, 0.25], "texture": "#2"}, + "west": {"uv": [11.5, 2, 11.75, 2.25], "texture": "#2"}, + "up": {"uv": [11.5, 2, 12, 2.25], "texture": "#2"}, + "down": {"uv": [11.5, 2, 12, 2.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_0", + "from": [5, 20, 8], + "to": [7, 21, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2, 0, 1.5, 0.25], "texture": "#2"}, + "east": {"uv": [10.75, 2, 11, 2.25], "texture": "#2"}, + "south": {"uv": [6, 0, 6.5, 0.25], "texture": "#2"}, + "west": {"uv": [10.5, 2, 10.75, 2.25], "texture": "#2"}, + "up": {"uv": [10.5, 2, 11, 2.25], "texture": "#2"}, + "down": {"uv": [10.5, 2, 11, 2.25], "texture": "#2"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [90, -90, 0], + "translation": [4, -2, -1] + }, + "thirdperson_lefthand": { + "rotation": [90, -90, 0], + "translation": [4, -2, -1] + }, + "firstperson_righthand": { + "rotation": [0, 0, -3], + "translation": [0, -9, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, -3], + "translation": [0, -9, 0] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [-166.28, 34.83, -175.66], + "translation": [0, -1.25, 0], + "scale": [0.47109, 0.47109, 0.47109] + }, + "fixed": { + "translation": [0, -5, -1.75], + "scale": [1.75, 1.75, 1.75] + }, + "on_shelf": { + "rotation": [0, -180, 0] + } + }, + "groups": [ + { + "name": "root", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_ancient_flanged_shield_blocking.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_ancient_flanged_shield_blocking.json new file mode 100644 index 0000000000..ee938e86ad --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_ancient_flanged_shield_blocking.json @@ -0,0 +1,30 @@ +{ + "credit": "Made with Blockbench", + "parent": "middle-earth:item/dol_guldur_ancient_flanged_shield", + "display": { + "thirdperson_righthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "thirdperson_lefthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "firstperson_righthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + } + }, + "groups": [ + { + "name": "root", + "origin": [8, 0, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_armrust_shield.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_armrust_shield.json new file mode 100644 index 0000000000..39261e055f --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_armrust_shield.json @@ -0,0 +1,217 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "1": "middle-earth:item/dol_guldur_armrust_shield", + "particle": "middle-earth:item/dol_guldur_armrust_shield" + }, + "elements": [ + { + "name": "Handle", + "from": [5, 11, 9], + "to": [11, 13, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12.5, 12]}, + "faces": { + "north": {"uv": [8.5, 0, 9, 1.5], "rotation": 90, "texture": "#1"}, + "east": {"uv": [7, 1.5, 5.5, 2], "rotation": 180, "texture": "#1"}, + "south": {"uv": [9, 0, 9.5, 1.5], "rotation": 270, "texture": "#1"}, + "west": {"uv": [8.5, 2, 7, 1.5], "texture": "#1"}, + "up": {"uv": [5.5, 0, 7, 1.5], "rotation": 270, "texture": "#1"}, + "down": {"uv": [7, 0, 8.5, 1.5], "rotation": 270, "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_10", + "from": [8, -2, 8], + "to": [9, 0, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [1.75, 5.25, 1.5, 5.75], "texture": "#1"}, + "east": {"uv": [1.5, 5.25, 1.75, 5.75], "texture": "#1"}, + "south": {"uv": [4.25, 5.25, 4.5, 5.75], "texture": "#1"}, + "west": {"uv": [1.5, 5.25, 1.75, 5.75], "texture": "#1"}, + "up": {"uv": [1.5, 5.25, 1.75, 5.5], "texture": "#1"}, + "down": {"uv": [1.5, 5.5, 1.75, 5.75], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_9", + "from": [6, -2, 8], + "to": [7, 0, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [1.25, 5.25, 1, 5.75], "texture": "#1"}, + "east": {"uv": [1, 5.25, 1.25, 5.75], "texture": "#1"}, + "south": {"uv": [3.75, 5.25, 4, 5.75], "texture": "#1"}, + "west": {"uv": [1, 5.25, 1.25, 5.75], "texture": "#1"}, + "up": {"uv": [1, 5.25, 1.25, 5.5], "texture": "#1"}, + "down": {"uv": [1, 5.5, 1.25, 5.75], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_8", + "from": [7, 4, 8], + "to": [8, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [1.5, 1, 1.25, 4.25], "texture": "#1"}, + "east": {"uv": [1.25, 1, 1.5, 4.25], "texture": "#1"}, + "south": {"uv": [4, 1, 4.25, 4.25], "texture": "#1"}, + "west": {"uv": [1.25, 1, 1.5, 4.25], "texture": "#1"}, + "up": {"uv": [1.25, 1, 1.5, 1.25], "texture": "#1"}, + "down": {"uv": [1.25, 4, 1.5, 4.25], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_7", + "from": [8, 0, 8], + "to": [10, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [2, 0.75, 1.5, 5.25], "texture": "#1"}, + "east": {"uv": [1.75, 0.75, 2, 5.25], "texture": "#1"}, + "south": {"uv": [4.25, 0.75, 4.75, 5.25], "texture": "#1"}, + "west": {"uv": [1.5, 0.75, 1.75, 5.25], "texture": "#1"}, + "up": {"uv": [1.5, 0.75, 2, 1], "texture": "#1"}, + "down": {"uv": [1.5, 5, 2, 5.25], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_6", + "from": [5, 0, 8], + "to": [7, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [1.25, 0.75, 0.75, 5.25], "texture": "#1"}, + "east": {"uv": [1, 0.75, 1.25, 5.25], "texture": "#1"}, + "south": {"uv": [3.5, 0.75, 4, 5.25], "texture": "#1"}, + "west": {"uv": [0.75, 0.75, 1, 5.25], "texture": "#1"}, + "up": {"uv": [0.75, 0.75, 1.25, 1], "texture": "#1"}, + "down": {"uv": [0.75, 5, 1.25, 5.25], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_5", + "from": [10, 2, 8], + "to": [11, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [2.25, 0.5, 2, 4.75], "texture": "#1"}, + "east": {"uv": [2, 0.5, 2.25, 4.75], "texture": "#1"}, + "south": {"uv": [4.75, 0.5, 5, 4.75], "texture": "#1"}, + "west": {"uv": [2, 0.5, 2.25, 4.75], "texture": "#1"}, + "up": {"uv": [2, 0.5, 2.25, 0.75], "texture": "#1"}, + "down": {"uv": [2, 4.5, 2.25, 4.75], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_4", + "from": [4, 2, 8], + "to": [5, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [0.75, 0.5, 0.5, 4.75], "texture": "#1"}, + "east": {"uv": [0.5, 0.5, 0.75, 4.75], "texture": "#1"}, + "south": {"uv": [3.25, 0.5, 3.5, 4.75], "texture": "#1"}, + "west": {"uv": [0.5, 0.5, 0.75, 4.75], "texture": "#1"}, + "up": {"uv": [0.5, 0.5, 0.75, 0.75], "texture": "#1"}, + "down": {"uv": [0.5, 4.5, 0.75, 4.75], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_3", + "from": [12, 10, 8], + "to": [13, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [2.75, 0.25, 2.5, 2.75], "texture": "#1"}, + "east": {"uv": [2.5, 0.25, 2.75, 2.75], "texture": "#1"}, + "south": {"uv": [5.25, 0.25, 5.5, 2.75], "texture": "#1"}, + "west": {"uv": [2.5, 0.25, 2.75, 2.75], "texture": "#1"}, + "up": {"uv": [2.5, 0.25, 2.75, 0.5], "texture": "#1"}, + "down": {"uv": [2.5, 2.5, 2.75, 2.75], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_2", + "from": [2, 10, 8], + "to": [3, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [0.25, 0.25, 0, 2.75], "texture": "#1"}, + "east": {"uv": [0, 0.25, 0.25, 2.75], "texture": "#1"}, + "south": {"uv": [2.75, 0.25, 3, 2.75], "texture": "#1"}, + "west": {"uv": [0, 0.25, 0.25, 2.75], "texture": "#1"}, + "up": {"uv": [0, 0.25, 0.25, 0.5], "texture": "#1"}, + "down": {"uv": [0, 2.5, 0.25, 2.75], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_1", + "from": [11, 7, 8], + "to": [12, 21, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [2.5, 0, 2.25, 3.5], "texture": "#1"}, + "east": {"uv": [2.25, 0, 2.5, 3.5], "texture": "#1"}, + "south": {"uv": [5, 0, 5.25, 3.5], "texture": "#1"}, + "west": {"uv": [2.25, 0, 2.5, 3.5], "texture": "#1"}, + "up": {"uv": [2.25, 0, 2.5, 0.25], "texture": "#1"}, + "down": {"uv": [2.25, 3.25, 2.5, 3.5], "texture": "#1"} + } + }, + { + "name": "dg_armrust_shieldfront_0", + "from": [3, 7, 8], + "to": [4, 21, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -5, 8]}, + "faces": { + "north": {"uv": [0.5, 0, 0.25, 3.5], "texture": "#1"}, + "east": {"uv": [0.25, 0, 0.5, 3.5], "texture": "#1"}, + "south": {"uv": [3, 0, 3.25, 3.5], "texture": "#1"}, + "west": {"uv": [0.25, 0, 0.5, 3.5], "texture": "#1"}, + "up": {"uv": [0.25, 0, 0.5, 0.25], "texture": "#1"}, + "down": {"uv": [0.25, 3.25, 0.5, 3.5], "texture": "#1"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [-180, -90, 90], + "translation": [4, -2, -0.25] + }, + "thirdperson_lefthand": { + "rotation": [-180, -90, 90], + "translation": [4, -2, 0] + }, + "firstperson_righthand": { + "rotation": [0, 0, -3], + "translation": [0, -6, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, -3], + "translation": [0, -6, 0] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [-166.28, 34.83, -175.66], + "scale": [0.47109, 0.47109, 0.47109] + }, + "fixed": { + "translation": [0, 0, -1.75], + "scale": [1.75, 1.75, 1.75] + } + }, + "groups": [ + { + "name": "root", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_armrust_shield_blocking.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_armrust_shield_blocking.json new file mode 100644 index 0000000000..b4346d4152 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_armrust_shield_blocking.json @@ -0,0 +1,31 @@ +{ + "credit": "Made with Blockbench", + "parent": "middle-earth:item/dol_guldur_armrust_shield", + "display": { + "thirdperson_righthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "thirdperson_lefthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "firstperson_righthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + } + }, + "groups": [ + { + "name": "root", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_shield.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_shield.json new file mode 100644 index 0000000000..437215ea9b --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_shield.json @@ -0,0 +1,232 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "2": "middle-earth:item/dol_guldur_heavy_shield", + "particle": "middle-earth:item/dol_guldur_heavy_shield" + }, + "elements": [ + { + "name": "Handle", + "from": [4, 8, 9], + "to": [6, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 8, 10]}, + "faces": { + "north": {"uv": [8.5, 0, 9, 1.5], "texture": "#2"}, + "east": {"uv": [5.5, 0, 7, 1.5], "texture": "#2"}, + "south": {"uv": [9, 0, 9.5, 1.5], "texture": "#2"}, + "west": {"uv": [7, 0, 8.5, 1.5], "texture": "#2"}, + "up": {"uv": [8.5, 2, 7, 1.5], "rotation": 90, "texture": "#2"}, + "down": {"uv": [7, 1.5, 5.5, 2], "rotation": 270, "texture": "#2"} + } + }, + { + "name": "Handle", + "from": [9, 8, 9], + "to": [11, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 10]}, + "faces": { + "north": {"uv": [8.5, 0, 9, 1.5], "texture": "#2"}, + "east": {"uv": [5.5, 0, 7, 1.5], "texture": "#2"}, + "south": {"uv": [9, 0, 9.5, 1.5], "texture": "#2"}, + "west": {"uv": [7, 0, 8.5, 1.5], "texture": "#2"}, + "up": {"uv": [8.5, 2, 7, 1.5], "rotation": 90, "texture": "#2"}, + "down": {"uv": [7, 1.5, 5.5, 2], "rotation": 270, "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_10", + "from": [8, -1, 8], + "to": [9, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.75, 4.5, 1.5, 5], "texture": "#2"}, + "east": {"uv": [7, 6.5, 7.25, 7], "texture": "#2"}, + "south": {"uv": [4.25, 4.5, 4.5, 5], "texture": "#2"}, + "west": {"uv": [7, 6.5, 7.25, 7], "texture": "#2"}, + "up": {"uv": [7, 6.5, 7.25, 6.75], "texture": "#2"}, + "down": {"uv": [7, 6.75, 7.25, 7], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_9", + "from": [6, -1, 8], + "to": [7, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.25, 4.5, 1, 5], "texture": "#2"}, + "east": {"uv": [6.5, 6.5, 6.75, 7], "texture": "#2"}, + "south": {"uv": [3.75, 4.5, 4, 5], "texture": "#2"}, + "west": {"uv": [6.5, 6.5, 6.75, 7], "texture": "#2"}, + "up": {"uv": [6.5, 6.5, 6.75, 6.75], "texture": "#2"}, + "down": {"uv": [6.5, 6.75, 6.75, 7], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_8", + "from": [11, 5, 8], + "to": [12, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2.5, 2.75, 2.25, 3.5], "texture": "#2"}, + "east": {"uv": [7.75, 4.75, 8, 5.5], "texture": "#2"}, + "south": {"uv": [5, 2.75, 5.25, 3.5], "texture": "#2"}, + "west": {"uv": [7.75, 4.75, 8, 5.5], "texture": "#2"}, + "up": {"uv": [7.75, 4.75, 8, 5], "texture": "#2"}, + "down": {"uv": [7.75, 5.25, 8, 5.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_7", + "from": [3, 5, 8], + "to": [4, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [0.5, 2.75, 0.25, 3.5], "texture": "#2"}, + "east": {"uv": [5.75, 4.75, 6, 5.5], "texture": "#2"}, + "south": {"uv": [3, 2.75, 3.25, 3.5], "texture": "#2"}, + "west": {"uv": [5.75, 4.75, 6, 5.5], "texture": "#2"}, + "up": {"uv": [5.75, 4.75, 6, 5], "texture": "#2"}, + "down": {"uv": [5.75, 5.25, 6, 5.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_6", + "from": [7, -3, 8], + "to": [8, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.5, 0.75, 1.25, 5.5], "texture": "#2"}, + "east": {"uv": [6.75, 2.75, 7, 7.5], "texture": "#2"}, + "south": {"uv": [4, 0.75, 4.25, 5.5], "texture": "#2"}, + "west": {"uv": [6.75, 2.75, 7, 7.5], "texture": "#2"}, + "up": {"uv": [6.75, 2.75, 7, 3], "texture": "#2"}, + "down": {"uv": [6.75, 7.25, 7, 7.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_5", + "from": [8, 1, 8], + "to": [10, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2, 0.5, 1.5, 4.5], "texture": "#2"}, + "east": {"uv": [7.25, 2.5, 7.5, 6.5], "texture": "#2"}, + "south": {"uv": [4.25, 0.5, 4.75, 4.5], "texture": "#2"}, + "west": {"uv": [7, 2.5, 7.25, 6.5], "texture": "#2"}, + "up": {"uv": [7, 2.5, 7.5, 2.75], "texture": "#2"}, + "down": {"uv": [7, 6.25, 7.5, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_4", + "from": [5, 1, 8], + "to": [7, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.25, 0.5, 0.75, 4.5], "texture": "#2"}, + "east": {"uv": [6.5, 2.5, 6.75, 6.5], "texture": "#2"}, + "south": {"uv": [3.5, 0.5, 4, 4.5], "texture": "#2"}, + "west": {"uv": [6.25, 2.5, 6.5, 6.5], "texture": "#2"}, + "up": {"uv": [6.25, 2.5, 6.75, 2.75], "texture": "#2"}, + "down": {"uv": [6.25, 6.25, 6.75, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_3", + "from": [10, 3, 8], + "to": [11, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2.25, 0.25, 2, 4], "texture": "#2"}, + "east": {"uv": [7.5, 2.25, 7.75, 6], "texture": "#2"}, + "south": {"uv": [4.75, 0.25, 5, 4], "texture": "#2"}, + "west": {"uv": [7.5, 2.25, 7.75, 6], "texture": "#2"}, + "up": {"uv": [7.5, 2.25, 7.75, 2.5], "texture": "#2"}, + "down": {"uv": [7.5, 5.75, 7.75, 6], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_2", + "from": [4, 3, 8], + "to": [5, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [0.75, 0.25, 0.5, 4], "texture": "#2"}, + "east": {"uv": [6, 2.25, 6.25, 6], "texture": "#2"}, + "south": {"uv": [3.25, 0.25, 3.5, 4], "texture": "#2"}, + "west": {"uv": [6, 2.25, 6.25, 6], "texture": "#2"}, + "up": {"uv": [6, 2.25, 6.25, 2.5], "texture": "#2"}, + "down": {"uv": [6, 5.75, 6.25, 6], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_1", + "from": [11, 8, 8], + "to": [13, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2.75, 0, 2.25, 2.75], "texture": "#2"}, + "east": {"uv": [8, 2, 8.25, 4.75], "texture": "#2"}, + "south": {"uv": [5, 0, 5.5, 2.75], "texture": "#2"}, + "west": {"uv": [7.75, 2, 8, 4.75], "texture": "#2"}, + "up": {"uv": [7.75, 2, 8.25, 2.25], "texture": "#2"}, + "down": {"uv": [7.75, 4.5, 8.25, 4.75], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_0", + "from": [2, 8, 8], + "to": [4, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [0.5, 0, 0, 2.75], "texture": "#2"}, + "east": {"uv": [5.75, 2, 6, 4.75], "texture": "#2"}, + "south": {"uv": [2.75, 0, 3.25, 2.75], "texture": "#2"}, + "west": {"uv": [5.5, 2, 5.75, 4.75], "texture": "#2"}, + "up": {"uv": [5.5, 2, 6, 2.25], "texture": "#2"}, + "down": {"uv": [5.5, 4.5, 6, 4.75], "texture": "#2"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, -90, 0], + "translation": [4, -5, 4.75] + }, + "thirdperson_lefthand": { + "rotation": [0, -90, 0], + "translation": [4, -5, 4.75] + }, + "firstperson_righthand": { + "rotation": [0, 0, -3], + "translation": [0, -6, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, -3], + "translation": [0, -6, 0] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [-166.28, 34.83, -175.66], + "translation": [0, -0.25, 0], + "scale": [0.47109, 0.47109, 0.47109] + }, + "fixed": { + "translation": [0, -5, -1.75], + "scale": [1.75, 1.75, 1.75] + } + }, + "groups": [ + { + "name": "DG Heavy", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_shield_blocking.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_shield_blocking.json new file mode 100644 index 0000000000..52f57e9b29 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_shield_blocking.json @@ -0,0 +1,31 @@ +{ + "credit": "Made with Blockbench", + "parent": "middle-earth:item/dol_guldur_heavy_shield", + "display": { + "thirdperson_righthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "thirdperson_lefthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "firstperson_righthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + } + }, + "groups": [ + { + "name": "DG Heavy", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_skull_shield.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_skull_shield.json new file mode 100644 index 0000000000..1d87215be6 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_skull_shield.json @@ -0,0 +1,232 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "2": "middle-earth:item/dol_guldur_heavy_skull_shield", + "particle": "middle-earth:item/dol_guldur_heavy_skull_shield" + }, + "elements": [ + { + "name": "Handle", + "from": [4, 8, 9], + "to": [6, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [5, 8, 10]}, + "faces": { + "north": {"uv": [8.5, 0, 9, 1.5], "texture": "#2"}, + "east": {"uv": [5.5, 0, 7, 1.5], "texture": "#2"}, + "south": {"uv": [9, 0, 9.5, 1.5], "texture": "#2"}, + "west": {"uv": [7, 0, 8.5, 1.5], "texture": "#2"}, + "up": {"uv": [8.5, 2, 7, 1.5], "rotation": 90, "texture": "#2"}, + "down": {"uv": [7, 1.5, 5.5, 2], "rotation": 270, "texture": "#2"} + } + }, + { + "name": "Handle", + "from": [9, 8, 9], + "to": [11, 14, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 10]}, + "faces": { + "north": {"uv": [8.5, 0, 9, 1.5], "texture": "#2"}, + "east": {"uv": [5.5, 0, 7, 1.5], "texture": "#2"}, + "south": {"uv": [9, 0, 9.5, 1.5], "texture": "#2"}, + "west": {"uv": [7, 0, 8.5, 1.5], "texture": "#2"}, + "up": {"uv": [8.5, 2, 7, 1.5], "rotation": 90, "texture": "#2"}, + "down": {"uv": [7, 1.5, 5.5, 2], "rotation": 270, "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_10", + "from": [8, -1, 8], + "to": [9, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.75, 4.5, 1.5, 5], "texture": "#2"}, + "east": {"uv": [7, 6.5, 7.25, 7], "texture": "#2"}, + "south": {"uv": [4.25, 4.5, 4.5, 5], "texture": "#2"}, + "west": {"uv": [7, 6.5, 7.25, 7], "texture": "#2"}, + "up": {"uv": [7, 6.5, 7.25, 6.75], "texture": "#2"}, + "down": {"uv": [7, 6.75, 7.25, 7], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_9", + "from": [6, -1, 8], + "to": [7, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.25, 4.5, 1, 5], "texture": "#2"}, + "east": {"uv": [6.5, 6.5, 6.75, 7], "texture": "#2"}, + "south": {"uv": [3.75, 4.5, 4, 5], "texture": "#2"}, + "west": {"uv": [6.5, 6.5, 6.75, 7], "texture": "#2"}, + "up": {"uv": [6.5, 6.5, 6.75, 6.75], "texture": "#2"}, + "down": {"uv": [6.5, 6.75, 6.75, 7], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_8", + "from": [11, 5, 8], + "to": [12, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2.5, 2.75, 2.25, 3.5], "texture": "#2"}, + "east": {"uv": [7.75, 4.75, 8, 5.5], "texture": "#2"}, + "south": {"uv": [5, 2.75, 5.25, 3.5], "texture": "#2"}, + "west": {"uv": [7.75, 4.75, 8, 5.5], "texture": "#2"}, + "up": {"uv": [7.75, 4.75, 8, 5], "texture": "#2"}, + "down": {"uv": [7.75, 5.25, 8, 5.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_7", + "from": [3, 5, 8], + "to": [4, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [0.5, 2.75, 0.25, 3.5], "texture": "#2"}, + "east": {"uv": [5.75, 4.75, 6, 5.5], "texture": "#2"}, + "south": {"uv": [3, 2.75, 3.25, 3.5], "texture": "#2"}, + "west": {"uv": [5.75, 4.75, 6, 5.5], "texture": "#2"}, + "up": {"uv": [5.75, 4.75, 6, 5], "texture": "#2"}, + "down": {"uv": [5.75, 5.25, 6, 5.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_6", + "from": [7, -3, 8], + "to": [8, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.5, 0.75, 1.25, 5.5], "texture": "#2"}, + "east": {"uv": [6.75, 2.75, 7, 7.5], "texture": "#2"}, + "south": {"uv": [4, 0.75, 4.25, 5.5], "texture": "#2"}, + "west": {"uv": [6.75, 2.75, 7, 7.5], "texture": "#2"}, + "up": {"uv": [6.75, 2.75, 7, 3], "texture": "#2"}, + "down": {"uv": [6.75, 7.25, 7, 7.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_5", + "from": [8, 1, 8], + "to": [10, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2, 0.5, 1.5, 4.5], "texture": "#2"}, + "east": {"uv": [7.25, 2.5, 7.5, 6.5], "texture": "#2"}, + "south": {"uv": [4.25, 0.5, 4.75, 4.5], "texture": "#2"}, + "west": {"uv": [7, 2.5, 7.25, 6.5], "texture": "#2"}, + "up": {"uv": [7, 2.5, 7.5, 2.75], "texture": "#2"}, + "down": {"uv": [7, 6.25, 7.5, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_4", + "from": [5, 1, 8], + "to": [7, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [1.25, 0.5, 0.75, 4.5], "texture": "#2"}, + "east": {"uv": [6.5, 2.5, 6.75, 6.5], "texture": "#2"}, + "south": {"uv": [3.5, 0.5, 4, 4.5], "texture": "#2"}, + "west": {"uv": [6.25, 2.5, 6.5, 6.5], "texture": "#2"}, + "up": {"uv": [6.25, 2.5, 6.75, 2.75], "texture": "#2"}, + "down": {"uv": [6.25, 6.25, 6.75, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_3", + "from": [10, 3, 8], + "to": [11, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2.25, 0.25, 2, 4], "texture": "#2"}, + "east": {"uv": [7.5, 2.25, 7.75, 6], "texture": "#2"}, + "south": {"uv": [4.75, 0.25, 5, 4], "texture": "#2"}, + "west": {"uv": [7.5, 2.25, 7.75, 6], "texture": "#2"}, + "up": {"uv": [7.5, 2.25, 7.75, 2.5], "texture": "#2"}, + "down": {"uv": [7.5, 5.75, 7.75, 6], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_2", + "from": [4, 3, 8], + "to": [5, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [0.75, 0.25, 0.5, 4], "texture": "#2"}, + "east": {"uv": [6, 2.25, 6.25, 6], "texture": "#2"}, + "south": {"uv": [3.25, 0.25, 3.5, 4], "texture": "#2"}, + "west": {"uv": [6, 2.25, 6.25, 6], "texture": "#2"}, + "up": {"uv": [6, 2.25, 6.25, 2.5], "texture": "#2"}, + "down": {"uv": [6, 5.75, 6.25, 6], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_1", + "from": [11, 8, 8], + "to": [13, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [2.75, 0, 2.25, 2.75], "texture": "#2"}, + "east": {"uv": [8, 2, 8.25, 4.75], "texture": "#2"}, + "south": {"uv": [5, 0, 5.5, 2.75], "texture": "#2"}, + "west": {"uv": [7.75, 2, 8, 4.75], "texture": "#2"}, + "up": {"uv": [7.75, 2, 8.25, 2.25], "texture": "#2"}, + "down": {"uv": [7.75, 4.5, 8.25, 4.75], "texture": "#2"} + } + }, + { + "name": "dg_heavyfront_shield_0", + "from": [2, 8, 8], + "to": [4, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-8, -7, 8]}, + "faces": { + "north": {"uv": [0.5, 0, 0, 2.75], "texture": "#2"}, + "east": {"uv": [5.75, 2, 6, 4.75], "texture": "#2"}, + "south": {"uv": [2.75, 0, 3.25, 2.75], "texture": "#2"}, + "west": {"uv": [5.5, 2, 5.75, 4.75], "texture": "#2"}, + "up": {"uv": [5.5, 2, 6, 2.25], "texture": "#2"}, + "down": {"uv": [5.5, 4.5, 6, 4.75], "texture": "#2"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, -90, 0], + "translation": [4, -5, 4.75] + }, + "thirdperson_lefthand": { + "rotation": [0, -90, 0], + "translation": [4, -5, 4.75] + }, + "firstperson_righthand": { + "rotation": [0, 0, -3], + "translation": [0, -6, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, -3], + "translation": [0, -6, 0] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [-166.28, 34.83, -175.66], + "translation": [0, -0.25, 0], + "scale": [0.47109, 0.47109, 0.47109] + }, + "fixed": { + "translation": [0, -5, -1.75], + "scale": [1.75, 1.75, 1.75] + } + }, + "groups": [ + { + "name": "DG Heavy", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_skull_shield_blocking.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_skull_shield_blocking.json new file mode 100644 index 0000000000..f208af05e8 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/dol_guldur_heavy_skull_shield_blocking.json @@ -0,0 +1,31 @@ +{ + "credit": "Made with Blockbench", + "parent": "middle-earth:item/dol_guldur_heavy_skull_shield", + "display": { + "thirdperson_righthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "thirdperson_lefthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "firstperson_righthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + } + }, + "groups": [ + { + "name": "DG Heavy", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/rusted_dol_guldur_ancient_flanged_shield.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/rusted_dol_guldur_ancient_flanged_shield.json new file mode 100644 index 0000000000..a87a6f5d00 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/rusted_dol_guldur_ancient_flanged_shield.json @@ -0,0 +1,347 @@ +{ + "format_version": "1.21.11", + "credit": "Made with Blockbench", + "texture_size": [64, 64], + "textures": { + "2": "middle-earth:item/rusted_dol_guldur_ancient_flanged_shield", + "particle": "middle-earth:item/rusted_dol_guldur_ancient_flanged_shield" + }, + "elements": [ + { + "name": "Handle", + "from": [5, 11, 9], + "to": [11, 13, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 12.5, 12]}, + "faces": { + "north": {"uv": [12, 0, 12.5, 1.5], "rotation": 90, "texture": "#2"}, + "east": {"uv": [10.5, 1.5, 9, 2], "rotation": 180, "texture": "#2"}, + "south": {"uv": [12.5, 0, 13, 1.5], "rotation": 270, "texture": "#2"}, + "west": {"uv": [12, 2, 10.5, 1.5], "texture": "#2"}, + "up": {"uv": [9, 0, 10.5, 1.5], "rotation": 270, "texture": "#2"}, + "down": {"uv": [10.5, 0, 12, 1.5], "rotation": 270, "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_19", + "from": [9, 2, 8], + "to": [11, 3, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3, 4.5, 2.5, 4.75], "texture": "#2"}, + "east": {"uv": [11.75, 6.5, 12, 6.75], "texture": "#2"}, + "south": {"uv": [7, 4.5, 7.5, 4.75], "texture": "#2"}, + "west": {"uv": [11.5, 6.5, 11.75, 6.75], "texture": "#2"}, + "up": {"uv": [11.5, 6.5, 12, 6.75], "texture": "#2"}, + "down": {"uv": [11.5, 6.5, 12, 6.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_18", + "from": [6, 2, 8], + "to": [7, 3, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2, 4.5, 1.75, 4.75], "texture": "#2"}, + "east": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"}, + "south": {"uv": [6.25, 4.5, 6.5, 4.75], "texture": "#2"}, + "west": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"}, + "up": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"}, + "down": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_17", + "from": [10, 3, 8], + "to": [13, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3.5, 4.25, 2.75, 4.5], "texture": "#2"}, + "east": {"uv": [12.25, 6.25, 12.5, 6.5], "texture": "#2"}, + "south": {"uv": [7.25, 4.25, 8, 4.5], "texture": "#2"}, + "west": {"uv": [11.75, 6.25, 12, 6.5], "texture": "#2"}, + "up": {"uv": [11.75, 6.25, 12.5, 6.5], "texture": "#2"}, + "down": {"uv": [11.75, 6.25, 12.5, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_16", + "from": [5, 2, 8], + "to": [6, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1.75, 4.25, 1.5, 4.75], "texture": "#2"}, + "east": {"uv": [10.5, 6.25, 10.75, 6.75], "texture": "#2"}, + "south": {"uv": [6, 4.25, 6.25, 4.75], "texture": "#2"}, + "west": {"uv": [10.5, 6.25, 10.75, 6.75], "texture": "#2"}, + "up": {"uv": [10.5, 6.25, 10.75, 6.5], "texture": "#2"}, + "down": {"uv": [10.5, 6.5, 10.75, 6.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_15", + "from": [16, 8, 8], + "to": [17, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [4.5, 1.5, 4.25, 3.25], "texture": "#2"}, + "east": {"uv": [13.25, 3.5, 13.5, 5.25], "texture": "#2"}, + "south": {"uv": [8.75, 1.5, 9, 3.25], "texture": "#2"}, + "west": {"uv": [13.25, 3.5, 13.5, 5.25], "texture": "#2"}, + "up": {"uv": [13.25, 3.5, 13.5, 3.75], "texture": "#2"}, + "down": {"uv": [13.25, 5, 13.5, 5.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_14", + "from": [-1, 8, 8], + "to": [0, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [0.25, 1.5, 0, 3.25], "texture": "#2"}, + "east": {"uv": [9, 3.5, 9.25, 5.25], "texture": "#2"}, + "south": {"uv": [4.5, 1.5, 4.75, 3.25], "texture": "#2"}, + "west": {"uv": [9, 3.5, 9.25, 5.25], "texture": "#2"}, + "up": {"uv": [9, 3.5, 9.25, 3.75], "texture": "#2"}, + "down": {"uv": [9, 5, 9.25, 5.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_13", + "from": [15, 6, 8], + "to": [16, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [4.25, 1, 4, 3.75], "texture": "#2"}, + "east": {"uv": [13, 3, 13.25, 5.75], "texture": "#2"}, + "south": {"uv": [8.5, 1, 8.75, 3.75], "texture": "#2"}, + "west": {"uv": [13, 3, 13.25, 5.75], "texture": "#2"}, + "up": {"uv": [13, 3, 13.25, 3.25], "texture": "#2"}, + "down": {"uv": [13, 5.5, 13.25, 5.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_12", + "from": [7, 6, 8], + "to": [9, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2.5, 1, 2, 3.75], "texture": "#2"}, + "east": {"uv": [11.25, 3, 11.5, 5.75], "texture": "#2"}, + "south": {"uv": [6.5, 1, 7, 3.75], "texture": "#2"}, + "west": {"uv": [11, 3, 11.25, 5.75], "texture": "#2"}, + "up": {"uv": [11, 3, 11.5, 3.25], "texture": "#2"}, + "down": {"uv": [11, 5.5, 11.5, 5.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_11", + "from": [0, 6, 8], + "to": [1, 17, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [0.5, 1, 0.25, 3.75], "texture": "#2"}, + "east": {"uv": [9.25, 3, 9.5, 5.75], "texture": "#2"}, + "south": {"uv": [4.75, 1, 5, 3.75], "texture": "#2"}, + "west": {"uv": [9.25, 3, 9.5, 5.75], "texture": "#2"}, + "up": {"uv": [9.25, 3, 9.5, 3.25], "texture": "#2"}, + "down": {"uv": [9.25, 5.5, 9.5, 5.75], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_10", + "from": [14, 5, 8], + "to": [15, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [4, 0.75, 3.75, 4], "texture": "#2"}, + "east": {"uv": [12.75, 2.75, 13, 6], "texture": "#2"}, + "south": {"uv": [8.25, 0.75, 8.5, 4], "texture": "#2"}, + "west": {"uv": [12.75, 2.75, 13, 6], "texture": "#2"}, + "up": {"uv": [12.75, 2.75, 13, 3], "texture": "#2"}, + "down": {"uv": [12.75, 5.75, 13, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_9", + "from": [9, 5, 8], + "to": [11, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3, 0.75, 2.5, 4], "texture": "#2"}, + "east": {"uv": [11.75, 2.75, 12, 6], "texture": "#2"}, + "south": {"uv": [7, 0.75, 7.5, 4], "texture": "#2"}, + "west": {"uv": [11.5, 2.75, 11.75, 6], "texture": "#2"}, + "up": {"uv": [11.5, 2.75, 12, 3], "texture": "#2"}, + "down": {"uv": [11.5, 5.75, 12, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_8", + "from": [5, 5, 8], + "to": [7, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2, 0.75, 1.5, 4], "texture": "#2"}, + "east": {"uv": [10.75, 2.75, 11, 6], "texture": "#2"}, + "south": {"uv": [6, 0.75, 6.5, 4], "texture": "#2"}, + "west": {"uv": [10.5, 2.75, 10.75, 6], "texture": "#2"}, + "up": {"uv": [10.5, 2.75, 11, 3], "texture": "#2"}, + "down": {"uv": [10.5, 5.75, 11, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_7", + "from": [1, 5, 8], + "to": [2, 18, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [0.75, 0.75, 0.5, 4], "texture": "#2"}, + "east": {"uv": [9.5, 2.75, 9.75, 6], "texture": "#2"}, + "south": {"uv": [5, 0.75, 5.25, 4], "texture": "#2"}, + "west": {"uv": [9.5, 2.75, 9.75, 6], "texture": "#2"}, + "up": {"uv": [9.5, 2.75, 9.75, 3], "texture": "#2"}, + "down": {"uv": [9.5, 5.75, 9.75, 6], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_6", + "from": [11, 4, 8], + "to": [14, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3.75, 0.5, 3, 4.25], "texture": "#2"}, + "east": {"uv": [12.5, 2.5, 12.75, 6.25], "texture": "#2"}, + "south": {"uv": [7.5, 0.5, 8.25, 4.25], "texture": "#2"}, + "west": {"uv": [12, 2.5, 12.25, 6.25], "texture": "#2"}, + "up": {"uv": [12, 2.5, 12.75, 2.75], "texture": "#2"}, + "down": {"uv": [12, 6, 12.75, 6.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_5", + "from": [2, 4, 8], + "to": [3, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1, 0.5, 0.75, 4.25], "texture": "#2"}, + "east": {"uv": [9.75, 2.5, 10, 6.25], "texture": "#2"}, + "south": {"uv": [5.25, 0.5, 5.5, 4.25], "texture": "#2"}, + "west": {"uv": [9.75, 2.5, 10, 6.25], "texture": "#2"}, + "up": {"uv": [9.75, 2.5, 10, 2.75], "texture": "#2"}, + "down": {"uv": [9.75, 6, 10, 6.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_4", + "from": [10, 19, 8], + "to": [13, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3.5, 0.25, 2.75, 0.5], "texture": "#2"}, + "east": {"uv": [12.25, 2.25, 12.5, 2.5], "texture": "#2"}, + "south": {"uv": [7.25, 0.25, 8, 0.5], "texture": "#2"}, + "west": {"uv": [11.75, 2.25, 12, 2.5], "texture": "#2"}, + "up": {"uv": [11.75, 2.25, 12.5, 2.5], "texture": "#2"}, + "down": {"uv": [11.75, 2.25, 12.5, 2.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_3", + "from": [5, 19, 8], + "to": [6, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1.75, 0.25, 1.5, 0.5], "texture": "#2"}, + "east": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"}, + "south": {"uv": [6, 0.25, 6.25, 0.5], "texture": "#2"}, + "west": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"}, + "up": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"}, + "down": {"uv": [10.5, 2.25, 10.75, 2.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_2", + "from": [3, 3, 8], + "to": [5, 20, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [1.5, 0.25, 1, 4.5], "texture": "#2"}, + "east": {"uv": [10.25, 2.25, 10.5, 6.5], "texture": "#2"}, + "south": {"uv": [5.5, 0.25, 6, 4.5], "texture": "#2"}, + "west": {"uv": [10, 2.25, 10.25, 6.5], "texture": "#2"}, + "up": {"uv": [10, 2.25, 10.5, 2.5], "texture": "#2"}, + "down": {"uv": [10, 6.25, 10.5, 6.5], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_1", + "from": [9, 20, 8], + "to": [11, 21, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [3, 0, 2.5, 0.25], "texture": "#2"}, + "east": {"uv": [11.75, 2, 12, 2.25], "texture": "#2"}, + "south": {"uv": [7, 0, 7.5, 0.25], "texture": "#2"}, + "west": {"uv": [11.5, 2, 11.75, 2.25], "texture": "#2"}, + "up": {"uv": [11.5, 2, 12, 2.25], "texture": "#2"}, + "down": {"uv": [11.5, 2, 12, 2.25], "texture": "#2"} + } + }, + { + "name": "dg_eyeovalshield_front_0", + "from": [5, 20, 8], + "to": [7, 21, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6, 8]}, + "faces": { + "north": {"uv": [2, 0, 1.5, 0.25], "texture": "#2"}, + "east": {"uv": [10.75, 2, 11, 2.25], "texture": "#2"}, + "south": {"uv": [6, 0, 6.5, 0.25], "texture": "#2"}, + "west": {"uv": [10.5, 2, 10.75, 2.25], "texture": "#2"}, + "up": {"uv": [10.5, 2, 11, 2.25], "texture": "#2"}, + "down": {"uv": [10.5, 2, 11, 2.25], "texture": "#2"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [90, -90, 0], + "translation": [4, -2, -1] + }, + "thirdperson_lefthand": { + "rotation": [90, -90, 0], + "translation": [4, -2, -1] + }, + "firstperson_righthand": { + "rotation": [0, 0, -3], + "translation": [0, -9, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, -3], + "translation": [0, -9, 0] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [-166.28, 34.83, -175.66], + "translation": [0, -1.25, 0], + "scale": [0.47109, 0.47109, 0.47109] + }, + "fixed": { + "translation": [0, -5, -1.75], + "scale": [1.75, 1.75, 1.75] + }, + "on_shelf": { + "rotation": [0, -180, 0] + } + }, + "groups": [ + { + "name": "root", + "origin": [8, 0, 8], + "scope": 0, + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/models/item/rusted_dol_guldur_ancient_flanged_shield_blocking.json b/middle-earth/src/main/resources/assets/middle-earth/models/item/rusted_dol_guldur_ancient_flanged_shield_blocking.json new file mode 100644 index 0000000000..2a79691b42 --- /dev/null +++ b/middle-earth/src/main/resources/assets/middle-earth/models/item/rusted_dol_guldur_ancient_flanged_shield_blocking.json @@ -0,0 +1,30 @@ +{ + "credit": "Made with Blockbench", + "parent": "middle-earth:item/rusted_dol_guldur_ancient_flanged_shield", + "display": { + "thirdperson_righthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "thirdperson_lefthand": { + "rotation": [45, -45, 0], + "translation": [1.5, 0.25, -5] + }, + "firstperson_righthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 0, 10.25], + "translation": [-2, -3, 0] + } + }, + "groups": [ + { + "name": "root", + "origin": [8, 0, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/bronze_chandelier.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/bronze_chandelier.png new file mode 100644 index 0000000000..a0711d8374 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/bronze_chandelier.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/bronze_chandelier_1.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/bronze_chandelier_1.png new file mode 100644 index 0000000000..c96595af2b Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/bronze_chandelier_1.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier.png new file mode 100644 index 0000000000..7b7883c93d Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_1.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_1.png new file mode 100644 index 0000000000..dfb74f92c2 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_1.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_lit.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_lit.png new file mode 100644 index 0000000000..364c938e7a Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_lit.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_lit_1.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_lit_1.png new file mode 100644 index 0000000000..0325205600 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/chandelier_lit_1.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/old_skull.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/old_skull.png new file mode 100644 index 0000000000..3d12e3cd2d Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/old_skull.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton.png new file mode 100644 index 0000000000..ee64e70bbe Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton2.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton2.png new file mode 100644 index 0000000000..5c7206f86e Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton2.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton3.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton3.png new file mode 100644 index 0000000000..8f974ac6db Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton3.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton8.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton8.png new file mode 100644 index 0000000000..76eb3cb785 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton8.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton9.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton9.png new file mode 100644 index 0000000000..7f93542173 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skeleton9.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle.png index 28ea6e57f9..d8b277dc47 100644 Binary files a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle.png and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle_lit.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle_lit.png index ecc7248503..5409ea2ff9 100644 Binary files a/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle_lit.png and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/skullcandle_lit.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_bronze_chandelier_1.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_bronze_chandelier_1.png new file mode 100644 index 0000000000..f2bfd3b9d5 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_bronze_chandelier_1.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_chandelier.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_chandelier.png new file mode 100644 index 0000000000..77e211c2a0 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_chandelier.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_chandelier_1.png b/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_chandelier_1.png new file mode 100644 index 0000000000..50eed142e9 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/block/small_chandelier_1.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/entities/warg/feature/warg_saddle.png b/middle-earth/src/main/resources/assets/middle-earth/textures/entities/warg/feature/warg_saddle.png index 82d758c00d..ad7a34d4d8 100644 Binary files a/middle-earth/src/main/resources/assets/middle-earth/textures/entities/warg/feature/warg_saddle.png and b/middle-earth/src/main/resources/assets/middle-earth/textures/entities/warg/feature/warg_saddle.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/gui/playerbook/mount_warg.png b/middle-earth/src/main/resources/assets/middle-earth/textures/gui/playerbook/mount_warg.png index 760184d6e8..b7ea6c0af7 100644 Binary files a/middle-earth/src/main/resources/assets/middle-earth/textures/gui/playerbook/mount_warg.png and b/middle-earth/src/main/resources/assets/middle-earth/textures/gui/playerbook/mount_warg.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/baggy_hat.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/baggy_hat.png new file mode 100644 index 0000000000..ca8de9def5 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/baggy_hat.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/beekeeper_mask.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/beekeeper_mask.png new file mode 100644 index 0000000000..013347696b Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/beekeeper_mask.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/beekeeper_mask_overlay.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/beekeeper_mask_overlay.png new file mode 100644 index 0000000000..cca8c28109 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/beekeeper_mask_overlay.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/blacksmith_apron.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/blacksmith_apron.png new file mode 100644 index 0000000000..3cebdfc336 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/blacksmith_apron.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/bronze_chandelier.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/bronze_chandelier.png new file mode 100644 index 0000000000..927ace7ee8 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/bronze_chandelier.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/chandelier.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/chandelier.png new file mode 100644 index 0000000000..a37f056550 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/chandelier.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/chaperon.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/chaperon.png new file mode 100644 index 0000000000..72a1b00fee Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/chaperon.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_ancient_flanged_shield.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_ancient_flanged_shield.png new file mode 100644 index 0000000000..9f104ca8a9 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_ancient_flanged_shield.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_armrust_shield.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_armrust_shield.png new file mode 100644 index 0000000000..9a3e83b9ad Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_armrust_shield.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_heavy_shield.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_heavy_shield.png new file mode 100644 index 0000000000..f8e9c39538 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_heavy_shield.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_heavy_skull_shield.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_heavy_skull_shield.png new file mode 100644 index 0000000000..3de7285fa7 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dol_guldur_heavy_skull_shield.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/dwarven_monocle.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dwarven_monocle.png new file mode 100644 index 0000000000..465f5a215a Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/dwarven_monocle.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/glasses.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/glasses.png new file mode 100644 index 0000000000..bb40d3e8d2 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/glasses.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/rusted_dol_guldur_ancient_flanged_shield.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/rusted_dol_guldur_ancient_flanged_shield.png new file mode 100644 index 0000000000..69b7391d87 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/rusted_dol_guldur_ancient_flanged_shield.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/small_bronze_chandelier.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/small_bronze_chandelier.png new file mode 100644 index 0000000000..5cdd7efce4 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/small_bronze_chandelier.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/item/small_chandelier.png b/middle-earth/src/main/resources/assets/middle-earth/textures/item/small_chandelier.png new file mode 100644 index 0000000000..06316b8fc8 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/item/small_chandelier.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/model/old_skull.png b/middle-earth/src/main/resources/assets/middle-earth/textures/model/old_skull.png new file mode 100644 index 0000000000..3d12e3cd2d Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/model/old_skull.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/baggy_hat.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/baggy_hat.png new file mode 100644 index 0000000000..994f50aa96 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/baggy_hat.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/baggy_hat_addition.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/baggy_hat_addition.png new file mode 100644 index 0000000000..c3da7d32a5 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/baggy_hat_addition.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/beekeeper_mask.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/beekeeper_mask.png new file mode 100644 index 0000000000..9a4b75e80d Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/beekeeper_mask.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/beekeeper_mask_overlay.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/beekeeper_mask_overlay.png new file mode 100644 index 0000000000..6778aa2524 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/beekeeper_mask_overlay.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/blacksmith_apron.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/blacksmith_apron.png new file mode 100644 index 0000000000..8388d43e06 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/blacksmith_apron.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/chaperon.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/chaperon.png new file mode 100644 index 0000000000..0fad4e1217 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/chaperon.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/chaperon_addition.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/chaperon_addition.png new file mode 100644 index 0000000000..d80f17001b Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/chaperon_addition.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/dwarven_monocle.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/dwarven_monocle.png new file mode 100644 index 0000000000..c3d5713fa3 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/dwarven_monocle.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/dwarven_monocle_addition.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/dwarven_monocle_addition.png new file mode 100644 index 0000000000..a90a2de0c1 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/dwarven_monocle_addition.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/glasses.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/glasses.png new file mode 100644 index 0000000000..11d04860ac Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/glasses.png differ diff --git a/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/glasses_addition.png b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/glasses_addition.png new file mode 100644 index 0000000000..b51b4b9fa9 Binary files /dev/null and b/middle-earth/src/main/resources/assets/middle-earth/textures/models/armor/glasses_addition.png differ diff --git a/middle-earth/src/main/resources/assets/minecraft/atlases/blocks.json b/middle-earth/src/main/resources/assets/minecraft/atlases/blocks.json index a9e2bb9720..b18d62045f 100644 --- a/middle-earth/src/main/resources/assets/minecraft/atlases/blocks.json +++ b/middle-earth/src/main/resources/assets/minecraft/atlases/blocks.json @@ -16,6 +16,10 @@ "type": "single", "resource": "middle-earth:model/bellows/bellows_2" }, + { + "type": "single", + "resource": "middle-earth:model/old_skull" + }, { "type": "paletted_permutations", "textures": [ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_0.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_0.png index c215233239..738573c0a8 100644 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_0.png and b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_0.png differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_1.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_1.png index 30b3bf6c10..d8783863e3 100644 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_1.png and b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_1.png differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_2.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_2.png index 5a4998e6e7..9df2e6441d 100644 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_2.png and b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_2.png differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_3.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_3.png index 9cc5371e62..ba0ce745a5 100644 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_3.png and b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_3.png differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_4.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_4.png index 7704ac02d4..19c825139f 100644 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_4.png and b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_4.png differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_5.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_5.png index f37542c639..e01470e10b 100644 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_5.png and b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background/panorama_5.png differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_0.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_0.png deleted file mode 100644 index 76d135052b..0000000000 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_0.png and /dev/null differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_1.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_1.png deleted file mode 100644 index 0d573e5971..0000000000 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_1.png and /dev/null differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_2.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_2.png deleted file mode 100644 index 1b18a8f9fe..0000000000 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_2.png and /dev/null differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_3.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_3.png deleted file mode 100644 index 8dad1161b0..0000000000 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_3.png and /dev/null differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_4.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_4.png deleted file mode 100644 index 3e83140ed8..0000000000 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_4.png and /dev/null differ diff --git a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_5.png b/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_5.png deleted file mode 100644 index 33fa3b6378..0000000000 Binary files a/middle-earth/src/main/resources/assets/minecraft/textures/gui/title/background_1.0.0b/panorama_5.png and /dev/null differ diff --git a/middle-earth/src/main/resources/data/middle-earth/enchantment/aule_blessing.json b/middle-earth/src/main/resources/data/middle-earth/enchantment/aule_blessing.json new file mode 100644 index 0000000000..75f13c2dac --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/enchantment/aule_blessing.json @@ -0,0 +1,21 @@ +{ + "anvil_cost": 3, + "description": { + "translate": "enchantment.middle-earth.aule_blessing" + }, + "exclusive_set": "#middle-earth:exclusive_set/smithing_hammer", + "max_cost": { + "base": 1, + "per_level_above_first": 12 + }, + "max_level": 3, + "min_cost": { + "base": 1, + "per_level_above_first": 5 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#middle-earth:enchantable/smithing_hammers", + "weight": 10 +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/enchantment/celerity.json b/middle-earth/src/main/resources/data/middle-earth/enchantment/celerity.json index d797b077c0..e22c45c7ac 100644 --- a/middle-earth/src/main/resources/data/middle-earth/enchantment/celerity.json +++ b/middle-earth/src/main/resources/data/middle-earth/enchantment/celerity.json @@ -30,6 +30,6 @@ "slots": [ "mainhand" ], - "supported_items": "#minecraft:enchantable/weapon", + "supported_items": "#middle-earth:enchantable/celerity", "weight": 1 } \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/forge.json b/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/forge.json new file mode 100644 index 0000000000..34fb9d92bb --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/forge.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "middle-earth:forge", + "condition": "minecraft:block_state_property", + "properties": { + "part": "top" + } + } + ], + "name": "middle-earth:forge" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/skeletal_pile_layer.json b/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/skeletal_pile_layer.json new file mode 100644 index 0000000000..2ab748bd1c --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/skeletal_pile_layer.json @@ -0,0 +1,164 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:skeletal_pile_layer", + "properties": { + "layers": "1" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 2 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:skeletal_pile_layer", + "properties": { + "layers": "2" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 3 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:skeletal_pile_layer", + "properties": { + "layers": "3" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 4 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:skeletal_pile_layer", + "properties": { + "layers": "4" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 5 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:skeletal_pile_layer", + "properties": { + "layers": "5" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 6 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:skeletal_pile_layer", + "properties": { + "layers": "6" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 7 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:skeletal_pile_layer", + "properties": { + "layers": "7" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:skeletal_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 8 + } + ] + } + ] + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": {} + } + ] + } + ] +} diff --git a/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/waste_pile_layer.json b/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/waste_pile_layer.json new file mode 100644 index 0000000000..744f48e625 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/loot_table/blocks/waste_pile_layer.json @@ -0,0 +1,164 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:waste_pile_layer", + "properties": { + "layers": "1" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 2 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:waste_pile_layer", + "properties": { + "layers": "2" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 3 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:waste_pile_layer", + "properties": { + "layers": "3" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 4 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:waste_pile_layer", + "properties": { + "layers": "4" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 5 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:waste_pile_layer", + "properties": { + "layers": "5" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 6 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:waste_pile_layer", + "properties": { + "layers": "6" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 7 + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "middle-earth:waste_pile_layer", + "properties": { + "layers": "7" + } + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:waste_pile_layer", + "functions": [ + { + "function": "minecraft:set_count", + "count": 8 + } + ] + } + ] + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": {} + } + ] + } + ] +} diff --git a/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/brigand_dungeon_trial.json b/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/brigand_dungeon_trial.json index 262c75fb03..04ff80079c 100644 --- a/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/brigand_dungeon_trial.json +++ b/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/brigand_dungeon_trial.json @@ -5,7 +5,7 @@ { "type": "minecraft:item", "name": "middle-earth:brigand_key", - "weight": 2 + "weight": 3 }, { "type": "minecraft:item", diff --git a/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_treasure_unique.json b/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_treasure_unique.json index b61ab841d9..73599ca04a 100644 --- a/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_treasure_unique.json +++ b/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_treasure_unique.json @@ -917,6 +917,56 @@ "type": "minecraft:item", "name": "middle-earth:dol_guldur_stalker_cape", "weight": 5 + }, + { + "type": "minecraft:item", + "name": "middle-earth:dol_guldur_ancient_flanged_shield", + "weight": 4, + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.5 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15, + "min": 5 + }, + "options": "#middle-earth:on_random_spider_loot" + } + ] + }, + { + "type": "minecraft:item", + "name": "middle-earth:rusted_dol_guldur_ancient_flanged_shield", + "weight": 4, + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.5 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15, + "min": 5 + }, + "options": "#middle-earth:on_random_spider_loot" + } + ] } ], "rolls": 1 diff --git a/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_trial.json b/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_trial.json index ad6c5bd826..0714489a0c 100644 --- a/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_trial.json +++ b/middle-earth/src/main/resources/data/middle-earth/loot_table/gameplay/vaults/mirkwood_burrow_trial.json @@ -5,7 +5,7 @@ { "type": "minecraft:item", "name": "middle-earth:spider_stinger", - "weight": 2 + "weight": 3 }, { "type": "minecraft:item", diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/blue_gentian_dye.json b/middle-earth/src/main/resources/data/middle-earth/recipe/blue_gentian_dye.json new file mode 100644 index 0000000000..1bdb390ab4 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/blue_gentian_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "middle-earth:blue_gentian" + ], + "result": { + "id": "minecraft:blue_dye" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/blue_lavender_dye.json b/middle-earth/src/main/resources/data/middle-earth/recipe/blue_lavender_dye.json new file mode 100644 index 0000000000..f660af4117 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/blue_lavender_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "middle-earth:blue_lavender" + ], + "result": { + "id": "minecraft:blue_dye" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/lavender_dye.json b/middle-earth/src/main/resources/data/middle-earth/recipe/lavender_dye.json new file mode 100644 index 0000000000..f2da245b81 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/lavender_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "middle-earth:lavender" + ], + "result": { + "id": "minecraft:purple_dye" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/noblewhite_dye.json b/middle-earth/src/main/resources/data/middle-earth/recipe/noblewhite_dye.json new file mode 100644 index 0000000000..bdb58e95e8 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/noblewhite_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "middle-earth:noblewhite" + ], + "result": { + "id": "minecraft:white_dye" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/paper_from_paper_sheet.json b/middle-earth/src/main/resources/data/middle-earth/recipe/paper_from_paper_sheet.json new file mode 100644 index 0000000000..09e4c84a96 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/paper_from_paper_sheet.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "middle-earth:paper_sheet" + ], + "result": { + "id": "minecraft:paper" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/saddle.json b/middle-earth/src/main/resources/data/middle-earth/recipe/saddle.json deleted file mode 100644 index 97052a1b67..0000000000 --- a/middle-earth/src/main/resources/data/middle-earth/recipe/saddle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "LLL", - "I I" - ], - "key": { - "L": "minecraft:leather", - "I": "minecraft:iron_ingot" - }, - "result": { - "id": "minecraft:saddle", - "count": 1 - } -} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/simbelmyne_dye.json b/middle-earth/src/main/resources/data/middle-earth/recipe/simbelmyne_dye.json new file mode 100644 index 0000000000..2d12bd8cc5 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/simbelmyne_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "middle-earth:simbelmyne" + ], + "result": { + "id": "minecraft:white_dye" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/small_burnt_curtain.json b/middle-earth/src/main/resources/data/middle-earth/recipe/small_burnt_curtain.json index ea8dbdf1cc..d28dd69b6a 100644 --- a/middle-earth/src/main/resources/data/middle-earth/recipe/small_burnt_curtain.json +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/small_burnt_curtain.json @@ -1,5 +1,5 @@ { - "type": "minecraft:smoking", + "type": "minecraft:smelting", "category": "misc", "cookingtime": 200, "experience": 0.2, diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/stucco_alt.json b/middle-earth/src/main/resources/data/middle-earth/recipe/stucco_alt.json new file mode 100644 index 0000000000..4731efaf3d --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/stucco_alt.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "middle-earth:limestone", + "minecraft:potion", + "#minecraft:smelts_to_glass" + ], + "result": { + "id": "middle-earth:stucco", + "count": 4 + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/recipe/white_lavender_dye.json b/middle-earth/src/main/resources/data/middle-earth/recipe/white_lavender_dye.json new file mode 100644 index 0000000000..4d9c9bd28b --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/recipe/white_lavender_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "middle-earth:white_lavender" + ], + "result": { + "id": "minecraft:white_dye" + } +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/tags/enchantment/exclusive_set/smithing_hammer.json b/middle-earth/src/main/resources/data/middle-earth/tags/enchantment/exclusive_set/smithing_hammer.json new file mode 100644 index 0000000000..5dd43dc7a3 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/tags/enchantment/exclusive_set/smithing_hammer.json @@ -0,0 +1,5 @@ +{ + "values": [ + "middle-earth:aule_blessing" + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/tags/item/curtains_that_burn.json b/middle-earth/src/main/resources/data/middle-earth/tags/item/curtains_that_burn.json index 31f73637de..8d7e963a22 100644 --- a/middle-earth/src/main/resources/data/middle-earth/tags/item/curtains_that_burn.json +++ b/middle-earth/src/main/resources/data/middle-earth/tags/item/curtains_that_burn.json @@ -4,7 +4,6 @@ "middle-earth:black_curtain", "middle-earth:blue_curtain", "middle-earth:brown_curtain", - "middle-earth:burnt_curtain", "middle-earth:dark_blue_curtain", "middle-earth:dark_brown_curtain", "middle-earth:dark_green_curtain", diff --git a/middle-earth/src/main/resources/data/middle-earth/tags/item/enchantable/celerity.json b/middle-earth/src/main/resources/data/middle-earth/tags/item/enchantable/celerity.json new file mode 100644 index 0000000000..b3ef7062b4 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/tags/item/enchantable/celerity.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:enchantable/sharp_weapon", + "minecraft:mace", + "#middle-earth:smithing_hammers" + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/tags/item/enchantable/smithing_hammers.json b/middle-earth/src/main/resources/data/middle-earth/tags/item/enchantable/smithing_hammers.json new file mode 100644 index 0000000000..b08ea1c4b9 --- /dev/null +++ b/middle-earth/src/main/resources/data/middle-earth/tags/item/enchantable/smithing_hammers.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#middle-earth:smithing_hammers" + ] +} \ No newline at end of file diff --git a/middle-earth/src/main/resources/data/middle-earth/tags/item/small_curtains_that_burn.json b/middle-earth/src/main/resources/data/middle-earth/tags/item/small_curtains_that_burn.json index e3e610c3ed..3c00c41d42 100644 --- a/middle-earth/src/main/resources/data/middle-earth/tags/item/small_curtains_that_burn.json +++ b/middle-earth/src/main/resources/data/middle-earth/tags/item/small_curtains_that_burn.json @@ -4,7 +4,6 @@ "middle-earth:small_black_curtain", "middle-earth:small_blue_curtain", "middle-earth:small_brown_curtain", - "middle-earth:small_burnt_curtain", "middle-earth:small_dark_blue_curtain", "middle-earth:small_dark_brown_curtain", "middle-earth:small_dark_green_curtain", diff --git a/middle-earth/src/main/resources/data/middle-earth/tags/item/smithing_hammers.json b/middle-earth/src/main/resources/data/middle-earth/tags/item/smithing_hammers.json index a5b7f70c0c..e000f375eb 100644 --- a/middle-earth/src/main/resources/data/middle-earth/tags/item/smithing_hammers.json +++ b/middle-earth/src/main/resources/data/middle-earth/tags/item/smithing_hammers.json @@ -2,6 +2,7 @@ "values": [ "middle-earth:copper_smithing_hammer", "middle-earth:bronze_smithing_hammer", + "middle-earth:crude_smithing_hammer", "middle-earth:smithing_hammer", "middle-earth:noble_smithing_hammer", "middle-earth:dwarven_smithing_hammer", diff --git a/middle-earth/src/main/resources/fabric.mod.json b/middle-earth/src/main/resources/fabric.mod.json index 3ac565d695..47cbe51829 100644 --- a/middle-earth/src/main/resources/fabric.mod.json +++ b/middle-earth/src/main/resources/fabric.mod.json @@ -47,8 +47,8 @@ "minecraft": "~1.21.8", "java": ">=21", "fabric-permissions-api-v0": "*", - "sevenstars-api": "1.0.1-1.21.8-beta", - "wild-things": "1.0.1-1.21.8-beta" + "sevenstars-api": "1.0.2-1.21.8-beta", + "wild-things": "1.0.2-1.21.8-beta" }, "recommends": { "modmenu": "*" diff --git a/middle-earth/src/main/resources/middle-earth.mixins.json b/middle-earth/src/main/resources/middle-earth.mixins.json index 11da4f85a5..9c04e66eab 100644 --- a/middle-earth/src/main/resources/middle-earth.mixins.json +++ b/middle-earth/src/main/resources/middle-earth.mixins.json @@ -7,6 +7,7 @@ "AbstractHorseEntityMixin", "AnvilScreenHandlerMixin", "BannerPatternRegisterMixin", + "BeehiveBlockMixin", "BlockEntityTypeMixin", "BlockMixin", "CarvedPumpkinBlockMixin", diff --git a/of-beasts-and-wild-things/gradle.properties b/of-beasts-and-wild-things/gradle.properties index b695976d51..1ff655b49f 100644 --- a/of-beasts-and-wild-things/gradle.properties +++ b/of-beasts-and-wild-things/gradle.properties @@ -12,7 +12,7 @@ loom_version=1.11-SNAPSHOT fabric_version=0.129.0+1.21.8 # Mod Properties -mod_version=1.0.1-1.21.8-beta +mod_version=1.0.2-1.21.8-beta maven_group=net.sevenstars.of_beasts_and_wild_things archives_base_name=Of Beasts and Wild Things diff --git a/of-beasts-and-wild-things/src/main/resources/assets/wild-things/lang/pt_br.json b/of-beasts-and-wild-things/src/main/resources/assets/wild-things/lang/pt_br.json new file mode 100644 index 0000000000..a6fcc91e27 --- /dev/null +++ b/of-beasts-and-wild-things/src/main/resources/assets/wild-things/lang/pt_br.json @@ -0,0 +1,29 @@ +{ + "block.wild-things.bird_nest": "Ninho de Pássaro", + "entity.wild-things.deer": "Veado", + "entity.wild-things.pheasant": "Faisão", + "entity.wild-things.snail": "Caracol", + "entity.wild-things.swan": "Cisne", + "entity.wild-things.swan_egg": "Ovo de Cisne", + "item.wild-things.bird_nest": "Ninho de Pássaro", + "item.wild-things.cooked_poultry": "Carne de Ave Assada", + "item.wild-things.cooked_swan": "Cisne Assado", + "item.wild-things.cooked_venison": "Carne de Veado Assada", + "item.wild-things.deer_spawn_egg": "Ovo Gerador de Veado", + "item.wild-things.pheasant_spawn_egg": "Ovo Gerador de Faisão", + "item.wild-things.raw_poultry": "Carne de Ave Crua", + "item.wild-things.raw_swan": "Cisne Cru", + "item.wild-things.raw_venison": "Carne de Veado Crua", + "item.wild-things.snail_spawn_egg": "Ovo Gerador de Caracol", + "item.wild-things.swan_egg": "Ovo de Cisne", + "item.wild-things.swan_feather": "Pena de Cisne", + "item.wild-things.swan_spawn_egg": "Ovo Gerador de Cisne", + "itemGroup.wild-things.wild_things": "Of Beasts and Wild Things", + "sounds.wild-things.deer_death": "Veado morre", + "sounds.wild-things.deer_grunt": "Veado grunhe", + "sounds.wild-things.deer_idle": "Veado bale", + "sounds.wild-things.swan_death": "Cisne morre", + "sounds.wild-things.swan_hurt": "Cisne ferido", + "sounds.wild-things.swan_idle": "Cisne grasba", + "sounds.wild-things.swan_step": "Cisne caminha" +} diff --git a/of-beasts-and-wild-things/src/main/resources/data/wild-things/loot_table/entities/swan.json b/of-beasts-and-wild-things/src/main/resources/data/wild-things/loot_table/entities/swan.json index 3a6abdab1d..8139a3eb92 100644 --- a/of-beasts-and-wild-things/src/main/resources/data/wild-things/loot_table/entities/swan.json +++ b/of-beasts-and-wild-things/src/main/resources/data/wild-things/loot_table/entities/swan.json @@ -6,7 +6,7 @@ "entries": [ { "type": "minecraft:item", - "name": "minecraft:feather", + "name": "wild-things:swan_feather", "conditions": [] } ], diff --git a/of-beasts-and-wild-things/src/main/resources/fabric.mod.json b/of-beasts-and-wild-things/src/main/resources/fabric.mod.json index a97a6cbd83..24739bee8f 100644 --- a/of-beasts-and-wild-things/src/main/resources/fabric.mod.json +++ b/of-beasts-and-wild-things/src/main/resources/fabric.mod.json @@ -35,7 +35,7 @@ "fabric-api": "*", "minecraft": "~1.21.8", "java": ">=21", - "sevenstars-api": "1.0.1-1.21.8-beta" + "sevenstars-api": "1.0.2-1.21.8-beta" }, "recommends": { "modmenu": "*" diff --git a/sevenstars-api/gradle.properties b/sevenstars-api/gradle.properties index 84bc46259a..9cad932430 100644 --- a/sevenstars-api/gradle.properties +++ b/sevenstars-api/gradle.properties @@ -12,7 +12,7 @@ loom_version=1.11-SNAPSHOT fabric_version=0.129.0+1.21.8 # Mod Properties -mod_version = 1.0.1-1.21.8-beta +mod_version = 1.0.2-1.21.8-beta maven_group = net.sevenstars.api archives_base_name = SevenStarsAPI