Lang files

This commit is contained in:
paulevsGitch 2020-10-08 23:05:08 +03:00
parent c9cdea122f
commit f2a78e180c
4 changed files with 9 additions and 3 deletions

View file

@ -36,12 +36,14 @@ public class BlockRegistry {
public static final Block ENDSTONE_DUST = registerBlock("endstone_dust", new BlockEndstoneDust()); public static final Block ENDSTONE_DUST = registerBlock("endstone_dust", new BlockEndstoneDust());
public static final Block END_MYCELIUM = registerBlock("end_mycelium", new BlockTerrain(MaterialColor.LIGHT_BLUE)); public static final Block END_MYCELIUM = registerBlock("end_mycelium", new BlockTerrain(MaterialColor.LIGHT_BLUE));
public static final Block END_MOSS = registerBlock("end_moss", new BlockTerrain(MaterialColor.CYAN)); public static final Block END_MOSS = registerBlock("end_moss", new BlockTerrain(MaterialColor.CYAN));
public static final Block FLAVOLITE = registerBlock("flavolite", new BlockStone(MaterialColor.SAND));
// Roads // // Roads //
public static final Block END_MYCELIUM_PATH = registerBlock("end_mycelium_path", new BlockPath(END_MYCELIUM)); public static final Block END_MYCELIUM_PATH = registerBlock("end_mycelium_path", new BlockPath(END_MYCELIUM));
public static final Block END_MOSS_PATH = registerBlock("end_moss_path", new BlockPath(END_MOSS)); public static final Block END_MOSS_PATH = registerBlock("end_moss_path", new BlockPath(END_MOSS));
// Rocks //
public static final Block FLAVOLITE = registerBlock("flavolite", new BlockStone(MaterialColor.SAND));
// Wooden Materials // // Wooden Materials //
public static final Block MOSSY_GLOWSHROOM_SAPLING = registerBlock("mossy_glowshroom_sapling", new BlockMossyGlowshroomSapling()); public static final Block MOSSY_GLOWSHROOM_SAPLING = registerBlock("mossy_glowshroom_sapling", new BlockMossyGlowshroomSapling());
public static final Block MOSSY_GLOWSHROOM_CAP = registerBlock("mossy_glowshroom_cap", new BlockMossyGlowshroomCap()); public static final Block MOSSY_GLOWSHROOM_CAP = registerBlock("mossy_glowshroom_cap", new BlockMossyGlowshroomCap());

View file

@ -16,7 +16,7 @@ public class BlockTagRegistry {
} }
public static void register() { public static void register() {
TagHelper.addTag(END_GROUND, BlockRegistry.END_MOSS, BlockRegistry.END_MYCELIUM); TagHelper.addTag(END_GROUND, BlockRegistry.END_MOSS, BlockRegistry.END_MYCELIUM, BlockRegistry.ENDER_ORE);
TagHelper.addTag(BlockTags.NYLIUM, BlockRegistry.END_MOSS, BlockRegistry.END_MYCELIUM); TagHelper.addTag(BlockTags.NYLIUM, BlockRegistry.END_MOSS, BlockRegistry.END_MYCELIUM, BlockRegistry.ENDER_ORE);
} }
} }

View file

@ -95,6 +95,8 @@
"block.betterend.blue_vine_fur": "Blue Vine Fur", "block.betterend.blue_vine_fur": "Blue Vine Fur",
"block.betterend.dense_vine": "Dense Vine", "block.betterend.dense_vine": "Dense Vine",
"block.betterend.bubble_coral": "Bubble Coral",
"block.betterend.aurora_crystal": "Aurora Crystal",
"category.rei.damage.amount&dmg": "Tool damage: %s" "category.rei.damage.amount&dmg": "Tool damage: %s"
} }

View file

@ -95,6 +95,8 @@
"block.betterend.blue_vine_fur": "Пух синей лозы", "block.betterend.blue_vine_fur": "Пух синей лозы",
"block.betterend.dense_vine": "Плотная лоза", "block.betterend.dense_vine": "Плотная лоза",
"block.betterend.bubble_coral": "Пузырчатый коралл",
"block.betterend.aurora_crystal": "Кристалл авроры",
"category.rei.damage.amount&dmg": "Износ инструмента: %s" "category.rei.damage.amount&dmg": "Износ инструмента: %s"
} }