Added rebar concrete.
|
@ -3,7 +3,7 @@ org.gradle.daemon=false
|
|||
org.gradle.jvmargs=-Xmx8G
|
||||
version_minecraft=1.12.2
|
||||
version_forge=14.23.5.2768
|
||||
version_engineersdecor=1.0.0-b1
|
||||
version_engineersdecor=1.0.0-b2
|
||||
#
|
||||
# jar signing data loaded from signing.properties in the project root.
|
||||
#
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/redstone-gauges-and-switches/",
|
||||
"1.12.2": {
|
||||
"1.0.0-b1": "[A] Initial structure.\n[A] Added clinker bricks and clinker brick stairs.\n[A] Added slag bricks and slag brick stairs.\n[A] Added metal rung ladder.\n[A] Added staggered metal steps ladder.\n[A] Added treated wood ladder.\n[A] Added treated wood pole.\n[A] Added treated wood table."
|
||||
"1.0.0-b1": "[A] Initial structure.\n[A] Added clinker bricks and clinker brick stairs.\n[A] Added slag bricks and slag brick stairs.\n[A] Added metal rung ladder.\n[A] Added staggered metal steps ladder.\n[A] Added treated wood ladder.\n[A] Added treated wood pole.\n[A] Added treated wood table.",
|
||||
"1.0.0-b2": "[A] Added rebar concrete (steel reinforced, expensive, creeper-proof)."
|
||||
},
|
||||
"promos": {
|
||||
"1.12.2-recommended": "",
|
||||
|
|
|
@ -74,6 +74,9 @@ More to come slowly but steadily.
|
|||
[A] Added treated wood pole.
|
||||
[A] Added treated wood table.
|
||||
|
||||
- v1.0.0-b2 [A] Added rebar concrete (steel reinforced, expensive, creeper-proof).
|
||||
|
||||
|
||||
### Community references
|
||||
|
||||
Mods covering similar features, or may fit well together with IE and the decorations of this mod:
|
||||
|
|
|
@ -34,9 +34,10 @@ import javax.annotation.Nonnull;
|
|||
@SuppressWarnings("unused")
|
||||
public class ModBlocks
|
||||
{
|
||||
public static final BlockDecorFull CLINKER_BRICK_WALL = new BlockDecorFull("clinker_brick_block", 0, Material.ROCK, 1.5f, 20f, SoundType.STONE);
|
||||
public static final BlockDecorFull SLAG_BRICK_WALL = new BlockDecorFull("slag_brick_block", 0, Material.ROCK, 1.8f, 25f, SoundType.STONE);
|
||||
public static final BlockDecorFull CLINKER_BRICK_WALL = new BlockDecorFull("clinker_brick_block", 0, Material.ROCK, 2f, 50f, SoundType.STONE);
|
||||
public static final BlockDecorFull SLAG_BRICK_WALL = new BlockDecorFull("slag_brick_block", 0, Material.ROCK, 2f, 50f, SoundType.STONE);
|
||||
public static final BlockDecorFull IRON_SHEET_ROOF_FULLBLOCK = new BlockDecorFull("iron_sheet_roof_block", 0, Material.IRON, 1.8f, 25f, SoundType.METAL);
|
||||
public static final BlockDecorFull REBAR_CONCRETE = new BlockDecorFull("rebar_concrete", 0, Material.ROCK, 8f, 2000f, SoundType.STONE);
|
||||
|
||||
public static final BlockDecorLadder METAL_RUNG_LADDER = new BlockDecorLadder("metal_rung_ladder", 0, Material.IRON, 1.8f, 25f, SoundType.METAL);
|
||||
public static final BlockDecorLadder METAL_RUNG_STEPS = new BlockDecorLadder("metal_rung_steps", 0, Material.IRON, 1.8f, 25f, SoundType.METAL);
|
||||
|
@ -68,6 +69,7 @@ public class ModBlocks
|
|||
SLAG_BRICK_STAIRS,
|
||||
TREATED_WOOD_POLE,
|
||||
TREATED_WOOD_TABLE,
|
||||
REBAR_CONCRETE,
|
||||
};
|
||||
|
||||
private static final Block devBlocks[] = {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:clinker_brick_model",
|
||||
"model": "engineersdecor:decor_full_block_model",
|
||||
"textures": { "all": "engineersdecor:blocks/clinker_brick/clinker_brick_texture0" }
|
||||
},
|
||||
"variants": {
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:decor_full_block_model",
|
||||
"textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture0" }
|
||||
},
|
||||
"variants": {
|
||||
"normal": [
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture0" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture1" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture2" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture3" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture4" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture5" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture6" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/rebar_concrete_texture7" } }
|
||||
],
|
||||
"inventory": [{}]
|
||||
}
|
||||
}
|
|
@ -10,12 +10,14 @@ engineersdecor.tooltip.hint.extended=§6[§9SHIFT§r More info§6]§r
|
|||
engineersdecor.tooltip.hint.help=§6[§9CTRL-SHIFT§r Help§6]§r
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------
|
||||
# Wall blocks
|
||||
# Stone/"ceramic material" based blocks
|
||||
#-----------------------------------------------------------------------------------------------------------
|
||||
tile.engineersdecor.clinker_brick_block.name=Clinker brick
|
||||
tile.engineersdecor.clinker_brick_block.help=§6A brick wall block with position dependent texture variations.§r\nLooks slightly darker and more color intensive than the vanilla brick block.
|
||||
tile.engineersdecor.slag_brick_block.name=Slag brick
|
||||
tile.engineersdecor.slag_brick_block.help=§6A gray-brown brick wall block with position dependent texture variations.
|
||||
tile.engineersdecor.rebar_concrete.name=Rebar concrete
|
||||
tile.engineersdecor.rebar_concrete.help=§6Steel reinforced concrete block.§r Expensive but Creeper-proof like obsidian.
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------
|
||||
# Ladder blocks
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
{ "parent": "block/cube_all", "textures": { "all": "engineersdecor:blocks/clinker_brick/clinker_brick_texture0" } }
|
|
@ -114,7 +114,6 @@
|
|||
],
|
||||
"name": "ingotAnyBrick"
|
||||
},
|
||||
|
||||
{
|
||||
"ingredient": [
|
||||
{
|
||||
|
@ -127,6 +126,13 @@
|
|||
}
|
||||
],
|
||||
"name": "stickFerroMetal"
|
||||
},
|
||||
{
|
||||
"ingredient": {
|
||||
"item": "immersiveengineering:stone_decoration",
|
||||
"data": 5
|
||||
},
|
||||
"name": "blockConcreteIe"
|
||||
}
|
||||
|
||||
]
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:rebar_concrete",
|
||||
"required": ["immersiveengineering:stone_decoration"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"SCS",
|
||||
"CSC",
|
||||
"SCS"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "#blockConcreteIe",
|
||||
"data": 0
|
||||
},
|
||||
"S": {
|
||||
"item": "#stickSteel",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:rebar_concrete",
|
||||
"count": 4
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 608 B |
After Width: | Height: | Size: 615 B |
After Width: | Height: | Size: 641 B |
After Width: | Height: | Size: 620 B |
After Width: | Height: | Size: 614 B |
After Width: | Height: | Size: 619 B |
After Width: | Height: | Size: 613 B |
After Width: | Height: | Size: 615 B |