added java block

This commit is contained in:
Jonas_Jones 2023-04-05 00:06:26 +02:00
parent 155bec7730
commit ccd98528cc
5 changed files with 23 additions and 0 deletions

View file

@ -17,6 +17,7 @@ public class ModBlocks {
public static final Block GUN_BLOCK = new Block(FabricBlockSettings.of(Material.STONE).strength(4.0F)); public static final Block GUN_BLOCK = new Block(FabricBlockSettings.of(Material.STONE).strength(4.0F));
public static final Block DIAMOND_ORE_ORE = new Block(FabricBlockSettings.of(Material.STONE).strength(4.0F)); public static final Block DIAMOND_ORE_ORE = new Block(FabricBlockSettings.of(Material.STONE).strength(4.0F));
public static final Block DEEPSLATE_DIAMOND_ORE_ORE = new Block(FabricBlockSettings.of(Material.STONE).strength(4.0F)); public static final Block DEEPSLATE_DIAMOND_ORE_ORE = new Block(FabricBlockSettings.of(Material.STONE).strength(4.0F));
public static final Block JAVA_BLOCK = new Block(FabricBlockSettings.of(Material.STONE).strength(5.0F));
private static BlockItem GUN_BLOCK_ITEM; private static BlockItem GUN_BLOCK_ITEM;
private static Block GUN_BLOCK_BLOCK; private static Block GUN_BLOCK_BLOCK;
private static BlockItem BLAZE_BLOCK_ITEM; private static BlockItem BLAZE_BLOCK_ITEM;
@ -26,6 +27,8 @@ public class ModBlocks {
public static Block DIAMOND_ORE_ORE_BLOCK; public static Block DIAMOND_ORE_ORE_BLOCK;
public static BlockItem DEEPSLATE_DIAMOND_ORE_ORE_ITEM; public static BlockItem DEEPSLATE_DIAMOND_ORE_ORE_ITEM;
public static Block DEEPSLATE_DIAMOND_ORE_ORE_BLOCK; public static Block DEEPSLATE_DIAMOND_ORE_ORE_BLOCK;
public static BlockItem JAVA_BLOCK_ITEM;
public static Block JAVA_BLOCK_BLOCK;
public static BlockItem GREEN_BIRCH_LOG_ITEM; public static BlockItem GREEN_BIRCH_LOG_ITEM;
//public static final Block GREEN_BIRCH_WOOD = new PillarBlock(FabricBlockSettings.of(Material.WOOD).strength(4.0f)); //public static final Block GREEN_BIRCH_WOOD = new PillarBlock(FabricBlockSettings.of(Material.WOOD).strength(4.0f));
//public static final Block STRIPPED_GREEN_BIRCH_LOG = new PillarBlock(FabricBlockSettings.of(Material.WOOD).strength(4.0f)); //public static final Block STRIPPED_GREEN_BIRCH_LOG = new PillarBlock(FabricBlockSettings.of(Material.WOOD).strength(4.0f));
@ -51,5 +54,9 @@ public class ModBlocks {
DEEPSLATE_DIAMOND_ORE_ORE_BLOCK = Registry.register(Registries.BLOCK, new Identifier("nec", "deepslate_diamond_ore_ore"), DEEPSLATE_DIAMOND_ORE_ORE); DEEPSLATE_DIAMOND_ORE_ORE_BLOCK = Registry.register(Registries.BLOCK, new Identifier("nec", "deepslate_diamond_ore_ore"), DEEPSLATE_DIAMOND_ORE_ORE);
DEEPSLATE_DIAMOND_ORE_ORE_ITEM = Registry.register(Registries.ITEM, new Identifier("nec", "deepslate_diamond_ore_ore"), new BlockItem(DEEPSLATE_DIAMOND_ORE_ORE, new FabricItemSettings())); DEEPSLATE_DIAMOND_ORE_ORE_ITEM = Registry.register(Registries.ITEM, new Identifier("nec", "deepslate_diamond_ore_ore"), new BlockItem(DEEPSLATE_DIAMOND_ORE_ORE, new FabricItemSettings()));
ModRegistries.register_item(DEEPSLATE_DIAMOND_ORE_ORE_ITEM); ModRegistries.register_item(DEEPSLATE_DIAMOND_ORE_ORE_ITEM);
JAVA_BLOCK_BLOCK = Registry.register(Registries.BLOCK, new Identifier("nec", "java_block"), JAVA_BLOCK);
JAVA_BLOCK_ITEM = Registry.register(Registries.ITEM, new Identifier("nec", "java_block"), new BlockItem(JAVA_BLOCK, new FabricItemSettings()));
ModRegistries.register_item(JAVA_BLOCK_ITEM);
} }
} }

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "nec:block/java_block"
}
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "nec:block/java_block"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "nec:block/java_block"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB