Added Gas Concrete (decorative, low hardness, high production yield). Added missing recipes.
|
@ -4,4 +4,4 @@ org.gradle.jvmargs=-Xmx8G
|
|||
version_minecraft=1.12.2
|
||||
version_forge=14.23.5.2768
|
||||
version_jei=4.10.0.198
|
||||
version_engineersdecor=1.0.16-b1
|
||||
version_engineersdecor=1.0.16-b2
|
||||
|
|
|
@ -10,6 +10,9 @@ Mod sources for Minecraft version 1.12.2.
|
|||
----
|
||||
## Version history
|
||||
|
||||
~ v1.0.16-b2 [A] Added Gas Concrete (including slab, wall, stairs, and slab slice).
|
||||
[F] Fixed item-on-ground display glitch (issue #61, thx Federsavo for the hint).
|
||||
|
||||
- v1.0.16-b1 [A] Added Fluid Collection Funnel.
|
||||
[A] Added config opt-outs for Breaker, Placer, Fluid Funnel, Mineral Smelter.
|
||||
[A] Added configs tweaks for Small Block Breaker and Small Tree Cutter (cffr#185).
|
||||
|
|
|
@ -70,6 +70,11 @@ public class ModContent
|
|||
|
||||
public static final BlockDecorWall CONCRETE_WALL = new BlockDecorWall("concrete_wall", BlockDecor.CFG_DEFAULT, Material.ROCK, 5f, 20f, SoundType.STONE);
|
||||
|
||||
public static final BlockDecorFull GAS_CONCRETE_BLOCK = new BlockDecorFull("gas_concrete", 0, Material.ROCK, 1.5f, 10f, SoundType.STONE);
|
||||
public static final BlockDecorStairs GAS_CONCRETE_STAIRS = new BlockDecorStairs("gas_concrete_stairs", REBAR_CONCRETE_BLOCK.getDefaultState());
|
||||
public static final BlockDecorWall GAS_CONCRETE_WALL = new BlockDecorWall("gas_concrete_wall", BlockDecor.CFG_DEFAULT, Material.ROCK, 1.5f, 10f, SoundType.STONE);
|
||||
public static final BlockDecorSlab GAS_CONCRETE_SLAB = new BlockDecorSlab("gas_concrete_slab", BlockDecor.CFG_DEFAULT, Material.ROCK, 1.5f, 10f, SoundType.STONE);
|
||||
|
||||
public static final BlockDecorLadder METAL_RUNG_LADDER = new BlockDecorLadder("metal_rung_ladder", 0, Material.IRON, 0.5f, 20f, SoundType.METAL);
|
||||
public static final BlockDecorLadder METAL_RUNG_STEPS = new BlockDecorLadder("metal_rung_steps", 0, Material.IRON, 0.5f, 20f, SoundType.METAL);
|
||||
public static final BlockDecorLadder TREATED_WOOD_LADDER = new BlockDecorLadder("treated_wood_ladder", 0, Material.WOOD, 0.5f, 10f, SoundType.WOOD);
|
||||
|
@ -409,6 +414,11 @@ public class ModContent
|
|||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HARD_IE_DEPENDENT,
|
||||
Material.ROCK, 1.0f, 10f, SoundType.STONE
|
||||
);
|
||||
public static final BlockDecorHalfSlab HALFSLAB_GAS_CONCRETE = new BlockDecorHalfSlab(
|
||||
"halfslab_gas_concrete",
|
||||
BlockDecor.CFG_CUTOUT,
|
||||
Material.ROCK, 1.5f, 10f, SoundType.STONE
|
||||
);
|
||||
public static final BlockDecorHalfSlab HALFSLAB_TREATEDWOOD = new BlockDecorHalfSlab(
|
||||
"halfslab_treated_wood",
|
||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HARD_IE_DEPENDENT,
|
||||
|
@ -543,6 +553,10 @@ public class ModContent
|
|||
REBAR_CONCRETE_TILE,
|
||||
REBAR_CONCRETE_TILE_SLAB,
|
||||
REBAR_CONCRETE_TILE_STAIRS,
|
||||
GAS_CONCRETE_BLOCK,
|
||||
GAS_CONCRETE_SLAB,
|
||||
GAS_CONCRETE_STAIRS,
|
||||
GAS_CONCRETE_WALL,
|
||||
CONCRETE_WALL,
|
||||
PANZERGLASS_BLOCK,
|
||||
METAL_RUNG_LADDER,
|
||||
|
@ -569,7 +583,7 @@ public class ModContent
|
|||
STEEL_MESH_FENCE,
|
||||
SIGN_HOTWIRE, SIGN_DANGER, SIGN_DEFENSE, SIGN_FACTORY_AREA, SIGN_EXIT, SIGN_MODLOGO,
|
||||
TREATED_WOOD_SIDE_TABLE,
|
||||
HALFSLAB_REBARCONCRETE, HALFSLAB_CONCRETE, HALFSLAB_TREATEDWOOD,
|
||||
HALFSLAB_REBARCONCRETE, HALFSLAB_CONCRETE, HALFSLAB_GAS_CONCRETE, HALFSLAB_TREATEDWOOD,
|
||||
HALFSLAB_SHEETMETALIRON, HALFSLAB_SHEETMETALSTEEL, HALFSLAB_SHEETMETALCOPPER,
|
||||
HALFSLAB_SHEETMETALGOLD, HALFSLAB_SHEETMETALALUMINIUM,
|
||||
};
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:std/decor_full_block_model",
|
||||
"textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture0" }
|
||||
},
|
||||
"variants": {
|
||||
"normal": [
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture0" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture1" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture2" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture3" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture4" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture5" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture6" } },
|
||||
{ "textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture7" } }
|
||||
],
|
||||
"inventory": [{}]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:slab/slab_s0_model",
|
||||
"textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture0" }
|
||||
},
|
||||
"variants": {
|
||||
"normal": [{}],
|
||||
"inventory": [{}],
|
||||
"parts": {
|
||||
"0" : { "model": "engineersdecor:slab/slab_s0_model" },
|
||||
"1" : { "model": "engineersdecor:slab/slab_s1_model" },
|
||||
"2" : { "model": "engineersdecor:slab/slab_s2_model" }
|
||||
},
|
||||
"tvariant": {
|
||||
"0":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture0"}},
|
||||
"1":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture1"}},
|
||||
"2":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture2"}},
|
||||
"3":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture3"}},
|
||||
"4":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture4"}},
|
||||
"5":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture5"}},
|
||||
"6":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture6"}},
|
||||
"7":{"textures":{"all": "engineersdecor:blocks/concrete/gas_concrete_texture7"}}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:stairs/decor_straight_stairs_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:blocks/concrete/gas_concrete_texture0",
|
||||
"bottom": "engineersdecor:blocks/concrete/gas_concrete_texture0",
|
||||
"top": "engineersdecor:blocks/concrete/gas_concrete_texture0",
|
||||
"side": "engineersdecor:blocks/concrete/gas_concrete_texture0"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"normal": [{}],
|
||||
"inventory": [{}],
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:stairs/decor_straight_stairs_model", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:stairs/decor_outer_stairs_model", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:stairs/decor_inner_stairs_model", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:wall/concrete_wall_default",
|
||||
"textures": {
|
||||
"wall": "engineersdecor:blocks/concrete/gas_concrete_texture0",
|
||||
"particle": "engineersdecor:blocks/concrete/gas_concrete_texture0"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"inventory": { "model": "engineersdecor:wall/concrete_wall_inventory" },
|
||||
"up" : { "false":{}, "true": {"submodel": {"concrete_wall_up" : {"model": "engineersdecor:wall/concrete_wall_post" }}} },
|
||||
"north": { "false":{}, "true": {"submodel": {"concrete_wall_north" : {"model": "engineersdecor:wall/concrete_wall_side", "uvlock": true, "y": 0 }}} },
|
||||
"east" : { "false":{}, "true": {"submodel": {"concrete_wall_east" : {"model": "engineersdecor:wall/concrete_wall_side", "uvlock": true, "y": 90 }}} },
|
||||
"south": { "false":{}, "true": {"submodel": {"concrete_wall_south" : {"model": "engineersdecor:wall/concrete_wall_side", "uvlock": true, "y": 180 }}} },
|
||||
"west" : { "false":{}, "true": {"submodel": {"concrete_wall_west" : {"model": "engineersdecor:wall/concrete_wall_side", "uvlock": true, "y": 270 }}} },
|
||||
"tvariant": {
|
||||
"0":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture0" }},
|
||||
"1":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture1" }},
|
||||
"2":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture2" }},
|
||||
"3":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture3" }},
|
||||
"4":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture4" }},
|
||||
"5":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture5" }},
|
||||
"6":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture6" }},
|
||||
"7":{"textures":{ "wall": "engineersdecor:blocks/concrete/gas_concrete_texture7" }}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:slab/halfslab_s0_model",
|
||||
"textures": { "all": "engineersdecor:blocks/concrete/gas_concrete_texture0" }
|
||||
},
|
||||
"variants": {
|
||||
"normal": [{}],
|
||||
"inventory": [{}],
|
||||
"parts": {
|
||||
"0" : { "model": "engineersdecor:slab/halfslab_s0_model" },
|
||||
"1" : { "model": "engineersdecor:slab/halfslab_s1_model" },
|
||||
"2" : { "model": "engineersdecor:slab/halfslab_s2_model" },
|
||||
"3" : { "model": "engineersdecor:slab/halfslab_s3_model" },
|
||||
"4" : { "model": "engineersdecor:slab/halfslab_s4_model" },
|
||||
"5" : { "model": "engineersdecor:slab/halfslab_s5_model" },
|
||||
"6" : { "model": "engineersdecor:slab/halfslab_s6_model" },
|
||||
"7" : { "model": "engineersdecor:slab/halfslab_s7_model" },
|
||||
"8" : { "model": "engineersdecor:slab/halfslab_s8_model" },
|
||||
"9" : { "model": "engineersdecor:slab/halfslab_s9_model" },
|
||||
"10": { "model": "engineersdecor:slab/halfslab_sa_model" },
|
||||
"11": { "model": "engineersdecor:slab/halfslab_sb_model" },
|
||||
"12": { "model": "engineersdecor:slab/halfslab_sc_model" },
|
||||
"13": { "model": "engineersdecor:slab/halfslab_sd_model" },
|
||||
"14": { "model": "engineersdecor:slab/halfslab_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -19,6 +19,8 @@ tile.engineersdecor.slag_brick_block.name=Slag Brick Block
|
|||
tile.engineersdecor.slag_brick_block.help=§6A gray-brown brick block with position dependent texture variations.
|
||||
tile.engineersdecor.rebar_concrete.name=Rebar Concrete Block
|
||||
tile.engineersdecor.rebar_concrete.help=§6Steel reinforced concrete block.§r Expensive but Creeper-proof like obsidian.
|
||||
tile.engineersdecor.gas_concrete.name=Gas Concrete Block
|
||||
tile.engineersdecor.gas_concrete.help=§6Low hardness, high production yield concrete.§r Easy to break decorative concrete block.
|
||||
tile.engineersdecor.panzerglass_block.name=Panzer Glass Block
|
||||
tile.engineersdecor.panzerglass_block.help=§6Reinforced glass block.§r Expensive, explosion-proof. Dark gray tint, faint structural lines visible, multi texture for seemless look.
|
||||
tile.engineersdecor.rebar_concrete_tile.name=Rebar Concrete Tile
|
||||
|
@ -34,6 +36,8 @@ tile.engineersdecor.rebar_concrete_slab.name=Rebar Concrete Slab
|
|||
tile.engineersdecor.rebar_concrete_slab.help=§6Steel reinforced concrete slab.§r Expensive but Creeper-proof like obsidian.
|
||||
tile.engineersdecor.rebar_concrete_tile_slab.name=Rebar Concrete Tile Slab
|
||||
tile.engineersdecor.rebar_concrete_tile_slab.help=§6Steel reinforced concrete tile slab.§r Expensive but Creeper-proof like obsidian.
|
||||
tile.engineersdecor.gas_concrete_slab.name=Gas Concrete Slab
|
||||
tile.engineersdecor.gas_concrete_slab.help=§6Low hardness concrete slab.§r Easy to break decorative concrete.
|
||||
tile.engineersdecor.panzerglass_slab.name=Panzer Glass Slab
|
||||
tile.engineersdecor.panzerglass_slab.help=§6Reinforced glass slab.§r Expensive, explosion-proof. Dark gray tint, faint structural lines visible.
|
||||
tile.engineersdecor.treated_wood_floor.name=Treated Wood Floor
|
||||
|
@ -43,6 +47,8 @@ tile.engineersdecor.rebar_concrete_wall.name=Rebar Concrete Wall
|
|||
tile.engineersdecor.rebar_concrete_wall.help=§6Steel reinforced concrete wall.§r Expensive but Creeper-proof like obsidian.
|
||||
tile.engineersdecor.concrete_wall.name=Concrete Wall
|
||||
tile.engineersdecor.concrete_wall.help=§6Wall made of solid concrete.
|
||||
tile.engineersdecor.gas_concrete_wall.name=Gas Concrete Wall
|
||||
tile.engineersdecor.gas_concrete_wall.help=§6Low hardness concrete wall.§r Easy to break decorative concrete.
|
||||
tile.engineersdecor.clinker_brick_wall.name=Clinker Brick Wall
|
||||
tile.engineersdecor.clinker_brick_wall.help=§6Simplistic Clinker Brick Wall.
|
||||
tile.engineersdecor.slag_brick_wall.name=Slag Brick Wall
|
||||
|
@ -65,6 +71,8 @@ tile.engineersdecor.rebar_concrete_stairs.name=Rebar Concrete Stairs
|
|||
tile.engineersdecor.rebar_concrete_stairs.help=§6Steel reinforced concrete stairs.§r Expensive but Creeper-proof like obsidian.
|
||||
tile.engineersdecor.rebar_concrete_tile_stairs.name=Rebar Concrete Tile Stairs
|
||||
tile.engineersdecor.rebar_concrete_tile_stairs.help=§6Steel reinforced concrete tile stairs.§r Expensive but Creeper-proof like obsidian.
|
||||
tile.engineersdecor.gas_concrete_stairs.name=Gas Concrete Stairs
|
||||
tile.engineersdecor.gas_concrete_stairs.help=§6Low hardness concrete stairs.§r Easy to break decorative concrete.
|
||||
#-----------------------------------------------------------------------------------------------------------
|
||||
tile.engineersdecor.treated_wood_pole.name=Straight Treated Wood Pole
|
||||
tile.engineersdecor.treated_wood_pole.help=§6Straight pole fragment with a diameter of a wire relay.§r\n\
|
||||
|
@ -213,6 +221,8 @@ tile.engineersdecor.halfslab_rebar_concrete.name=Rebar Concrete Slice
|
|||
tile.engineersdecor.halfslab_rebar_concrete.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||
tile.engineersdecor.halfslab_concrete.name=Concrete Slice
|
||||
tile.engineersdecor.halfslab_concrete.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||
tile.engineersdecor.halfslab_gas_concrete.name=Gas Concrete Slice
|
||||
tile.engineersdecor.halfslab_gas_concrete.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||
tile.engineersdecor.halfslab_treated_wood.name=Treated Wood Slice
|
||||
tile.engineersdecor.halfslab_treated_wood.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||
tile.engineersdecor.halfslab_sheetmetal_iron.name=Iron Sheet Metal Slice
|
||||
|
|
|
@ -19,6 +19,8 @@ tile.engineersdecor.slag_brick_block.name=Шлакоблок
|
|||
tile.engineersdecor.slag_brick_block.help=§6Серо-коричневый кирпичный блок с зависимыми от положения вариациями текстуры.
|
||||
tile.engineersdecor.rebar_concrete.name=Железобетон
|
||||
tile.engineersdecor.rebar_concrete.help=§6Стальной железобетонный блок.§r Дорогой, но взрывоустойчивый, как обсидиан.
|
||||
tile.engineersdecor.gas_concrete.name=Gas Concrete Block
|
||||
#tile.engineersdecor.gas_concrete.help=§6Low hardness, high production yield concrete.§r Easy to break decorative concrete block.
|
||||
tile.engineersdecor.panzerglass_block.name=Бронированное стекло
|
||||
tile.engineersdecor.panzerglass_block.help=§6Усиленный стеклоблок.§r Дорогой, взрывоустойчивый. Имеет тёмно-серый оттенок, слегка видны структурные линии, мультитекстура для бесшовного отображения.
|
||||
tile.engineersdecor.rebar_concrete_tile.name=Железобетонная плита
|
||||
|
@ -34,6 +36,8 @@ tile.engineersdecor.rebar_concrete_slab.name=Железобетонная пли
|
|||
tile.engineersdecor.rebar_concrete_slab.help=§6Бетонная плита, усиленная сталью.§r Дорогая, но взрывоустойчивая, как обсидиан.
|
||||
tile.engineersdecor.rebar_concrete_tile_slab.name=Железобетонная плитка
|
||||
tile.engineersdecor.rebar_concrete_tile_slab.help=§6Бетонная плитка, усиленная сталью.§r Дорогая, но взрывоустойчивая, как обсидиан.
|
||||
tile.engineersdecor.gas_concrete_slab.name=Gas Concrete Slab
|
||||
#tile.engineersdecor.gas_concrete_slab.help=§6Low hardness concrete slab.§r Easy to break decorative concrete.
|
||||
tile.engineersdecor.panzerglass_slab.name=Плита из бронированного стекла
|
||||
tile.engineersdecor.panzerglass_slab.help=§6Усиленная стеклянная плита.§r Дорогая, взрывоустойчивая. Имеет тёмно-серый оттенок, слегка видны структурные линии.
|
||||
tile.engineersdecor.treated_wood_floor.name=Treated Wood Floor
|
||||
|
@ -43,6 +47,8 @@ tile.engineersdecor.rebar_concrete_wall.name=Железобетонная сте
|
|||
tile.engineersdecor.rebar_concrete_wall.help=§6Стальная железобетонная стена.§r Дорогая, но взрывоустойчивая, как обсидиан.
|
||||
tile.engineersdecor.concrete_wall.name=Бетонная стена
|
||||
tile.engineersdecor.concrete_wall.help=§6Стена из твёрдого бетона.
|
||||
tile.engineersdecor.gas_concrete_wall.name=Gas Concrete Wall
|
||||
#tile.engineersdecor.gas_concrete_wall.help=§6Low hardness concrete wall.§r Easy to break decorative concrete.
|
||||
tile.engineersdecor.clinker_brick_wall.name=Клинкерная кирпичная стена
|
||||
tile.engineersdecor.clinker_brick_wall.help=§6Обыкновенная клинкерная кирпичная стена.
|
||||
tile.engineersdecor.slag_brick_wall.name=Кирпичная стена из шлакоблока
|
||||
|
@ -65,6 +71,8 @@ tile.engineersdecor.rebar_concrete_stairs.name=Железобетонные ст
|
|||
tile.engineersdecor.rebar_concrete_stairs.help=§6Железобетонные ступеньки.§r Дорогие, но взрывоустойчивые, как обсидиан.
|
||||
tile.engineersdecor.rebar_concrete_tile_stairs.name=Ступеньки из железобетонной плитки
|
||||
tile.engineersdecor.rebar_concrete_tile_stairs.help=§6Ступеньки из железобетонной плитки.§r Дорогие, но взрывоустойчивые, как обсидиан.
|
||||
tile.engineersdecor.gas_concrete_stairs.name=Gas Concrete Stairs
|
||||
#tile.engineersdecor.gas_concrete_stairs.help=§6Low hardness concrete stairs.§r Easy to break decorative concrete.
|
||||
#-----------------------------------------------------------------------------------------------------------
|
||||
tile.engineersdecor.treated_wood_pole.name=Прямой обработанный деревянный столб
|
||||
tile.engineersdecor.treated_wood_pole.help=§6Надёжный столб с диаметром, схожим с реле.§r\n\
|
||||
|
@ -209,6 +217,8 @@ tile.engineersdecor.halfslab_rebar_concrete.name=Арматура для бет
|
|||
tile.engineersdecor.halfslab_rebar_concrete.help=§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.
|
||||
tile.engineersdecor.halfslab_concrete.name=Бетонный срез
|
||||
tile.engineersdecor.halfslab_concrete.help=§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.
|
||||
tile.engineersdecor.halfslab_gas_concrete.name=Gas Concrete Slice
|
||||
#tile.engineersdecor.halfslab_gas_concrete.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||
tile.engineersdecor.halfslab_treated_wood.name=Часть обработанного дерева
|
||||
tile.engineersdecor.halfslab_treated_wood.help=§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.
|
||||
tile.engineersdecor.halfslab_sheetmetal_iron.name=Часть железного листового металла
|
||||
|
|
|
@ -19,6 +19,8 @@ tile.engineersdecor.slag_brick_block.name=炉渣砖块
|
|||
tile.engineersdecor.slag_brick_block.help=§6一种放在不同位置贴图有不同变化的灰棕色砖块。
|
||||
tile.engineersdecor.rebar_concrete.name=钢筋混凝土
|
||||
tile.engineersdecor.rebar_concrete.help=§6钢强化的混凝土。§r昂贵但像黑曜石一样防爬行者爆炸。
|
||||
tile.engineersdecor.gas_concrete.name=Gas Concrete Block
|
||||
#tile.engineersdecor.gas_concrete.help=§6Low hardness, high production yield concrete.§r Easy to break decorative concrete block.
|
||||
tile.engineersdecor.panzerglass_block.name=装甲玻璃块
|
||||
tile.engineersdecor.panzerglass_block.help=§6强化的玻璃方块。§r昂贵,防爆。深灰色调,有隐约可见的结构线和多种纹理,外观无光泽。
|
||||
tile.engineersdecor.rebar_concrete_tile.name=钢筋混凝土砖
|
||||
|
@ -34,6 +36,8 @@ tile.engineersdecor.rebar_concrete_slab.name=钢筋混凝土台阶
|
|||
tile.engineersdecor.rebar_concrete_slab.help=§6钢强化的混凝土台阶。§r昂贵但像黑曜石一样防爬行者爆炸。
|
||||
tile.engineersdecor.rebar_concrete_tile_slab.name=钢筋混凝土砖台阶
|
||||
tile.engineersdecor.rebar_concrete_tile_slab.help=§6钢强化的混凝土砖台阶。§r昂贵但像黑曜石一样防爬行者爆炸。
|
||||
tile.engineersdecor.gas_concrete_slab.name=Gas Concrete Slab
|
||||
#tile.engineersdecor.gas_concrete_slab.help=§6Low hardness concrete slab.§r Easy to break decorative concrete.
|
||||
tile.engineersdecor.panzerglass_slab.name=装甲玻璃台阶
|
||||
tile.engineersdecor.panzerglass_slab.help=§6强化的玻璃台阶。§r昂贵,防爆。深灰色调,有隐约可见的结构线和多种纹理。
|
||||
tile.engineersdecor.treated_wood_floor.name=防腐木地板
|
||||
|
@ -43,6 +47,8 @@ tile.engineersdecor.rebar_concrete_wall.name=钢筋混凝土墙
|
|||
tile.engineersdecor.rebar_concrete_wall.help=§6钢强化的混凝土墙。§r 昂贵但像黑曜石一样防爬行者爆炸。
|
||||
tile.engineersdecor.concrete_wall.name=混凝土墙
|
||||
tile.engineersdecor.concrete_wall.help=§6用坚固混凝土制造的墙。
|
||||
tile.engineersdecor.gas_concrete_wall.name=Gas Concrete Wall
|
||||
#tile.engineersdecor.gas_concrete_wall.help=§6Low hardness concrete wall.§r Easy to break decorative concrete.
|
||||
tile.engineersdecor.clinker_brick_wall.name=过烧砖墙
|
||||
tile.engineersdecor.clinker_brick_wall.help=§6简单的过烧砖墙。
|
||||
tile.engineersdecor.slag_brick_wall.name=炉渣砖墙
|
||||
|
@ -65,6 +71,8 @@ tile.engineersdecor.rebar_concrete_stairs.name=钢筋混凝土楼梯
|
|||
tile.engineersdecor.rebar_concrete_stairs.help=§6钢强化的混凝土楼梯。§r昂贵但像黑曜石一样防爬行者爆炸。
|
||||
tile.engineersdecor.rebar_concrete_tile_stairs.name=钢筋混凝土砖楼梯
|
||||
tile.engineersdecor.rebar_concrete_tile_stairs.help=§6钢强化的混凝土砖楼梯。§r昂贵但像黑曜石一样防爬行者爆炸。
|
||||
tile.engineersdecor.gas_concrete_stairs.name=Gas Concrete Stairs
|
||||
#tile.engineersdecor.gas_concrete_stairs.help=§6Low hardness concrete stairs.§r Easy to break decorative concrete.
|
||||
#-----------------------------------------------------------------------------------------------------------
|
||||
tile.engineersdecor.treated_wood_pole.name=直防腐木杆
|
||||
tile.engineersdecor.treated_wood_pole.help=§6直杆的一段,有着继电器的直径。§r\n\
|
||||
|
@ -209,6 +217,8 @@ tile.engineersdecor.halfslab_rebar_concrete.name=强化混凝土切片
|
|||
tile.engineersdecor.halfslab_rebar_concrete.help=§6可垂直堆叠的切片。§r手持切片右/左击切片堆叠的顶端或底部来添加/移除切片。
|
||||
tile.engineersdecor.halfslab_concrete.name=混凝土切片
|
||||
tile.engineersdecor.halfslab_concrete.help=§6可垂直堆叠的切片。§r手持切片右/左击切片堆叠的顶端或底部来添加/移除切片。
|
||||
tile.engineersdecor.halfslab_gas_concrete.name=Gas Concrete Slice
|
||||
#tile.engineersdecor.halfslab_gas_concrete.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||
tile.engineersdecor.halfslab_treated_wood.name=防腐木切片
|
||||
tile.engineersdecor.halfslab_treated_wood.help=§6可垂直堆叠的切片。§r手持切片右/左击切片堆叠的顶端或底部来添加/移除切片。
|
||||
tile.engineersdecor.halfslab_sheetmetal_iron.name=铁板金属块切片
|
||||
|
|
|
@ -108,7 +108,8 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 225, 0],
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -95,7 +95,8 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 225, 0],
|
||||
|
|
|
@ -240,7 +240,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -245,7 +245,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -240,7 +240,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -369,7 +369,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -447,7 +447,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -282,7 +282,8 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 225, 0],
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -208,7 +208,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -1.25, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -207,7 +207,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -0.75, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -94,6 +94,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -179,6 +179,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -93,6 +93,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -174,6 +174,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -370,6 +370,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -193,6 +193,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -138,6 +138,7 @@
|
|||
"rotation": [-3, 18, 0]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -176,6 +176,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -98,6 +98,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, -4.25, 0],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"scale": [0.36, 0.36, 0.36]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -85,6 +85,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
"translation": [-3, -0.75, 1.25]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 2.5, 6],
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.7, 0.7, 0.7]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -122,7 +122,7 @@
|
|||
"translation": [-3, -0.75, 1.25]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 0, 6],
|
||||
"translation": [0, 0.5, 6],
|
||||
"scale": [0.7, 0.7, 0.7]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -107,6 +107,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -130,6 +130,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -105,6 +105,7 @@
|
|||
"scale": [0.45, 0.45, 0.45]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -114,6 +114,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -58,6 +58,7 @@
|
|||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 0, 2.5],
|
||||
"translation": [0, 1.75, 2.5],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 0, 7],
|
||||
"translation": [0, 0.3, 7],
|
||||
"scale": [0.7, 0.7, 0.7]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 0, 7],
|
||||
"scale": [0.7, 0.7, 0.7]
|
||||
"translation": [0, 1.5, 2.75],
|
||||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"gui": {
|
||||
"translation": [0, 0.5, 0]
|
||||
|
|
|
@ -187,7 +187,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 0, 2.75],
|
||||
"translation": [0, 1.5, 2.75],
|
||||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -188,6 +188,7 @@
|
|||
"scale": [0.35, 0.35, 0.35]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:gas_concrete",
|
||||
"missing": ["immersiveengineering:stone_decoration"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"SC",
|
||||
"CS"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "#blockConcreteMc",
|
||||
"data": 0
|
||||
},
|
||||
"S": {
|
||||
"item": "#sand",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:gas_concrete",
|
||||
"count": 4
|
||||
}
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:gas_concrete",
|
||||
"required": ["immersiveengineering:stone_decoration"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"SC",
|
||||
"CS"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "#blockConcreteIe",
|
||||
"data": 0
|
||||
},
|
||||
"S": {
|
||||
"item": "#sand",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:gas_concrete",
|
||||
"count": 4
|
||||
}
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:gas_concrete_slab",
|
||||
"required": ["engineersdecor:gas_concrete"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" ",
|
||||
"BBB"
|
||||
],
|
||||
"key": {
|
||||
"B": { "item": "engineersdecor:gas_concrete" }
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:gas_concrete_slab",
|
||||
"count": 6
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:gas_concrete_stairs",
|
||||
"required": ["engineersdecor:gas_concrete"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"C ",
|
||||
"CC ",
|
||||
"CCC"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "engineersdecor:gas_concrete",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:gas_concrete_stairs",
|
||||
"count": 6
|
||||
}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:gas_concrete",
|
||||
"required": ["engineersdecor:gas_concrete_stairs"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"SS",
|
||||
"SS"
|
||||
],
|
||||
"key": {
|
||||
"S": {
|
||||
"item": "engineersdecor:gas_concrete_stairs",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:gas_concrete",
|
||||
"count": 4
|
||||
}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:gas_concrete_wall",
|
||||
"required": ["engineersdecor:gas_concrete"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"CCC",
|
||||
"CCC"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "engineersdecor:gas_concrete",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:gas_concrete_wall",
|
||||
"count": 6
|
||||
}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:gas_concrete",
|
||||
"required": ["engineersdecor:gas_concrete_wall"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"WW",
|
||||
"WW"
|
||||
],
|
||||
"key": {
|
||||
"W": {
|
||||
"item": "engineersdecor:gas_concrete_wall",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:gas_concrete",
|
||||
"count": 4
|
||||
}
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:halfslab_gas_concrete",
|
||||
"required": ["engineersdecor:gas_concrete_slab"]
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"SS",
|
||||
"SS"
|
||||
],
|
||||
"key": {
|
||||
"S": { "item": "engineersdecor:gas_concrete_slab" }
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:halfslab_gas_concrete",
|
||||
"count": 16
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 654 B |
After Width: | Height: | Size: 660 B |
After Width: | Height: | Size: 672 B |
After Width: | Height: | Size: 628 B |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 644 B |
After Width: | Height: | Size: 648 B |
After Width: | Height: | Size: 660 B |
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
||||
"1.14.4": {
|
||||
"1.0.16-b2": "[A] Added Gas Concrete (including wall, stairs, slab, and slab slice).\n[F] Fixed Small Block Breaker active model.\n[F] Fixed item-on-ground display glitch (issue #61, thx Federsavo for the hint).\n[F] Added two missing recipes.",
|
||||
"1.0.16-b1": "[U] Updated to Forge 1.14.4-28.1.79/20190719-1.14.3.\n[A] Added Fluid Collection Funnel.",
|
||||
"1.0.15-b3": "[A] Added Small Block Breaker.\n[M] Mineral Smelter fluid handler/transfer added.",
|
||||
"1.0.15-b2": "[!] Forge version requirement set to 1.14.4-28.1.68 or higher.\n[A] Added Factory Block Placer and Planter.\n[A] Added Small Tree Cutter.",
|
||||
|
@ -31,6 +32,6 @@
|
|||
},
|
||||
"promos": {
|
||||
"1.14.4-recommended": "",
|
||||
"1.14.4-latest": "1.0.16-b1"
|
||||
"1.14.4-latest": "1.0.16-b2"
|
||||
}
|
||||
}
|
|
@ -11,7 +11,10 @@ Mod sources for Minecraft version 1.14.4.
|
|||
|
||||
## Version history
|
||||
|
||||
~ v1.0.16-b2 [F] Fixed Small Block Breaker active model updated.
|
||||
- v1.0.16-b2 [A] Added Gas Concrete (including wall, stairs, slab, and slab slice).
|
||||
[F] Fixed Small Block Breaker active model.
|
||||
[F] Fixed item-on-ground display glitch (issue #61, thx Federsavo for the hint).
|
||||
[F] Added two missing recipes.
|
||||
|
||||
- v1.0.16-b1 [U] Updated to Forge 1.14.4-28.1.79/20190719-1.14.3.
|
||||
[A] Added Fluid Collection Funnel.
|
||||
|
|
|
@ -139,6 +139,34 @@ public class ModContent
|
|||
|
||||
// -------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
public static final BlockDecor GAS_CONCRETE_BLOCK = (BlockDecor)(new BlockDecor(
|
||||
BlockDecor.CFG_DEFAULT,
|
||||
Block.Properties.create(Material.ROCK, MaterialColor.STONE).hardnessAndResistance(1.5f, 10f).sound(SoundType.STONE)
|
||||
)).setRegistryName(new ResourceLocation(ModEngineersDecor.MODID, "gas_concrete"));
|
||||
|
||||
public static final BlockDecorSlab GAS_CONCRETE_SLAB = (BlockDecorSlab)(new BlockDecorSlab(
|
||||
BlockDecor.CFG_DEFAULT,
|
||||
Block.Properties.create(Material.ROCK, MaterialColor.STONE).hardnessAndResistance(1.5f, 10f).sound(SoundType.STONE)
|
||||
)).setRegistryName(new ResourceLocation(ModEngineersDecor.MODID, "gas_concrete_slab"));
|
||||
|
||||
public static final BlockDecorStairs GAS_CONCRETE_STAIRS = (BlockDecorStairs)(new BlockDecorStairs(
|
||||
BlockDecor.CFG_DEFAULT,
|
||||
REBAR_CONCRETE_BLOCK.getDefaultState(),
|
||||
Block.Properties.create(Material.ROCK, MaterialColor.STONE).hardnessAndResistance(1.5f, 10f).sound(SoundType.STONE)
|
||||
)).setRegistryName(new ResourceLocation(ModEngineersDecor.MODID, "gas_concrete_stairs"));
|
||||
|
||||
public static final BlockDecorWall GAS_CONCRETE_WALL = (BlockDecorWall)(new BlockDecorWall(
|
||||
BlockDecor.CFG_DEFAULT,
|
||||
Block.Properties.create(Material.ROCK, MaterialColor.STONE).hardnessAndResistance(1.5f, 10f).sound(SoundType.STONE)
|
||||
)).setRegistryName(new ResourceLocation(ModEngineersDecor.MODID, "gas_concrete_wall"));
|
||||
|
||||
public static final BlockDecorHalfSlab HALFSLAB_GASCONCRETE = (BlockDecorHalfSlab)(new BlockDecorHalfSlab(
|
||||
BlockDecor.CFG_CUTOUT,
|
||||
Block.Properties.create(Material.ROCK, MaterialColor.STONE).hardnessAndResistance(1.5f, 10f).sound(SoundType.STONE)
|
||||
)).setRegistryName(new ResourceLocation(ModEngineersDecor.MODID, "halfslab_gas_concrete"));
|
||||
|
||||
// -------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
public static final BlockDecor REBAR_CONCRETE_TILE = (BlockDecor)(new BlockDecor(
|
||||
BlockDecor.CFG_DEFAULT,
|
||||
Block.Properties.create(Material.ROCK, MaterialColor.STONE).hardnessAndResistance(5f, 2000f).sound(SoundType.STONE)
|
||||
|
@ -526,7 +554,12 @@ public class ModContent
|
|||
REBAR_CONCRETE_TILE,
|
||||
REBAR_CONCRETE_TILE_SLAB,
|
||||
REBAR_CONCRETE_TILE_STAIRS,
|
||||
GAS_CONCRETE_BLOCK,
|
||||
GAS_CONCRETE_SLAB,
|
||||
GAS_CONCRETE_STAIRS,
|
||||
GAS_CONCRETE_WALL,
|
||||
HALFSLAB_REBARCONCRETE,
|
||||
HALFSLAB_GASCONCRETE,
|
||||
HALFSLAB_CONCRETE,
|
||||
//HALFSLAB_TREATEDWOOD,
|
||||
//HALFSLAB_SHEETMETALIRON
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model0" },
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model1" },
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model2" },
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model3" },
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model4" },
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model5" },
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model6" },
|
||||
{ "model": "engineersdecor:block/concrete/gas_concrete_model7" }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s0v0_model"
|
||||
},
|
||||
"parts=0,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s0v1_model"
|
||||
},
|
||||
"parts=0,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s0v2_model"
|
||||
},
|
||||
"parts=0,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s0v3_model"
|
||||
},
|
||||
"parts=1,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s1v0_model"
|
||||
},
|
||||
"parts=1,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s1v1_model"
|
||||
},
|
||||
"parts=1,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s1v2_model"
|
||||
},
|
||||
"parts=1,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s1v3_model"
|
||||
},
|
||||
"parts=2,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s2v0_model"
|
||||
},
|
||||
"parts=2,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s2v1_model"
|
||||
},
|
||||
"parts=2,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s2v2_model"
|
||||
},
|
||||
"parts=2,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/gas_concrete_slab_s2v3_model"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/concrete/gas_concrete_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/gas_concrete_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" }, "apply": { "model": "engineersdecor:block/concrete/gas_concrete_wall_post" } },
|
||||
{ "when": { "north": "true" }, "apply": { "model": "engineersdecor:block/concrete/gas_concrete_wall_side", "uvlock": true } },
|
||||
{ "when": { "east": "true" }, "apply": { "model": "engineersdecor:block/concrete/gas_concrete_wall_side", "y": 90, "uvlock": true } },
|
||||
{ "when": { "south": "true" }, "apply": { "model": "engineersdecor:block/concrete/gas_concrete_wall_side", "y": 180, "uvlock": true } },
|
||||
{ "when": { "west": "true" }, "apply": { "model": "engineersdecor:block/concrete/gas_concrete_wall_side", "y": 270, "uvlock": true } }
|
||||
]
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_gas_concrete_se_model"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -57,6 +57,8 @@
|
|||
"block.engineersdecor.slag_brick_block.help": "§6A gray-brown brick block with position dependent texture variations.",
|
||||
"block.engineersdecor.rebar_concrete": "Rebar Concrete Block",
|
||||
"block.engineersdecor.rebar_concrete.help": "§6Steel reinforced concrete block.§r Expensive but Creeper-proof like obsidian.",
|
||||
"block.engineersdecor.gas_concrete": "Gas Concrete Block",
|
||||
"block.engineersdecor.gas_concrete.help": "§6Low hardness, high production yield concrete.§r Easy to break decorative concrete block.",
|
||||
"block.engineersdecor.panzerglass_block": "Panzer Glass Block",
|
||||
"block.engineersdecor.panzerglass_block.help": "§6Reinforced glass block.§r Expensive, explosion-proof. Dark gray tint, faint structural lines visible, multi texture for seemless look.",
|
||||
"block.engineersdecor.rebar_concrete_tile": "Rebar Concrete Tile",
|
||||
|
@ -71,6 +73,8 @@
|
|||
"block.engineersdecor.rebar_concrete_slab.help": "§6Steel reinforced concrete slab.§r Expensive but Creeper-proof like obsidian.",
|
||||
"block.engineersdecor.rebar_concrete_tile_slab": "Rebar Concrete Tile Slab",
|
||||
"block.engineersdecor.rebar_concrete_tile_slab.help": "§6Steel reinforced concrete tile slab.§r Expensive but Creeper-proof like obsidian.",
|
||||
"block.engineersdecor.gas_concrete_slab": "Gas Concrete Slab",
|
||||
"block.engineersdecor.gas_concrete_slab.help": "§6Low hardness concrete slab.§r Easy to break decorative concrete.",
|
||||
"block.engineersdecor.panzerglass_slab": "Panzer Glass Slab",
|
||||
"block.engineersdecor.panzerglass_slab.help": "§6Reinforced glass slab.§r Expensive, explosion-proof. Dark gray tint, faint structural lines visible.",
|
||||
"block.engineersdecor.treated_wood_floor": "Treated Wood Floor",
|
||||
|
@ -79,6 +83,8 @@
|
|||
"block.engineersdecor.rebar_concrete_wall.help": "§6Steel reinforced concrete wall.§r Expensive but Creeper-proof like obsidian.",
|
||||
"block.engineersdecor.concrete_wall": "Concrete Wall",
|
||||
"block.engineersdecor.concrete_wall.help": "§6Wall made of solid concrete.",
|
||||
"block.engineersdecor.gas_concrete_wall": "Gas Concrete Wall",
|
||||
"block.engineersdecor.gas_concrete_wall.help": "§6Low hardness concrete wall.§r Easy to break decorative concrete.",
|
||||
"block.engineersdecor.clinker_brick_wall": "Clinker Brick Wall",
|
||||
"block.engineersdecor.clinker_brick_wall.help": "§6Simplistic Clinker Brick Wall.",
|
||||
"block.engineersdecor.slag_brick_wall": "Slag Brick Wall",
|
||||
|
@ -99,6 +105,8 @@
|
|||
"block.engineersdecor.rebar_concrete_stairs.help": "§6Steel reinforced concrete stairs.§r Expensive but Creeper-proof like obsidian.",
|
||||
"block.engineersdecor.rebar_concrete_tile_stairs": "Rebar Concrete Tile Stairs",
|
||||
"block.engineersdecor.rebar_concrete_tile_stairs.help": "§6Steel reinforced concrete tile stairs.§r Expensive but Creeper-proof like obsidian.",
|
||||
"block.engineersdecor.gas_concrete_stairs": "Gas Concrete Stairs",
|
||||
"block.engineersdecor.gas_concrete_stairs.help": "§6Low hardness concrete stairs.§r Easy to break decorative concrete.",
|
||||
"block.engineersdecor.treated_wood_pole": "Straight Treated Wood Pole",
|
||||
"block.engineersdecor.treated_wood_pole.help": "§6Straight pole fragment with a diameter of a wire relay.§r\n Can be useful as alternative to the wire posts if special lengths are needed, or as support for structures.",
|
||||
"block.engineersdecor.treated_wood_pole_head": "Straight Treated Wood Pole Head/Foot",
|
||||
|
@ -189,6 +197,8 @@
|
|||
"block.engineersdecor.halfslab_rebar_concrete.help": "§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.",
|
||||
"block.engineersdecor.halfslab_concrete": "Concrete Slice",
|
||||
"block.engineersdecor.halfslab_concrete.help": "§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.",
|
||||
"block.engineersdecor.halfslab_gas_concrete": "Gas Concrete Slice",
|
||||
"block.engineersdecor.halfslab_gas_concrete.help": "§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.",
|
||||
"block.engineersdecor.halfslab_treated_wood": "Treated Wood Slice",
|
||||
"block.engineersdecor.halfslab_treated_wood.help": "§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.",
|
||||
"block.engineersdecor.halfslab_sheetmetal_iron": "Iron Sheet Metal Slice",
|
||||
|
|
|
@ -57,6 +57,7 @@
|
|||
"block.engineersdecor.slag_brick_block.help": "§6Серо-коричневый кирпичный блок с зависимыми от положения вариациями текстуры.",
|
||||
"block.engineersdecor.rebar_concrete": "Железобетон",
|
||||
"block.engineersdecor.rebar_concrete.help": "§6Стальной железобетонный блок.§r Дорогой, но взрывоустойчивый, как обсидиан.",
|
||||
"block.engineersdecor.gas_concrete": "Gas Concrete Block",
|
||||
"block.engineersdecor.panzerglass_block": "Бронированное стекло",
|
||||
"block.engineersdecor.panzerglass_block.help": "§6Усиленный стеклоблок.§r Дорогой, взрывоустойчивый. Имеет тёмно-серый оттенок, слегка видны структурные линии, мультитекстура для бесшовного отображения.",
|
||||
"block.engineersdecor.rebar_concrete_tile": "Железобетонная плита",
|
||||
|
@ -71,6 +72,7 @@
|
|||
"block.engineersdecor.rebar_concrete_slab.help": "§6Бетонная плита, усиленная сталью.§r Дорогая, но взрывоустойчивая, как обсидиан.",
|
||||
"block.engineersdecor.rebar_concrete_tile_slab": "Железобетонная плитка",
|
||||
"block.engineersdecor.rebar_concrete_tile_slab.help": "§6Бетонная плитка, усиленная сталью.§r Дорогая, но взрывоустойчивая, как обсидиан.",
|
||||
"block.engineersdecor.gas_concrete_slab": "Gas Concrete Slab",
|
||||
"block.engineersdecor.panzerglass_slab": "Плита из бронированного стекла",
|
||||
"block.engineersdecor.panzerglass_slab.help": "§6Усиленная стеклянная плита.§r Дорогая, взрывоустойчивая. Имеет тёмно-серый оттенок, слегка видны структурные линии.",
|
||||
"block.engineersdecor.treated_wood_floor": "Treated Wood Floor",
|
||||
|
@ -78,6 +80,7 @@
|
|||
"block.engineersdecor.rebar_concrete_wall.help": "§6Стальная железобетонная стена.§r Дорогая, но взрывоустойчивая, как обсидиан.",
|
||||
"block.engineersdecor.concrete_wall": "Бетонная стена",
|
||||
"block.engineersdecor.concrete_wall.help": "§6Стена из твёрдого бетона.",
|
||||
"block.engineersdecor.gas_concrete_wall": "Gas Concrete Wall",
|
||||
"block.engineersdecor.clinker_brick_wall": "Клинкерная кирпичная стена",
|
||||
"block.engineersdecor.clinker_brick_wall.help": "§6Обыкновенная клинкерная кирпичная стена.",
|
||||
"block.engineersdecor.slag_brick_wall": "Кирпичная стена из шлакоблока",
|
||||
|
@ -98,6 +101,7 @@
|
|||
"block.engineersdecor.rebar_concrete_stairs.help": "§6Железобетонные ступеньки.§r Дорогие, но взрывоустойчивые, как обсидиан.",
|
||||
"block.engineersdecor.rebar_concrete_tile_stairs": "Ступеньки из железобетонной плитки",
|
||||
"block.engineersdecor.rebar_concrete_tile_stairs.help": "§6Ступеньки из железобетонной плитки.§r Дорогие, но взрывоустойчивые, как обсидиан.",
|
||||
"block.engineersdecor.gas_concrete_stairs": "Gas Concrete Stairs",
|
||||
"block.engineersdecor.treated_wood_pole": "Прямой обработанный деревянный столб",
|
||||
"block.engineersdecor.treated_wood_pole.help": "§6Надёжный столб с диаметром, схожим с реле.§r\n Может быть полезен в качестве альтернативы столбам для проводов, если требуется особая специальная длина, или как опора для конструкций.",
|
||||
"block.engineersdecor.treated_wood_pole_head": "Прямой обработанный деревянный столб (верхняя часть/основание)",
|
||||
|
@ -177,6 +181,7 @@
|
|||
"block.engineersdecor.halfslab_rebar_concrete.help": "§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.",
|
||||
"block.engineersdecor.halfslab_concrete": "Бетонный срез",
|
||||
"block.engineersdecor.halfslab_concrete.help": "§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.",
|
||||
"block.engineersdecor.halfslab_gas_concrete": "Gas Concrete Slice",
|
||||
"block.engineersdecor.halfslab_treated_wood": "Часть обработанного дерева",
|
||||
"block.engineersdecor.halfslab_treated_wood.help": "§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.",
|
||||
"block.engineersdecor.halfslab_sheetmetal_iron": "Часть железного листового металла",
|
||||
|
|
|
@ -57,6 +57,7 @@
|
|||
"block.engineersdecor.slag_brick_block.help": "§6一种放在不同位置贴图有不同变化的灰棕色砖块。",
|
||||
"block.engineersdecor.rebar_concrete": "钢筋混凝土",
|
||||
"block.engineersdecor.rebar_concrete.help": "§6钢强化的混凝土。§r昂贵但像黑曜石一样防爬行者爆炸。",
|
||||
"block.engineersdecor.gas_concrete": "Gas Concrete Block",
|
||||
"block.engineersdecor.panzerglass_block": "装甲玻璃块",
|
||||
"block.engineersdecor.panzerglass_block.help": "§6强化的玻璃方块。§r昂贵,防爆。深灰色调,有隐约可见的结构线和多种纹理,外观无光泽。",
|
||||
"block.engineersdecor.rebar_concrete_tile": "钢筋混凝土砖",
|
||||
|
@ -71,6 +72,7 @@
|
|||
"block.engineersdecor.rebar_concrete_slab.help": "§6钢强化的混凝土台阶。§r昂贵但像黑曜石一样防爬行者爆炸。",
|
||||
"block.engineersdecor.rebar_concrete_tile_slab": "钢筋混凝土砖台阶",
|
||||
"block.engineersdecor.rebar_concrete_tile_slab.help": "§6钢强化的混凝土砖台阶。§r昂贵但像黑曜石一样防爬行者爆炸。",
|
||||
"block.engineersdecor.gas_concrete_slab": "Gas Concrete Slab",
|
||||
"block.engineersdecor.panzerglass_slab": "装甲玻璃台阶",
|
||||
"block.engineersdecor.panzerglass_slab.help": "§6强化的玻璃台阶。§r昂贵,防爆。深灰色调,有隐约可见的结构线和多种纹理。",
|
||||
"block.engineersdecor.treated_wood_floor": "防腐木地板",
|
||||
|
@ -79,6 +81,7 @@
|
|||
"block.engineersdecor.rebar_concrete_wall.help": "§6钢强化的混凝土墙。§r 昂贵但像黑曜石一样防爬行者爆炸。",
|
||||
"block.engineersdecor.concrete_wall": "混凝土墙",
|
||||
"block.engineersdecor.concrete_wall.help": "§6用坚固混凝土制造的墙。",
|
||||
"block.engineersdecor.gas_concrete_wall": "Gas Concrete Wall",
|
||||
"block.engineersdecor.clinker_brick_wall": "过烧砖墙",
|
||||
"block.engineersdecor.clinker_brick_wall.help": "§6简单的过烧砖墙。",
|
||||
"block.engineersdecor.slag_brick_wall": "炉渣砖墙",
|
||||
|
@ -99,6 +102,7 @@
|
|||
"block.engineersdecor.rebar_concrete_stairs.help": "§6钢强化的混凝土楼梯。§r昂贵但像黑曜石一样防爬行者爆炸。",
|
||||
"block.engineersdecor.rebar_concrete_tile_stairs": "钢筋混凝土砖楼梯",
|
||||
"block.engineersdecor.rebar_concrete_tile_stairs.help": "§6钢强化的混凝土砖楼梯。§r昂贵但像黑曜石一样防爬行者爆炸。",
|
||||
"block.engineersdecor.gas_concrete_stairs": "Gas Concrete Stairs",
|
||||
"block.engineersdecor.treated_wood_pole": "直防腐木杆",
|
||||
"block.engineersdecor.treated_wood_pole.help": "§6直杆的一段,有着继电器的直径。§r\n 在需要特殊长度电线杆的时候很有用, 也可以作为结构的柱子。",
|
||||
"block.engineersdecor.treated_wood_pole_head": "直防腐木杆头/尾",
|
||||
|
@ -183,6 +187,7 @@
|
|||
"block.engineersdecor.halfslab_rebar_concrete.help": "§6可垂直堆叠的切片。§r手持切片右/左击切片堆叠的顶端或底部来添加/移除切片。",
|
||||
"block.engineersdecor.halfslab_concrete": "混凝土切片",
|
||||
"block.engineersdecor.halfslab_concrete.help": "§6可垂直堆叠的切片。§r手持切片右/左击切片堆叠的顶端或底部来添加/移除切片。",
|
||||
"block.engineersdecor.halfslab_gas_concrete": "Gas Concrete Slice",
|
||||
"block.engineersdecor.halfslab_treated_wood": "防腐木切片",
|
||||
"block.engineersdecor.halfslab_treated_wood.help": "§6可垂直堆叠的切片。§r手持切片右/左击切片堆叠的顶端或底部来添加/移除切片。",
|
||||
"block.engineersdecor.halfslab_sheetmetal_iron": "铁板金属块切片",
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
{ "parent": "block/cube_all", "textures": { "all": "engineersdecor:block/concrete/gas_concrete_texture0" } }
|
|
@ -0,0 +1 @@
|
|||
{ "parent": "block/cube_all", "textures": { "all": "engineersdecor:block/concrete/gas_concrete_texture1" } }
|
|
@ -0,0 +1 @@
|
|||
{ "parent": "block/cube_all", "textures": { "all": "engineersdecor:block/concrete/gas_concrete_texture2" } }
|
|
@ -0,0 +1 @@
|
|||
{ "parent": "block/cube_all", "textures": { "all": "engineersdecor:block/concrete/gas_concrete_texture3" } }
|
|
@ -0,0 +1 @@
|
|||
{ "parent": "block/cube_all", "textures": { "all": "engineersdecor:block/concrete/gas_concrete_texture4" } }
|
|
@ -0,0 +1 @@
|
|||
{ "parent": "block/cube_all", "textures": { "all": "engineersdecor:block/concrete/gas_concrete_texture5" } }
|