mirror of
https://github.com/chylex/Hardcore-Ender-Expansion-2.git
synced 2025-03-16 11:15:42 +01:00
Add Miner's Burial Blocks
This commit is contained in:
parent
6d8a7108d1
commit
568259d519
src/main
java/chylex/hee
resources/assets/hee
blockstates
miners_burial_block_chiseled.jsonminers_burial_block_jail.jsonminers_burial_block_pillar.jsonminers_burial_block_plain.json
lang
recipes
textures/block
@ -143,6 +143,14 @@ object BlockBuilders{
|
||||
explosionResistance = 5.0F
|
||||
}
|
||||
|
||||
// Building (Miner's Burial)
|
||||
|
||||
val buildMinersBurial = BlockBuilder(Materials.SOLID_WITH_TOOL, MapColor.RED, SoundType.STONE).apply {
|
||||
harvestTool = Pair(WOOD, PICKAXE)
|
||||
harvestHardness = 0.6F
|
||||
explosionResistance = 200F
|
||||
}
|
||||
|
||||
// Interactive (Storage)
|
||||
|
||||
val buildJarODust = BlockBuilder(Materials.SOLID_NO_TOOL, MapColor.ORANGE_STAINED_HARDENED_CLAY, SoundType.METAL).apply {
|
||||
|
@ -233,6 +233,13 @@ object ModBlocks{
|
||||
@JvmField val WHITEBARK_SLAB = BlockSlabCustom.Half(buildWhitebarkPlanks).apply { setup("whitebark_slab") }
|
||||
@JvmField val WHITEBARK_DOUBLE_SLAB = BlockSlabCustom.Full(buildWhitebarkPlanks, WHITEBARK_SLAB).apply { setup("whitebark_slab_double", "hee.whitebark_slab") }
|
||||
|
||||
// Blocks: Building (Miner's Burial)
|
||||
|
||||
@JvmField val MINERS_BURIAL_BLOCK_PLAIN = BlockSimple(buildMinersBurial).apply { setup("miners_burial_block_plain") }
|
||||
@JvmField val MINERS_BURIAL_BLOCK_CHISELED = BlockSimple(buildMinersBurial).apply { setup("miners_burial_block_chiseled") }
|
||||
@JvmField val MINERS_BURIAL_BLOCK_PILLAR = BlockPillarCustom(buildMinersBurial).apply { setup("miners_burial_block_pillar") }
|
||||
@JvmField val MINERS_BURIAL_BLOCK_JAIL = BlockSimple(buildMinersBurial).apply { setup("miners_burial_block_jail") }
|
||||
|
||||
// Blocks: Fluids
|
||||
|
||||
@JvmField val ENDER_GOO = BlockEnderGoo().apply { setup("ender_goo") }
|
||||
@ -414,6 +421,11 @@ object ModBlocks{
|
||||
register(WHITEBARK_SLAB with woodenSlabItemBlock(WHITEBARK_SLAB, WHITEBARK_DOUBLE_SLAB))
|
||||
register(WHITEBARK_DOUBLE_SLAB)
|
||||
|
||||
register(MINERS_BURIAL_BLOCK_PLAIN with basicItemBlock)
|
||||
register(MINERS_BURIAL_BLOCK_CHISELED with basicItemBlock)
|
||||
register(MINERS_BURIAL_BLOCK_PILLAR with basicItemBlock)
|
||||
register(MINERS_BURIAL_BLOCK_JAIL with basicItemBlock)
|
||||
|
||||
register(ENDER_GOO)
|
||||
register(PURIFIED_ENDER_GOO)
|
||||
register(CAULDRON_ENDER_GOO)
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "cube_all",
|
||||
"textures": {
|
||||
"all": "hee:block/miners_burial_block_chiseled"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"normal": [{}],
|
||||
"inventory": [{}]
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "cube_all",
|
||||
"textures": {
|
||||
"all": "hee:block/miners_burial_block_jail"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"normal": [{}],
|
||||
"inventory": [{}]
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "cube_column",
|
||||
"textures": {
|
||||
"end": "hee:block/miners_burial_block_pillar_top",
|
||||
"side": "hee:block/miners_burial_block_pillar"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"axis": {
|
||||
"y": {},
|
||||
"z": {
|
||||
"x": 90
|
||||
},
|
||||
"x": {
|
||||
"x": 90,
|
||||
"y": 90
|
||||
}
|
||||
},
|
||||
"inventory": [{}]
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "cube_all",
|
||||
"textures": {
|
||||
"all": "hee:block/miners_burial_block_plain"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"normal": [{}],
|
||||
"inventory": [{}]
|
||||
}
|
||||
}
|
@ -58,6 +58,11 @@ tile.hee.whitebark_planks.name=Whitebark Planks
|
||||
tile.hee.whitebark_stairs.name=Whitebark Stairs
|
||||
tile.hee.whitebark_slab.name=Whitebark Slab
|
||||
|
||||
tile.hee.miners_burial_block_plain.name=Miner's Burial Block
|
||||
tile.hee.miners_burial_block_chiseled.name=Miner's Burial Block (Chiseled)
|
||||
tile.hee.miners_burial_block_pillar.name=Miner's Burial Block (Pillar)
|
||||
tile.hee.miners_burial_block_jail.name=Miner's Burial Block (Jail)
|
||||
|
||||
tile.hee.jar_o_dust.name=Jar o' Dust
|
||||
tile.hee.jar_o_dust.tooltip.entry=%sx %s
|
||||
tile.hee.dark_chest.name=Dark Chest
|
||||
|
@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"###",
|
||||
"#X#",
|
||||
"###"
|
||||
],
|
||||
"key": {
|
||||
"#": { "item": "minecraft:quartz_block", "data": 1 },
|
||||
"X": { "item": "hee:infernium" }
|
||||
},
|
||||
"result": {
|
||||
"item": "hee:miners_burial_block_chiseled",
|
||||
"count": 16
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"###",
|
||||
"#X#",
|
||||
"###"
|
||||
],
|
||||
"key": {
|
||||
"#": { "item": "minecraft:quartz_block", "data": 2 },
|
||||
"X": { "item": "hee:infernium" }
|
||||
},
|
||||
"result": {
|
||||
"item": "hee:miners_burial_block_pillar",
|
||||
"count": 16
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"###",
|
||||
"#X#",
|
||||
"###"
|
||||
],
|
||||
"key": {
|
||||
"#": { "item": "minecraft:quartz_block", "data": 0 },
|
||||
"X": { "item": "hee:infernium" }
|
||||
},
|
||||
"result": {
|
||||
"item": "hee:miners_burial_block_plain",
|
||||
"count": 16
|
||||
}
|
||||
}
|
Binary file not shown.
After ![]() (image error) Size: 488 B |
Binary file not shown.
After ![]() (image error) Size: 379 B |
Binary file not shown.
After ![]() (image error) Size: 317 B |
Binary file not shown.
After ![]() (image error) Size: 484 B |
Binary file not shown.
After ![]() (image error) Size: 399 B |
Loading…
Reference in New Issue
Block a user