1.12: Added Exit sign (issue #34). Added treated wood side table recipe.
This commit is contained in:
parent
2686ce784e
commit
8ecf02d3e8
14 changed files with 249 additions and 92 deletions
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
||||||
"1.12.2": {
|
"1.12.2": {
|
||||||
|
"1.0.10-b1": "[A] Treated wood side table added.\n[F] Fixed recipe collision of Metal Rung Ladder (issue #37, thx ProsperCraft for reporting).\n[A] Added Exit Sign (texture design by J. Carver).",
|
||||||
"1.0.9": "[R] Release based on v1.0.9-b3. Release-to-release changes: * Slabs for clinker, concrete, slag bricks. * Slab slices for sheet metals, treated wood, and concretes. * Language updates. * Block hardness adaptions. * 1st/3rd person item model fixes. * Furnace initialisation issue fixed.",
|
"1.0.9": "[R] Release based on v1.0.9-b3. Release-to-release changes: * Slabs for clinker, concrete, slag bricks. * Slab slices for sheet metals, treated wood, and concretes. * Language updates. * Block hardness adaptions. * 1st/3rd person item model fixes. * Furnace initialisation issue fixed.",
|
||||||
"1.0.9-b3": "[A] Added missing recipes for slabs.\n[A] Added slab slices for IE sheet metals, treated wood, and concretes (stackable \"quater-slabs\").\n[M] Updated 1st/3rd person item model rotations/translations.\n[M] Hardness of valves and furni slightly increased.",
|
"1.0.9-b3": "[A] Added missing recipes for slabs.\n[A] Added slab slices for IE sheet metals, treated wood, and concretes (stackable \"quater-slabs\").\n[M] Updated 1st/3rd person item model rotations/translations.\n[M] Hardness of valves and furni slightly increased.",
|
||||||
"1.0.9-b2": "[A] Added slabs for Clinker Brick, Slag Brick, Rebar Concrete, and Stained Clinker. Texture variations like the base blocks. Allow fast pick-up (see tooltip help or config).\n[F] Fixed lab/electrical furnace initialisation issue (first item inserted was smelted directly).",
|
"1.0.9-b2": "[A] Added slabs for Clinker Brick, Slag Brick, Rebar Concrete, and Stained Clinker. Texture variations like the base blocks. Allow fast pick-up (see tooltip help or config).\n[F] Fixed lab/electrical furnace initialisation issue (first item inserted was smelted directly).",
|
||||||
|
@ -48,6 +49,6 @@
|
||||||
},
|
},
|
||||||
"promos": {
|
"promos": {
|
||||||
"1.12.2-recommended": "1.0.9",
|
"1.12.2-recommended": "1.0.9",
|
||||||
"1.12.2-latest": "1.0.9"
|
"1.12.2-latest": "1.0.10-b1"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -10,10 +10,10 @@ Mod sources for Minecraft version 1.12.2.
|
||||||
----
|
----
|
||||||
## Version history
|
## Version history
|
||||||
|
|
||||||
~ v1.0.10-b1 [I] Features WIP
|
- v1.0.10-b1 [A] Treated wood side table added.
|
||||||
[A] Treated wood side table added.
|
|
||||||
[F] Fixed recipe collision of Metal Rung Ladder (issue #37,
|
[F] Fixed recipe collision of Metal Rung Ladder (issue #37,
|
||||||
thx ProsperCraft for reporting).
|
thx ProsperCraft for reporting).
|
||||||
|
[A] Added Exit Sign (texture design by J. Carver).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
- v1.0.9 [R] Release based on v1.0.9-b3. Release-to-release changes:
|
- v1.0.9 [R] Release based on v1.0.9-b3. Release-to-release changes:
|
||||||
|
|
|
@ -73,6 +73,86 @@ public class ModBlocks
|
||||||
public static final BlockDecorGlassBlock PANZERGLASS_BLOCK = new BlockDecorGlassBlock("panzerglass_block", 0, Material.GLASS, 1f, 2000f, SoundType.GLASS);
|
public static final BlockDecorGlassBlock PANZERGLASS_BLOCK = new BlockDecorGlassBlock("panzerglass_block", 0, Material.GLASS, 1f, 2000f, SoundType.GLASS);
|
||||||
public static final BlockDecorSlab PANZERGLASS_SLAB = new BlockDecorSlab("panzerglass_slab", BlockDecor.CFG_TRANSLUCENT, Material.GLASS, 1f, 2000f, SoundType.GLASS);
|
public static final BlockDecorSlab PANZERGLASS_SLAB = new BlockDecorSlab("panzerglass_slab", BlockDecor.CFG_TRANSLUCENT, Material.GLASS, 1f, 2000f, SoundType.GLASS);
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
public static final BlockDecorCraftingTable TREATED_WOOD_CRAFTING_TABLE = new BlockDecorCraftingTable(
|
||||||
|
"treated_wood_crafting_table",
|
||||||
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT,
|
||||||
|
Material.WOOD, 1.0f, 15f, SoundType.WOOD,
|
||||||
|
ModAuxiliaries.getPixeledAABB(1,0,1, 15,15.9,15)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorFurnace SMALL_LAB_FURNACE = new BlockDecorFurnace(
|
||||||
|
"small_lab_furnace",
|
||||||
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|
|
||||||
|
BlockDecor.CFG_ELECTRICAL,
|
||||||
|
Material.IRON, 0.5f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(1,0,1, 15,15,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorFurnaceElectrical SMALL_ELECTRICAL_FURNACE = new BlockDecorFurnaceElectrical(
|
||||||
|
"small_electrical_furnace",
|
||||||
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_ELECTRICAL,
|
||||||
|
Material.IRON, 0.5f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorDropper FACTORY_DROPPER = new BlockDecorDropper(
|
||||||
|
"factory_dropper",
|
||||||
|
BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_REDSTONE_CONTROLLED,
|
||||||
|
Material.IRON, 1f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,15)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorWasteIncinerator SMALL_WASTE_INCINERATOR = new BlockDecorWasteIncinerator(
|
||||||
|
"small_waste_incinerator",
|
||||||
|
BlockDecor.CFG_DEFAULT|BlockDecor.CFG_ELECTRICAL,
|
||||||
|
Material.IRON, 1f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorMineralSmelter SMALL_MINERAL_SMELTER = new BlockDecorMineralSmelter(
|
||||||
|
"small_mineral_smelter",
|
||||||
|
BlockDecor.CFG_LOOK_PLACEMENT,
|
||||||
|
Material.IRON, 1f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(1.1,0,1.1, 14.9,16,14.9)
|
||||||
|
);
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
public static final BlockDecorPipeValve STRAIGHT_CHECK_VALVE = new BlockDecorPipeValve(
|
||||||
|
"straight_pipe_valve",
|
||||||
|
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
||||||
|
BlockDecor.CFG_CUTOUT,
|
||||||
|
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(4,4,0, 12,12,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorPipeValve STRAIGHT_REDSTONE_VALVE = new BlockDecorPipeValve(
|
||||||
|
"straight_pipe_valve_redstone",
|
||||||
|
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
||||||
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_REDSTONE_CONTROLLED,
|
||||||
|
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(4,4,0, 12,12,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorPipeValve STRAIGHT_REDSTONE_ANALOG_VALVE = new BlockDecorPipeValve(
|
||||||
|
"straight_pipe_valve_redstone_analog",
|
||||||
|
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
||||||
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_REDSTONE_CONTROLLED|BlockDecor.CFG_ANALOG,
|
||||||
|
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(4,4,0, 12,12,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorPassiveFluidAccumulator PASSIVE_FLUID_ACCUMULATOR = new BlockDecorPassiveFluidAccumulator(
|
||||||
|
"passive_fluid_accumulator",
|
||||||
|
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
||||||
|
BlockDecor.CFG_CUTOUT,
|
||||||
|
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
public static final BlockDecorStraightPole TREATED_WOOD_POLE = new BlockDecorStraightPole(
|
public static final BlockDecorStraightPole TREATED_WOOD_POLE = new BlockDecorStraightPole(
|
||||||
"treated_wood_pole",
|
"treated_wood_pole",
|
||||||
|
@ -123,6 +203,15 @@ public class ModBlocks
|
||||||
ModAuxiliaries.getPixeledAABB(5,5,0, 11,11,16)
|
ModAuxiliaries.getPixeledAABB(5,5,0, 11,11,16)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorHorizontalSupport STEEL_DOUBLE_T_SUPPORT = new BlockDecorHorizontalSupport(
|
||||||
|
"steel_double_t_support",
|
||||||
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT,
|
||||||
|
Material.IRON, 2.0f, 15f, SoundType.METAL,
|
||||||
|
ModAuxiliaries.getPixeledAABB(5,11,0, 11,16,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
public static final BlockDecor TREATED_WOOD_TABLE = new BlockDecor(
|
public static final BlockDecor TREATED_WOOD_TABLE = new BlockDecor(
|
||||||
"treated_wood_table",
|
"treated_wood_table",
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT,
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT,
|
||||||
|
@ -144,11 +233,11 @@ public class ModBlocks
|
||||||
ModAuxiliaries.getPixeledAABB(2,0,2, 14,15.9,14)
|
ModAuxiliaries.getPixeledAABB(2,0,2, 14,15.9,14)
|
||||||
);
|
);
|
||||||
|
|
||||||
public static final BlockDecorCraftingTable TREATED_WOOD_CRAFTING_TABLE = new BlockDecorCraftingTable(
|
public static final BlockDecorDirected TREATED_WOOD_WINDOWSILL = new BlockDecorDirected(
|
||||||
"treated_wood_crafting_table",
|
"treated_wood_windowsill",
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT,
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_FACING_PLACEMENT,
|
||||||
Material.WOOD, 1.0f, 15f, SoundType.WOOD,
|
Material.WOOD, 1.0f, 10f, SoundType.WOOD,
|
||||||
ModAuxiliaries.getPixeledAABB(1,0,1, 15,15.9,15)
|
ModAuxiliaries.getPixeledAABB(0.5,15,10.5, 15.5,16,16)
|
||||||
);
|
);
|
||||||
|
|
||||||
public static final BlockDecorDirected INSET_LIGHT_IRON = new BlockDecorDirected(
|
public static final BlockDecorDirected INSET_LIGHT_IRON = new BlockDecorDirected(
|
||||||
|
@ -158,12 +247,7 @@ public class ModBlocks
|
||||||
ModAuxiliaries.getPixeledAABB(5.2,5.2,15.7, 10.8,10.8,16.0)
|
ModAuxiliaries.getPixeledAABB(5.2,5.2,15.7, 10.8,10.8,16.0)
|
||||||
);
|
);
|
||||||
|
|
||||||
public static final BlockDecorDirected TREATED_WOOD_WINDOWSILL = new BlockDecorDirected(
|
//--------------------------------------------------------------------------------------------------------------------
|
||||||
"treated_wood_windowsill",
|
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_FACING_PLACEMENT,
|
|
||||||
Material.WOOD, 1.0f, 10f, SoundType.WOOD,
|
|
||||||
ModAuxiliaries.getPixeledAABB(0.5,15,10.5, 15.5,16,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorWindow TREATED_WOOD_WINDOW = new BlockDecorWindow(
|
public static final BlockDecorWindow TREATED_WOOD_WINDOW = new BlockDecorWindow(
|
||||||
"treated_wood_window",
|
"treated_wood_window",
|
||||||
|
@ -179,20 +263,7 @@ public class ModBlocks
|
||||||
ModAuxiliaries.getPixeledAABB(0,0,7.5, 16,16,8.5)
|
ModAuxiliaries.getPixeledAABB(0,0,7.5, 16,16,8.5)
|
||||||
);
|
);
|
||||||
|
|
||||||
public static final BlockDecorFurnace SMALL_LAB_FURNACE = new BlockDecorFurnace(
|
//--------------------------------------------------------------------------------------------------------------------
|
||||||
"small_lab_furnace",
|
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|
|
|
||||||
BlockDecor.CFG_ELECTRICAL,
|
|
||||||
Material.IRON, 0.5f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(1,0,1, 15,15,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorFurnaceElectrical SMALL_ELECTRICAL_FURNACE = new BlockDecorFurnaceElectrical(
|
|
||||||
"small_electrical_furnace",
|
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_ELECTRICAL,
|
|
||||||
Material.IRON, 0.5f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorDirected SIGN_MODLOGO = new BlockDecorDirected(
|
public static final BlockDecorDirected SIGN_MODLOGO = new BlockDecorDirected(
|
||||||
"sign_decor",
|
"sign_decor",
|
||||||
|
@ -201,66 +272,6 @@ public class ModBlocks
|
||||||
ModAuxiliaries.getPixeledAABB(0,0,15.6, 16,16,16)
|
ModAuxiliaries.getPixeledAABB(0,0,15.6, 16,16,16)
|
||||||
);
|
);
|
||||||
|
|
||||||
public static final BlockDecorHorizontalSupport STEEL_DOUBLE_T_SUPPORT = new BlockDecorHorizontalSupport(
|
|
||||||
"steel_double_t_support",
|
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_HORIZIONTAL|BlockDecor.CFG_LOOK_PLACEMENT,
|
|
||||||
Material.IRON, 2.0f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(5,11,0, 11,16,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorPipeValve STRAIGHT_CHECK_VALVE = new BlockDecorPipeValve(
|
|
||||||
"straight_pipe_valve",
|
|
||||||
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
|
||||||
BlockDecor.CFG_CUTOUT,
|
|
||||||
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(4,4,0, 12,12,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorPipeValve STRAIGHT_REDSTONE_VALVE = new BlockDecorPipeValve(
|
|
||||||
"straight_pipe_valve_redstone",
|
|
||||||
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_REDSTONE_CONTROLLED,
|
|
||||||
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(4,4,0, 12,12,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorPipeValve STRAIGHT_REDSTONE_ANALOG_VALVE = new BlockDecorPipeValve(
|
|
||||||
"straight_pipe_valve_redstone_analog",
|
|
||||||
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_REDSTONE_CONTROLLED|BlockDecor.CFG_ANALOG,
|
|
||||||
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(4,4,0, 12,12,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorPassiveFluidAccumulator PASSIVE_FLUID_ACCUMULATOR = new BlockDecorPassiveFluidAccumulator(
|
|
||||||
"passive_fluid_accumulator",
|
|
||||||
BlockDecor.CFG_FACING_PLACEMENT|BlockDecor.CFG_OPPOSITE_PLACEMENT|BlockDecor.CFG_FLIP_PLACEMENT_SHIFTCLICK|
|
|
||||||
BlockDecor.CFG_CUTOUT,
|
|
||||||
Material.IRON, 0.7f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorWasteIncinerator SMALL_WASTE_INCINERATOR = new BlockDecorWasteIncinerator(
|
|
||||||
"small_waste_incinerator",
|
|
||||||
BlockDecor.CFG_DEFAULT|BlockDecor.CFG_ELECTRICAL,
|
|
||||||
Material.IRON, 1f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,16)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorDropper FACTORY_DROPPER = new BlockDecorDropper(
|
|
||||||
"factory_dropper",
|
|
||||||
BlockDecor.CFG_LOOK_PLACEMENT|BlockDecor.CFG_REDSTONE_CONTROLLED,
|
|
||||||
Material.IRON, 1f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(0,0,0, 16,16,15)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorMineralSmelter SMALL_MINERAL_SMELTER = new BlockDecorMineralSmelter(
|
|
||||||
"small_mineral_smelter",
|
|
||||||
BlockDecor.CFG_LOOK_PLACEMENT,
|
|
||||||
Material.IRON, 1f, 15f, SoundType.METAL,
|
|
||||||
ModAuxiliaries.getPixeledAABB(1.1,0,1.1, 14.9,16,14.9)
|
|
||||||
);
|
|
||||||
|
|
||||||
public static final BlockDecorDirected SIGN_HOTWIRE = new BlockDecorDirected(
|
public static final BlockDecorDirected SIGN_HOTWIRE = new BlockDecorDirected(
|
||||||
"sign_hotwire",
|
"sign_hotwire",
|
||||||
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_OPPOSITE_PLACEMENT|(1<<BlockDecor.CFG_LIGHT_VALUE_SHIFT),
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_OPPOSITE_PLACEMENT|(1<<BlockDecor.CFG_LIGHT_VALUE_SHIFT),
|
||||||
|
@ -296,6 +307,15 @@ public class ModBlocks
|
||||||
ModAuxiliaries.getPixeledAABB(2,2,15.6, 15,15,16)
|
ModAuxiliaries.getPixeledAABB(2,2,15.6, 15,15,16)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
public static final BlockDecorDirected SIGN_EXIT = new BlockDecorDirected(
|
||||||
|
"sign_exit",
|
||||||
|
BlockDecor.CFG_CUTOUT|BlockDecor.CFG_OPPOSITE_PLACEMENT,
|
||||||
|
Material.WOOD, 0.1f, 1f, SoundType.WOOD,
|
||||||
|
ModAuxiliaries.getPixeledAABB(3,7,15.6, 13,13,16)
|
||||||
|
);
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
public static final BlockDecorHalfSlab HALFSLAB_REBARCONCRETE = new BlockDecorHalfSlab(
|
public static final BlockDecorHalfSlab HALFSLAB_REBARCONCRETE = new BlockDecorHalfSlab(
|
||||||
"halfslab_rebar_concrete",
|
"halfslab_rebar_concrete",
|
||||||
BlockDecor.CFG_CUTOUT,
|
BlockDecor.CFG_CUTOUT,
|
||||||
|
@ -423,7 +443,7 @@ public class ModBlocks
|
||||||
THIN_STEEL_POLE_HEAD,
|
THIN_STEEL_POLE_HEAD,
|
||||||
THICK_STEEL_POLE_HEAD,
|
THICK_STEEL_POLE_HEAD,
|
||||||
STEEL_DOUBLE_T_SUPPORT,
|
STEEL_DOUBLE_T_SUPPORT,
|
||||||
SIGN_HOTWIRE, SIGN_DANGER, SIGN_DEFENSE, SIGN_FACTORY_AREA, SIGN_MODLOGO,
|
SIGN_HOTWIRE, SIGN_DANGER, SIGN_DEFENSE, SIGN_FACTORY_AREA, SIGN_EXIT, SIGN_MODLOGO,
|
||||||
TREATED_WOOD_SIDE_TABLE,
|
TREATED_WOOD_SIDE_TABLE,
|
||||||
HALFSLAB_REBARCONCRETE, HALFSLAB_CONCRETE, HALFSLAB_TREATEDWOOD,
|
HALFSLAB_REBARCONCRETE, HALFSLAB_CONCRETE, HALFSLAB_TREATEDWOOD,
|
||||||
HALFSLAB_SHEETMETALIRON, HALFSLAB_SHEETMETALSTEEL, HALFSLAB_SHEETMETALCOPPER,
|
HALFSLAB_SHEETMETALIRON, HALFSLAB_SHEETMETALSTEEL, HALFSLAB_SHEETMETALCOPPER,
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": { "model": "engineersdecor:sign/sign_exit_model" },
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":0}, "down": {"x":0} }
|
||||||
|
}
|
||||||
|
}
|
|
@ -164,6 +164,8 @@ tile.engineersdecor.sign_defense.name=Sign "Caution Defense System Ahead"
|
||||||
tile.engineersdecor.sign_defense.help=§6Warning sign for turrets, Tesla Coils, and traps.
|
tile.engineersdecor.sign_defense.help=§6Warning sign for turrets, Tesla Coils, and traps.
|
||||||
tile.engineersdecor.sign_factoryarea.name=Sign "Factory Area"
|
tile.engineersdecor.sign_factoryarea.name=Sign "Factory Area"
|
||||||
tile.engineersdecor.sign_factoryarea.help=§6Marker sign for buildings or areas where the really big machines are located.
|
tile.engineersdecor.sign_factoryarea.help=§6Marker sign for buildings or areas where the really big machines are located.
|
||||||
|
tile.engineersdecor.sign_exit.name=Exit Sign
|
||||||
|
tile.engineersdecor.sign_factoryarea.help=§6There's the door, please ...
|
||||||
#-----------------------------------------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------------------------------------
|
||||||
tile.engineersdecor.halfslab_rebar_concrete.name=Rebar Concrete Slice
|
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_rebar_concrete.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||||
|
|
|
@ -159,6 +159,8 @@ tile.engineersdecor.sign_defense.name=Знак «Осторожно, впере
|
||||||
tile.engineersdecor.sign_defense.help=§6Предупреждающий знак для турелей, катушек Тесла и ловушек.
|
tile.engineersdecor.sign_defense.help=§6Предупреждающий знак для турелей, катушек Тесла и ловушек.
|
||||||
tile.engineersdecor.sign_factoryarea.name=Знак «Заводская зона»
|
tile.engineersdecor.sign_factoryarea.name=Знак «Заводская зона»
|
||||||
tile.engineersdecor.sign_factoryarea.help=§6Знак для зданий или областей, где находятся действительно большие машины.
|
tile.engineersdecor.sign_factoryarea.help=§6Знак для зданий или областей, где находятся действительно большие машины.
|
||||||
|
tile.engineersdecor.sign_exit.name=Exit Sign
|
||||||
|
#tile.engineersdecor.sign_factoryarea.help=§6There's the door, please ...
|
||||||
#-----------------------------------------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------------------------------------
|
||||||
tile.engineersdecor.halfslab_rebar_concrete.name=Арматура для бетона
|
tile.engineersdecor.halfslab_rebar_concrete.name=Арматура для бетона
|
||||||
tile.engineersdecor.halfslab_rebar_concrete.help=§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.
|
tile.engineersdecor.halfslab_rebar_concrete.help=§6Вертикально наращиваемая часть.§rПравый/левый щелчок со стеком частей на верхней или нижней поверхности для добавления/удаления частей.
|
||||||
|
|
|
@ -162,6 +162,8 @@ tile.engineersdecor.sign_defense.name=Sign "Caution Defense System Ahead"
|
||||||
#tile.engineersdecor.sign_defense.help=§6Warning sign for turrets, Tesla Coils, and traps.
|
#tile.engineersdecor.sign_defense.help=§6Warning sign for turrets, Tesla Coils, and traps.
|
||||||
tile.engineersdecor.sign_factoryarea.name=Sign "Factory Area"
|
tile.engineersdecor.sign_factoryarea.name=Sign "Factory Area"
|
||||||
#tile.engineersdecor.sign_factoryarea.help=§6Marker sign for buildings or areas where the really big machines are located.
|
#tile.engineersdecor.sign_factoryarea.help=§6Marker sign for buildings or areas where the really big machines are located.
|
||||||
|
tile.engineersdecor.sign_exit.name=Exit Sign
|
||||||
|
#tile.engineersdecor.sign_factoryarea.help=§6There's the door, please ...
|
||||||
#-----------------------------------------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------------------------------------
|
||||||
tile.engineersdecor.halfslab_rebar_concrete.name=Rebar Concrete Slice
|
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_rebar_concrete.help=§6Vertically stackable slice.§r Right/left click with the slice stack on the top or bottom surface to add/remove slices.
|
||||||
|
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"parent": "block/cube",
|
||||||
|
"textures": {
|
||||||
|
"s": "engineersdecor:blocks/iestyle/treated_wood_rough_texture",
|
||||||
|
"particle": "engineersdecor:blocks/iestyle/treated_wood_rough_texture",
|
||||||
|
"f": "engineersdecor:blocks/sign/sign_exit_texture"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"from": [3, 7, 0],
|
||||||
|
"to": [13, 13, 0.5],
|
||||||
|
"faces": {
|
||||||
|
"north": {"uv": [3, 3, 13, 9], "texture": "#s"},
|
||||||
|
"east": {"uv": [15.5, 3, 16, 9], "texture": "#s"},
|
||||||
|
"south": {"uv": [0, 2, 16, 12], "texture": "#f"},
|
||||||
|
"west": {"uv": [0, 3, 0.5, 9], "texture": "#s"},
|
||||||
|
"up": {"uv": [3, 0, 13, 0.5], "texture": "#s"},
|
||||||
|
"down": {"uv": [3, 15.5, 13, 16], "texture": "#s"}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"display": {
|
||||||
|
"thirdperson_righthand": {
|
||||||
|
"rotation": [27, -68, 7],
|
||||||
|
"translation": [-3, -1, -0.75],
|
||||||
|
"scale": [0.4, 0.4, 0.4]
|
||||||
|
},
|
||||||
|
"firstperson_righthand": {
|
||||||
|
"rotation": [1, -58, 7],
|
||||||
|
"translation": [0.5, 0, 0],
|
||||||
|
"scale": [0.4, 0.4, 0.4]
|
||||||
|
},
|
||||||
|
"ground": {
|
||||||
|
"translation": [0, 0, 7],
|
||||||
|
"scale": [0.7, 0.7, 0.7]
|
||||||
|
},
|
||||||
|
"gui": {
|
||||||
|
"translation": [0, 0.5, 0]
|
||||||
|
},
|
||||||
|
"fixed": {
|
||||||
|
"rotation": [0, 180, 0],
|
||||||
|
"translation": [0, 0, -7.8]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"type": "engineersdecor:grc",
|
||||||
|
"result": "engineersdecor:treated_wood_side_table",
|
||||||
|
"required": ["immersiveengineering:material", "engineersdecor:treated_wood_pole"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
"SSS",
|
||||||
|
" P ",
|
||||||
|
"PPP"
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"S": {
|
||||||
|
"item": "#slabTreatedWood",
|
||||||
|
"data": 0
|
||||||
|
},
|
||||||
|
"P": {
|
||||||
|
"item": "engineersdecor:treated_wood_pole",
|
||||||
|
"data": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "engineersdecor:treated_wood_side_table",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"type": "engineersdecor:grc",
|
||||||
|
"result": "engineersdecor:sign_exit",
|
||||||
|
"required": ["engineersdecor:sign_factoryarea"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
{ "item": "engineersdecor:sign_factoryarea" }
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"item": "engineersdecor:sign_exit"
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,12 +3,12 @@
|
||||||
{
|
{
|
||||||
"type": "engineersdecor:grc",
|
"type": "engineersdecor:grc",
|
||||||
"result": "engineersdecor:sign_hotwire",
|
"result": "engineersdecor:sign_hotwire",
|
||||||
"required": ["engineersdecor:sign_factoryarea"]
|
"required": ["engineersdecor:sign_exit"]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"type": "minecraft:crafting_shapeless",
|
"type": "minecraft:crafting_shapeless",
|
||||||
"ingredients": [
|
"ingredients": [
|
||||||
{ "item": "engineersdecor:sign_factoryarea" }
|
{ "item": "engineersdecor:sign_exit" }
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"item": "engineersdecor:sign_hotwire"
|
"item": "engineersdecor:sign_hotwire"
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"type": "engineersdecor:grc",
|
||||||
|
"result": "engineersdecor:treated_wood_side_table",
|
||||||
|
"missing": ["immersiveengineering:material"],
|
||||||
|
"required": ["engineersdecor:treated_wood_pole"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
"SSS",
|
||||||
|
" P ",
|
||||||
|
"PPP"
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"S": {
|
||||||
|
"item": "#slabWood",
|
||||||
|
"data": 0
|
||||||
|
},
|
||||||
|
"P": {
|
||||||
|
"item": "engineersdecor:treated_wood_pole",
|
||||||
|
"data": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "engineersdecor:treated_wood_side_table",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 934 B |
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
||||||
"1.12.2": {
|
"1.12.2": {
|
||||||
|
"1.0.10-b1": "[A] Treated wood side table added.\n[F] Fixed recipe collision of Metal Rung Ladder (issue #37, thx ProsperCraft for reporting).\n[A] Added Exit Sign (texture design by J. Carver).",
|
||||||
"1.0.9": "[R] Release based on v1.0.9-b3. Release-to-release changes: * Slabs for clinker, concrete, slag bricks. * Slab slices for sheet metals, treated wood, and concretes. * Language updates. * Block hardness adaptions. * 1st/3rd person item model fixes. * Furnace initialisation issue fixed.",
|
"1.0.9": "[R] Release based on v1.0.9-b3. Release-to-release changes: * Slabs for clinker, concrete, slag bricks. * Slab slices for sheet metals, treated wood, and concretes. * Language updates. * Block hardness adaptions. * 1st/3rd person item model fixes. * Furnace initialisation issue fixed.",
|
||||||
"1.0.9-b3": "[A] Added missing recipes for slabs.\n[A] Added slab slices for IE sheet metals, treated wood, and concretes (stackable \"quater-slabs\").\n[M] Updated 1st/3rd person item model rotations/translations.\n[M] Hardness of valves and furni slightly increased.",
|
"1.0.9-b3": "[A] Added missing recipes for slabs.\n[A] Added slab slices for IE sheet metals, treated wood, and concretes (stackable \"quater-slabs\").\n[M] Updated 1st/3rd person item model rotations/translations.\n[M] Hardness of valves and furni slightly increased.",
|
||||||
"1.0.9-b2": "[A] Added slabs for Clinker Brick, Slag Brick, Rebar Concrete, and Stained Clinker. Texture variations like the base blocks. Allow fast pick-up (see tooltip help or config).\n[F] Fixed lab/electrical furnace initialisation issue (first item inserted was smelted directly).",
|
"1.0.9-b2": "[A] Added slabs for Clinker Brick, Slag Brick, Rebar Concrete, and Stained Clinker. Texture variations like the base blocks. Allow fast pick-up (see tooltip help or config).\n[F] Fixed lab/electrical furnace initialisation issue (first item inserted was smelted directly).",
|
||||||
|
@ -78,7 +79,7 @@
|
||||||
},
|
},
|
||||||
"promos": {
|
"promos": {
|
||||||
"1.12.2-recommended": "1.0.9",
|
"1.12.2-recommended": "1.0.9",
|
||||||
"1.12.2-latest": "1.0.9",
|
"1.12.2-latest": "1.0.10-b1",
|
||||||
"1.13.2-recommended": "",
|
"1.13.2-recommended": "",
|
||||||
"1.13.2-latest": "1.0.7-b5",
|
"1.13.2-latest": "1.0.7-b5",
|
||||||
"1.14.3-recommended": "",
|
"1.14.3-recommended": "",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue