Stairs, Slabs, Walls, Repeat
- Added partial versions of the building blocks
This commit is contained in:
parent
4d065bebc1
commit
5e628e18cb
166 changed files with 1452 additions and 110 deletions
|
@ -59,60 +59,38 @@ import net.minecraftforge.registries.IForgeRegistry;
|
|||
public enum AllBlocks {
|
||||
|
||||
// Schematics
|
||||
SCHEMATICANNON(new SchematicannonBlock()),
|
||||
SCHEMATICANNON_CONNECTOR(new RenderUtilityBlock()),
|
||||
SCHEMATICANNON_PIPE(new RenderUtilityBlock()),
|
||||
CREATIVE_CRATE(new CreativeCrateBlock()),
|
||||
SCHEMATICANNON(new SchematicannonBlock()), SCHEMATICANNON_CONNECTOR(new RenderUtilityBlock()),
|
||||
SCHEMATICANNON_PIPE(new RenderUtilityBlock()), CREATIVE_CRATE(new CreativeCrateBlock()),
|
||||
SCHEMATIC_TABLE(new SchematicTableBlock()),
|
||||
|
||||
// Kinetics
|
||||
SHAFT(new ShaftBlock(Properties.from(Blocks.ANDESITE))),
|
||||
COGWHEEL(new CogWheelBlock(false)),
|
||||
LARGE_COGWHEEL(new CogWheelBlock(true)),
|
||||
ENCASED_SHAFT(new EncasedShaftBlock()),
|
||||
ENCASED_BELT(new EncasedBeltBlock()),
|
||||
CLUTCH(new ClutchBlock()),
|
||||
GEARSHIFT(new GearshiftBlock()),
|
||||
GEARBOX(new GearboxBlock()),
|
||||
BELT(new BeltBlock()),
|
||||
BELT_PULLEY(new RenderUtilityAxisBlock()),
|
||||
SHAFT(new ShaftBlock(Properties.from(Blocks.ANDESITE))), COGWHEEL(new CogWheelBlock(false)),
|
||||
LARGE_COGWHEEL(new CogWheelBlock(true)), ENCASED_SHAFT(new EncasedShaftBlock()),
|
||||
ENCASED_BELT(new EncasedBeltBlock()), CLUTCH(new ClutchBlock()), GEARSHIFT(new GearshiftBlock()),
|
||||
GEARBOX(new GearboxBlock()), BELT(new BeltBlock()), BELT_PULLEY(new RenderUtilityAxisBlock()),
|
||||
BELT_ANIMATION(new RenderUtilityBlock()),
|
||||
|
||||
MOTOR(new MotorBlock()),
|
||||
WATER_WHEEL(new WaterWheelBlock()),
|
||||
MOTOR(new MotorBlock()), WATER_WHEEL(new WaterWheelBlock()),
|
||||
|
||||
ENCASED_FAN(new EncasedFanBlock()),
|
||||
ENCASED_FAN_INNER(new RenderUtilityAxisBlock()),
|
||||
TURNTABLE(new TurntableBlock()),
|
||||
SHAFT_HALF(new ShaftHalfBlock()),
|
||||
CRUSHING_WHEEL(new CrushingWheelBlock()),
|
||||
ENCASED_FAN(new EncasedFanBlock()), ENCASED_FAN_INNER(new RenderUtilityAxisBlock()),
|
||||
TURNTABLE(new TurntableBlock()), SHAFT_HALF(new ShaftHalfBlock()), CRUSHING_WHEEL(new CrushingWheelBlock()),
|
||||
CRUSHING_WHEEL_CONTROLLER(new CrushingWheelControllerBlock()),
|
||||
|
||||
MECHANICAL_PISTON(new MechanicalPistonBlock(false)),
|
||||
STICKY_MECHANICAL_PISTON(new MechanicalPistonBlock(true)),
|
||||
MECHANICAL_PISTON_HEAD(new MechanicalPistonHeadBlock()),
|
||||
PISTON_POLE(new PistonPoleBlock()),
|
||||
CONSTRUCT(new ChassisBlock(ChassisBlock.Type.NORMAL)),
|
||||
STICKY_CONSTRUCT(new ChassisBlock(ChassisBlock.Type.STICKY)),
|
||||
MECHANICAL_PISTON(new MechanicalPistonBlock(false)), STICKY_MECHANICAL_PISTON(new MechanicalPistonBlock(true)),
|
||||
MECHANICAL_PISTON_HEAD(new MechanicalPistonHeadBlock()), PISTON_POLE(new PistonPoleBlock()),
|
||||
CONSTRUCT(new ChassisBlock(ChassisBlock.Type.NORMAL)), STICKY_CONSTRUCT(new ChassisBlock(ChassisBlock.Type.STICKY)),
|
||||
RELOCATION_CONSTRUCT(new ChassisBlock(ChassisBlock.Type.RELOCATING)),
|
||||
|
||||
DRILL(new DrillBlock()),
|
||||
HARVESTER(new HarvesterBlock()),
|
||||
CONTACT(new ContactBlock()),
|
||||
DRILL(new DrillBlock()), HARVESTER(new HarvesterBlock()), CONTACT(new ContactBlock()),
|
||||
|
||||
// Logistics
|
||||
PULSE_REPEATER(new PulseRepeaterBlock()),
|
||||
REDSTONE_BRIDGE(new RedstoneBridgeBlock()),
|
||||
STOCKSWITCH(new StockswitchBlock()),
|
||||
FLEXCRATE(new FlexcrateBlock()),
|
||||
EXTRACTOR(new ExtractorBlock()),
|
||||
LINKED_EXTRACTOR(new LinkedExtractorBlock()),
|
||||
BELT_FUNNEL(new BeltFunnelBlock()),
|
||||
PULSE_REPEATER(new PulseRepeaterBlock()), REDSTONE_BRIDGE(new RedstoneBridgeBlock()),
|
||||
STOCKSWITCH(new StockswitchBlock()), FLEXCRATE(new FlexcrateBlock()), EXTRACTOR(new ExtractorBlock()),
|
||||
LINKED_EXTRACTOR(new LinkedExtractorBlock()), BELT_FUNNEL(new BeltFunnelBlock()),
|
||||
ENTITY_DETECTOR(new EntityDetectorBlock()),
|
||||
|
||||
// Symmetry
|
||||
SYMMETRY_PLANE(new PlaneSymmetryBlock()),
|
||||
SYMMETRY_CROSSPLANE(new CrossPlaneSymmetryBlock()),
|
||||
SYMMETRY_PLANE(new PlaneSymmetryBlock()), SYMMETRY_CROSSPLANE(new CrossPlaneSymmetryBlock()),
|
||||
SYMMETRY_TRIPLEPLANE(new TriplePlaneSymmetryBlock()),
|
||||
|
||||
// Gardens
|
||||
|
@ -126,24 +104,26 @@ public enum AllBlocks {
|
|||
DIORITE_BRICKS(new Block(Properties.from(Blocks.DIORITE))),
|
||||
GRANITE_BRICKS(new Block(Properties.from(Blocks.GRANITE))),
|
||||
|
||||
GABBRO(new Block(Properties.from(Blocks.ANDESITE))),
|
||||
POLISHED_GABBRO(new Block(Properties.from(GABBRO.block))),
|
||||
GABBRO_BRICKS(new Block(Properties.from(GABBRO.block))),
|
||||
PAVED_GABBRO_BRICKS(new Block(Properties.from(GABBRO.block))),
|
||||
INDENTED_GABBRO(new Block(Properties.from(GABBRO.block))),
|
||||
GABBRO(new Block(Properties.from(Blocks.ANDESITE)), ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
||||
POLISHED_GABBRO(new Block(Properties.from(GABBRO.block))),
|
||||
GABBRO_BRICKS(new Block(Properties.from(GABBRO.block)), ComesWith.STAIRS, ComesWith.WALL),
|
||||
PAVED_GABBRO_BRICKS(new Block(Properties.from(GABBRO.block)), ComesWith.SLAB),
|
||||
INDENTED_GABBRO(new Block(Properties.from(GABBRO.block)), ComesWith.SLAB),
|
||||
SLIGHTLY_MOSSY_GABBRO_BRICKS(new Block(Properties.from(GABBRO.block))),
|
||||
MOSSY_GABBRO_BRICKS(new Block(Properties.from(GABBRO.block))),
|
||||
|
||||
LIMESTONE(new Block(Properties.from(Blocks.SANDSTONE))),
|
||||
POLISHED_LIMESTONE(new Block(Properties.from(LIMESTONE.block))),
|
||||
LIMESTONE_BRICKS(new Block(Properties.from(LIMESTONE.block))),
|
||||
|
||||
LIMESTONE(new Block(Properties.from(Blocks.GRANITE)), ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
||||
LIMESTONE_BRICKS(new Block(Properties.from(LIMESTONE.block)), ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
||||
POLISHED_LIMESTONE(new Block(Properties.from(LIMESTONE.block)), ComesWith.SLAB),
|
||||
LIMESTONE_PILLAR(new RotatedPillarBlock(Properties.from(LIMESTONE.block))),
|
||||
|
||||
QUARTZIORITE(new Block(Properties.from(Blocks.QUARTZ_BLOCK))),
|
||||
QUARTZIORITE_BRICKS(new Block(Properties.from(QUARTZIORITE.block))),
|
||||
POLISHED_QUARTZIORITE(new Block(Properties.from(QUARTZIORITE.block))),
|
||||
WEATHERED_LIMESTONE(new Block(Properties.from(Blocks.SANDSTONE)), ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
||||
POLISHED_WEATHERED_LIMESTONE(new Block(Properties.from(WEATHERED_LIMESTONE.block)), ComesWith.SLAB),
|
||||
WEATHERED_LIMESTONE_BRICKS(new Block(Properties.from(WEATHERED_LIMESTONE.block)), ComesWith.STAIRS, ComesWith.SLAB,
|
||||
ComesWith.WALL),
|
||||
WEATHERED_LIMESTONE_PILLAR(new RotatedPillarBlock(Properties.from(WEATHERED_LIMESTONE.block))),
|
||||
|
||||
DOLOMITE(new Block(Properties.from(Blocks.GRANITE))),
|
||||
DOLOMITE(new Block(Properties.from(Blocks.QUARTZ_BLOCK)), ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
||||
DOLOMITE_BRICKS(new Block(Properties.from(DOLOMITE.block))),
|
||||
POLISHED_DOLOMITE(new Block(Properties.from(DOLOMITE.block))),
|
||||
DOLOMITE_PILLAR(new RotatedPillarBlock(Properties.from(DOLOMITE.block))),
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/dolomite_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/dolomite_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/dolomite_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/dolomite_bricks_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/dolomite_bricks_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/dolomite_bricks_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/dolomite_bricks_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/dolomite_bricks_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_bricks_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_bricks_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_bricks_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_bricks_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_bricks_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=y": { "model": "create:block/palettes/dolomite_pillar" },
|
||||
"axis=z": { "model": "create:block/palettes/dolomite_pillar", "x": 90 },
|
||||
"axis=y": { "model": "create:block/palettes/dolomite_pillar" },
|
||||
"axis=x": { "model": "create:block/palettes/dolomite_pillar", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/dolomite_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/dolomite_slab" },
|
||||
"double": { "model":"create:block/palettes/dolomite" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/dolomite_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/dolomite_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/dolomite_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/dolomite_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/dolomite_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/dolomite_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/gabbro_bricks_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/gabbro_bricks_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/gabbro_bricks_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/gabbro_bricks_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/gabbro_bricks_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_bricks_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_bricks_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_bricks_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_bricks_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_bricks_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/gabbro_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/gabbro_slab" },
|
||||
"double": { "model":"create:block/palettes/gabbro" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/gabbro_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/gabbro_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/gabbro_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/gabbro_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/gabbro_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/gabbro_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/indented_gabbro_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/indented_gabbro_slab" },
|
||||
"double": { "model":"create:block/palettes/indented_gabbro" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/limestone_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/limestone_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/limestone_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/limestone_bricks_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/limestone_bricks_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/limestone_bricks_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/limestone_bricks_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/limestone_bricks_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_bricks_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_bricks_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_bricks_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_bricks_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_bricks_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=z": { "model": "create:block/palettes/limestone_pillar", "x": 90 },
|
||||
"axis=y": { "model": "create:block/palettes/limestone_pillar" },
|
||||
"axis=z": { "model": "create:block/palettes/limestone_pillar", "x": 90 },
|
||||
"axis=x": { "model": "create:block/palettes/limestone_pillar", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/limestone" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/limestone_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/limestone_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/limestone_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/limestone_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/limestone_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/limestone_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/paved_gabbro_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/paved_gabbro_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/paved_gabbro_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/polished_limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/polished_limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/polished_limestone_double_slab" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": { "model": "create:block/palettes/polished_quartziorite" }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"variants": {
|
||||
"": { "model": "create:block/palettes/polished_weathered_limestone" }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/polished_weathered_limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/polished_weathered_limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/polished_weathered_limestone_double_slab" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": { "model": "create:block/palettes/quartziorite" }
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": { "model": "create:block/palettes/quartziorite_bricks" }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"variants": {
|
||||
"": { "model": "create:block/palettes/weathered_limestone" }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"variants": {
|
||||
"": { "model": "create:block/palettes/weathered_limestone_bricks" }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/weathered_limestone_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/weathered_limestone_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/weathered_limestone_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/weathered_limestone_bricks_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/weathered_limestone_bricks_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/weathered_limestone_bricks_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/weathered_limestone_bricks_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/weathered_limestone_bricks_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_bricks_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_bricks_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_bricks_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_bricks_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_bricks_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=z": { "model": "create:block/palettes/weathered_limestone_pillar", "x": 90 },
|
||||
"axis=y": { "model": "create:block/palettes/weathered_limestone_pillar" },
|
||||
"axis=x": { "model": "create:block/palettes/weathered_limestone_pillar", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/weathered_limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/weathered_limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/weathered_limestone" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"facing":{
|
||||
"east":{},
|
||||
"west":{"y": 180},
|
||||
"south":{"y": 90},
|
||||
"north":{"y": 270}
|
||||
},
|
||||
"half":{
|
||||
"bottom":{},
|
||||
"top":{"x": 180}
|
||||
},
|
||||
"shape":{
|
||||
"straight":{"model":"create:block/palettes/weathered_limestone_stairs"},
|
||||
"outer_right":{"model":"create:block/palettes/weathered_limestone_stairs_outer"},
|
||||
"outer_left":{"model":"create:block/palettes/weathered_limestone_stairs_outer"},
|
||||
"inner_right":{"model":"create:block/palettes/weathered_limestone_stairs_inner"},
|
||||
"inner_left":{"model":"create:block/palettes/weathered_limestone_stairs_inner"}
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=outer_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=outer_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=outer_left": {"y": 180},
|
||||
"facing=east,half=bottom,shape=inner_left": {"y": 270},
|
||||
"facing=west,half=bottom,shape=inner_left": {"y": 90},
|
||||
"facing=south,half=bottom,shape=inner_left": {"y": 0},
|
||||
"facing=north,half=bottom,shape=inner_left": {"y": 180},
|
||||
"facing=west,half=top,shape=straight": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=straight": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=straight": {"x": 180, "y": 270},
|
||||
"facing=west,half=top,shape=outer_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=outer_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=outer_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=outer_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=outer_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=outer_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=outer_left": {"x": 180, "y": 0},
|
||||
"facing=east,half=top,shape=inner_right": {"x": 180, "y": 0},
|
||||
"facing=west,half=top,shape=inner_right": {"x": 180, "y": 180},
|
||||
"facing=south,half=top,shape=inner_right": {"x": 180, "y": 90},
|
||||
"facing=north,half=top,shape=inner_right": {"x": 180, "y": 270},
|
||||
"facing=east,half=top,shape=inner_left": {"x": 180, "y": 90},
|
||||
"facing=west,half=top,shape=inner_left": {"x": 180, "y": 270},
|
||||
"facing=south,half=top,shape=inner_left": {"x": 180, "y": 180},
|
||||
"facing=north,half=top,shape=inner_left": {"x": 180, "y": 0}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "when": { "up": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_wall_post" }
|
||||
},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_wall_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_wall_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_wall_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "create:block/palettes/weathered_limestone_wall_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -64,24 +64,56 @@
|
|||
"block.create.andesite_bricks": "Andesite Bricks",
|
||||
"block.create.diorite_bricks": "Diorite Bricks",
|
||||
"block.create.granite_bricks": "Granite Bricks",
|
||||
|
||||
"block.create.gabbro": "Gabbro",
|
||||
"block.create.gabbro_stairs": "Gabbro Stairs",
|
||||
"block.create.gabbro_slab": "Gabbro Slab",
|
||||
"block.create.gabbro_wall": "Gabbro Wall",
|
||||
"block.create.polished_gabbro": "Polished Gabbro",
|
||||
"block.create.gabbro_bricks": "Gabbro Bricks",
|
||||
"block.create.gabbro_bricks_stairs": "Gabbro Brick Stairs",
|
||||
"block.create.gabbro_bricks_wall": "Gabbro Brick Wall",
|
||||
"block.create.paved_gabbro_bricks": "Paved Gabbro Bricks",
|
||||
"block.create.paved_gabbro_bricks_slab": "Paved Gabbro Bricks Slab",
|
||||
"block.create.indented_gabbro": "Indented Gabbro Tile",
|
||||
"block.create.indented_gabbro_slab": "Indented Gabbro Slab",
|
||||
"block.create.slightly_mossy_gabbro_bricks": "Mossy Gabbro Bricks",
|
||||
"block.create.mossy_gabbro_bricks": "Overgrown Gabbro Bricks",
|
||||
"block.create.limestone": "Limestone",
|
||||
"block.create.polished_limestone": "Polished Limestone",
|
||||
"block.create.limestone_bricks": "Limestone Bricks",
|
||||
"block.create.limestone_pillar": "Limestone Pillar",
|
||||
"block.create.quartziorite": "Quartziorite",
|
||||
"block.create.quartziorite_bricks": "Quartziorite Bricks",
|
||||
"block.create.polished_quartziorite": "Polished Quartziorite",
|
||||
"block.create.dolomite": "Dolomite",
|
||||
"block.create.dolomite_bricks": "Dolomite Bricks",
|
||||
"block.create.polished_dolomite": "Polished Dolomite",
|
||||
|
||||
"block.create.weathered_limestone": "Weathered Limestone",
|
||||
"block.create.weathered_limestone_stairs": "Weathered Limestone Stairs",
|
||||
"block.create.weathered_limestone_wall": "Weathered Limestone Wall",
|
||||
"block.create.weathered_limestone_slab": "Weathered Limestone Slab",
|
||||
"block.create.polished_weathered_limestone": "Polished Weathered Limestone",
|
||||
"block.create.polished_weathered_limestone_slab": "Polished Weathered Limestone Slab",
|
||||
"block.create.weathered_limestone_bricks": "Weathered Limestone Bricks",
|
||||
"block.create.weathered_limestone_bricks_stairs": "Weathered Limestone Brick Stairs",
|
||||
"block.create.weathered_limestone_bricks_wall": "Weathered Limestone Brick Wall",
|
||||
"block.create.weathered_limestone_bricks_slab": "Weathered Limestone Brick Slab",
|
||||
"block.create.weathered_limestone_pillar": "Weathered Limestone Pillar",
|
||||
|
||||
"block.create.dolomite_pillar": "Dolomite Pillar",
|
||||
"block.create.dolomite": "Dolomite",
|
||||
"block.create.dolomite_stairs": "Dolomite Stairs",
|
||||
"block.create.dolomite_wall": "Dolomite Wall",
|
||||
"block.create.dolomite_slab": "Dolomite Slab",
|
||||
"block.create.dolomite_bricks": "Dolomite Bricks",
|
||||
"block.create.dolomite_bricks_wall": "Dolomite Brick Wall",
|
||||
"block.create.dolomite_bricks_stairs": "Dolomite Brick Stairs",
|
||||
"block.create.dolomite_bricks_slab": "Dolomite Brick Slab",
|
||||
"block.create.polished_dolomite": "Polished Dolomite",
|
||||
|
||||
"block.create.limestone": "Limestone",
|
||||
"block.create.limestone_stairs": "Limestone Stairs",
|
||||
"block.create.limestone_slab": "Limestone Slab",
|
||||
"block.create.limestone_wall": "Limestone Wall",
|
||||
"block.create.limestone_bricks": "Limestone Bricks",
|
||||
"block.create.limestone_bricks_stairs": "Limestone Brick Stairs",
|
||||
"block.create.limestone_bricks_slab": "Limestone Brick Slab",
|
||||
"block.create.limestone_bricks_wall": "Limestone Brick Wall",
|
||||
"block.create.polished_limestone": "Polished Limestone",
|
||||
"block.create.polished_limestone_slab": "Polished Limestone Slab",
|
||||
"block.create.limestone_pillar": "Limestone Pillar",
|
||||
|
||||
"block.create.schematicannon": "Schematicannon",
|
||||
"block.create.schematic_table": "Schematic Table",
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"parent": "block/cube_bottom_top",
|
||||
"textures": {
|
||||
"all": "create:block/dolomite_bricks"
|
||||
"bottom": "create:block/dolomite",
|
||||
"top": "create:block/polished_dolomite",
|
||||
"side": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "create:block/paved_slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_dolomite",
|
||||
"top": "create:block/polished_dolomite",
|
||||
"side": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_dolomite",
|
||||
"top": "create:block/polished_dolomite",
|
||||
"side": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite_bricks",
|
||||
"top": "create:block/dolomite_bricks",
|
||||
"side": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite_bricks",
|
||||
"top": "create:block/dolomite_bricks",
|
||||
"side": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite_bricks",
|
||||
"top": "create:block/dolomite_bricks",
|
||||
"side": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "create:block/dolomite_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite",
|
||||
"top": "create:block/dolomite",
|
||||
"side": "create:block/dolomite"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite",
|
||||
"top": "create:block/dolomite",
|
||||
"side": "create:block/dolomite"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite",
|
||||
"top": "create:block/dolomite",
|
||||
"side": "create:block/dolomite"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite",
|
||||
"top": "create:block/dolomite",
|
||||
"side": "create:block/dolomite"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/dolomite",
|
||||
"top": "create:block/dolomite",
|
||||
"side": "create:block/dolomite"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "create:block/dolomite"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "create:block/dolomite"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/full_gabbro_bricks",
|
||||
"top": "create:block/full_gabbro_bricks",
|
||||
"side": "create:block/full_gabbro_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/full_gabbro_bricks",
|
||||
"top": "create:block/full_gabbro_bricks",
|
||||
"side": "create:block/full_gabbro_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/full_gabbro_bricks",
|
||||
"top": "create:block/full_gabbro_bricks",
|
||||
"side": "create:block/full_gabbro_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "create:block/full_gabbro_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "create:block/full_gabbro_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/gabbro",
|
||||
"top": "create:block/gabbro",
|
||||
"side": "create:block/gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/gabbro",
|
||||
"top": "create:block/gabbro",
|
||||
"side": "create:block/gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/gabbro",
|
||||
"top": "create:block/gabbro",
|
||||
"side": "create:block/gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/gabbro",
|
||||
"top": "create:block/gabbro",
|
||||
"side": "create:block/gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/gabbro",
|
||||
"top": "create:block/gabbro",
|
||||
"side": "create:block/gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "create:block/gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "create:block/gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_gabbro",
|
||||
"top": "create:block/polished_gabbro",
|
||||
"side": "create:block/indented_gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_gabbro",
|
||||
"top": "create:block/polished_gabbro",
|
||||
"side": "create:block/indented_gabbro"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone_bricks",
|
||||
"top": "create:block/limestone_bricks",
|
||||
"side": "create:block/limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone_bricks",
|
||||
"top": "create:block/limestone_bricks",
|
||||
"side": "create:block/limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone_bricks",
|
||||
"top": "create:block/limestone_bricks",
|
||||
"side": "create:block/limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone_bricks",
|
||||
"top": "create:block/limestone_bricks",
|
||||
"side": "create:block/limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone_bricks",
|
||||
"top": "create:block/limestone_bricks",
|
||||
"side": "create:block/limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "create:block/limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "create:block/limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone",
|
||||
"top": "create:block/limestone",
|
||||
"side": "create:block/limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone",
|
||||
"top": "create:block/limestone",
|
||||
"side": "create:block/limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone",
|
||||
"top": "create:block/limestone",
|
||||
"side": "create:block/limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone",
|
||||
"top": "create:block/limestone",
|
||||
"side": "create:block/limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/limestone",
|
||||
"top": "create:block/limestone",
|
||||
"side": "create:block/limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "create:block/limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "create:block/limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "create:block/paved_slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/full_gabbro_bricks",
|
||||
"top": "create:block/polished_gabbro",
|
||||
"side": "create:block/gabbro_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/full_gabbro_bricks",
|
||||
"top": "create:block/polished_gabbro",
|
||||
"side": "create:block/gabbro_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/cube_column",
|
||||
"textures": {
|
||||
"end": "create:block/polished_limestone",
|
||||
"side": "create:block/polished_limestone_slab"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_limestone",
|
||||
"top": "create:block/polished_limestone",
|
||||
"side": "create:block/polished_limestone_slab"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_limestone",
|
||||
"top": "create:block/polished_limestone",
|
||||
"side": "create:block/polished_limestone_slab"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/polished_weathered_limestone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/cube_column",
|
||||
"textures": {
|
||||
"end": "create:block/polished_weathered_limestone",
|
||||
"side": "create:block/polished_weathered_limestone_slab"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_weathered_limestone",
|
||||
"top": "create:block/polished_weathered_limestone",
|
||||
"side": "create:block/polished_weathered_limestone_slab"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/polished_weathered_limestone",
|
||||
"top": "create:block/polished_weathered_limestone",
|
||||
"side": "create:block/polished_weathered_limestone_slab"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_bottom_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/quartziorite",
|
||||
"top": "create:block/polished_quartziorite",
|
||||
"side": "create:block/quartziorite_bricks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/quartziorite"
|
||||
"all": "create:block/weathered_limestone"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/polished_quartziorite"
|
||||
"all": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "create:block/weathered_limestone_bricks",
|
||||
"top": "create:block/weathered_limestone_bricks",
|
||||
"side": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "create:block/weathered_limestone_bricks",
|
||||
"top": "create:block/weathered_limestone_bricks",
|
||||
"side": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/weathered_limestone_bricks",
|
||||
"top": "create:block/weathered_limestone_bricks",
|
||||
"side": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/weathered_limestone_bricks",
|
||||
"top": "create:block/weathered_limestone_bricks",
|
||||
"side": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "create:block/weathered_limestone_bricks",
|
||||
"top": "create:block/weathered_limestone_bricks",
|
||||
"side": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_post",
|
||||
"textures": {
|
||||
"wall": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_wall_side",
|
||||
"textures": {
|
||||
"wall": "create:block/weathered_limestone_bricks"
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue