1.14: All blockstates ported from 1.12 transformed to vanilla format.
This commit is contained in:
parent
8dac14c5ba
commit
91fb842315
71 changed files with 958 additions and 1386 deletions
|
@ -5,4 +5,4 @@ version_minecraft=1.14.4
|
|||
version_forge_minecraft=1.14.4-28.1.90
|
||||
version_fml_mappings=20190719-1.14.3
|
||||
version_jei=1.14.4:6.0.0.10
|
||||
version_engineersdecor=1.0.16-b6
|
||||
version_engineersdecor=1.0.16-b7
|
||||
|
|
|
@ -11,6 +11,8 @@ Mod sources for Minecraft version 1.14.4.
|
|||
|
||||
## Version history
|
||||
|
||||
~ v1.0.16-b7 [M] Forge blockstates ported from 1.12 transformed to vanilla.
|
||||
|
||||
- v1.0.16-b6 [A] Made slab slice left-click pickup optional (default enabled).
|
||||
[A] Added config option for device drops in creative mode (addresses #67),
|
||||
[F] Fixed Panzer Glass Block submerged display (issue #68, thx WenXin20).
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
*/
|
||||
package wile.engineersdecor.blocks;
|
||||
|
||||
import net.minecraft.entity.ai.goal.Goal;
|
||||
import wile.engineersdecor.ModContent;
|
||||
import wile.engineersdecor.ModEngineersDecor;
|
||||
import wile.engineersdecor.ModContent;
|
||||
import wile.engineersdecor.detail.ExtItems;
|
||||
import wile.engineersdecor.detail.ItemHandling;
|
||||
import net.minecraft.world.World;
|
||||
|
@ -23,12 +22,11 @@ import net.minecraft.state.StateContainer;
|
|||
import net.minecraft.tileentity.ITickableTileEntity;
|
||||
import net.minecraft.tileentity.TileEntityType;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.entity.CreatureEntity;
|
||||
import net.minecraft.entity.item.ItemEntity;
|
||||
import net.minecraft.entity.passive.CowEntity;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.entity.ai.goal.PrioritizedGoal;
|
||||
import net.minecraft.entity.LivingEntity;
|
||||
import net.minecraft.entity.MoverType;
|
||||
import net.minecraft.item.*;
|
||||
import net.minecraft.fluid.Fluid;
|
||||
import net.minecraft.fluid.Fluids;
|
||||
|
@ -302,9 +300,7 @@ public class BlockDecorMilker extends BlockDecorDirectedHorizontal
|
|||
// ITickable ------------------------------------------------------------------------------------
|
||||
|
||||
private void log(String s)
|
||||
{
|
||||
//System.out.println("Milker|" + s);
|
||||
} // may be enabled with config, for dev was println
|
||||
{} // System.out.println("Milker|" + s); may be enabled with config, for dev was println
|
||||
|
||||
private static ItemStack milk_filled_container_item(ItemStack stack)
|
||||
{ return milk_containers_.entrySet().stream().filter(e->e.getKey().isItemEqual(stack)).map(Map.Entry::getValue).findFirst().orElse(ItemStack.EMPTY); }
|
||||
|
@ -331,25 +327,21 @@ public class BlockDecorMilker extends BlockDecorDirectedHorizontal
|
|||
|
||||
private void release_cow(CowEntity cow)
|
||||
{
|
||||
log("RELEASE");
|
||||
log("release cow");
|
||||
if(cow != null) {
|
||||
cow.setNoAI(false);
|
||||
cow.targetSelector.getRunningGoals().filter(g->(g.getGoal()) instanceof MoveToMilkingMachineGoal).forEach(cow.goalSelector::removeGoal);
|
||||
cow.goalSelector.getRunningGoals().filter(g->(g.getGoal()) instanceof MoveToMilkingMachineGoal).forEach(cow.goalSelector::removeGoal);
|
||||
SingleMoveGoal.abortFor(cow);
|
||||
}
|
||||
tracked_cow_ = null;
|
||||
state_ = MilkingState.IDLE;
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
}
|
||||
|
||||
private boolean is_coming(CowEntity cow)
|
||||
{ return (cow != null) && (cow.goalSelector.getRunningGoals().anyMatch(g->(g.getGoal()) instanceof MoveToMilkingMachineGoal)); }
|
||||
|
||||
private boolean milking_process()
|
||||
{
|
||||
if((tracked_cow_ == null) && (fluid_level() >= MAX_MILKING_TANK_LEVEL)) return false; // nothing to do
|
||||
final Direction facing = world.getBlockState(getPos()).get(HORIZONTAL_FACING).getOpposite();
|
||||
final BlockPos target_pos = getPos().offset(facing);
|
||||
final Vec3d target_pos = new Vec3d(getPos().offset(facing)).add(0.5,0,0.5);
|
||||
CowEntity cow = null;
|
||||
{
|
||||
AxisAlignedBB aabb = new AxisAlignedBB(pos.offset(facing, 3)).grow(4, 2, 4);
|
||||
|
@ -366,152 +358,108 @@ public class BlockDecorMilker extends BlockDecorDirectedHorizontal
|
|||
if((cow == null) || (!cow.isAlive())) { release_cow(cow); cow = null; }
|
||||
if(tracked_cow_ == null) state_ = MilkingState.IDLE;
|
||||
if(cow == null) { log("Init: No cow"); return false; } // retry next cycle
|
||||
//tick_timer_ = PROCESSING_TICK_INTERVAL;
|
||||
|
||||
if(is_coming(cow)) {
|
||||
log("coming ... ");
|
||||
} else {
|
||||
if(!target_pos.withinDistance(cow.getPosition(), 0.5)) {
|
||||
log("come ... ");
|
||||
tick_timer_ = PROCESSING_TICK_INTERVAL;
|
||||
state_timer_ -= PROCESSING_TICK_INTERVAL;
|
||||
if(state_timer_ > 0) return false;
|
||||
switch(state_) { // Let's do this the old school FSA sequencing way ...
|
||||
case IDLE: {
|
||||
final List<LivingEntity> blocking_entities = world.getEntitiesWithinAABB(LivingEntity.class, new AxisAlignedBB(pos.offset(facing)).grow(0.5, 0.5, 0.5));
|
||||
if(blocking_entities.size() > 0) {
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
log("Idle: Position blocked");
|
||||
if(blocking_entities.get(0) instanceof CowEntity) {
|
||||
CowEntity blocker = (CowEntity)blocking_entities.get(0);
|
||||
BlockPos p = getPos().offset(facing,2);
|
||||
log("Idle: Shove off");
|
||||
blocker.setNoAI(false);
|
||||
SingleMoveGoal.startFor(blocker, p, 2, 1.0, (goal, world, pos)->(pos.distanceSq(goal.getCreature().getPosition())>49));
|
||||
}
|
||||
return false;
|
||||
}
|
||||
if(cow.getLeashed() || cow.isChild() || cow.isInLove() || (!cow.onGround) || cow.isBeingRidden() || cow.isSprinting()) return false;
|
||||
tracked_cow_ = cow.getUniqueID();
|
||||
state_ = MilkingState.PICKED;
|
||||
state_timeout_ = 200;
|
||||
tracked_cow_original_position_ = cow.getPosition();
|
||||
log("Idle: Picked cow " + tracked_cow_);
|
||||
return false;
|
||||
}
|
||||
case PICKED: {
|
||||
SingleMoveGoal.startFor(
|
||||
cow, target_pos, 2, 1.0,
|
||||
(goal, world, pos)->{
|
||||
if(pos.distanceSq(goal.getCreature().getPosition())>100) return true;
|
||||
for(int i=0; i<4; ++i) {
|
||||
if(world.getBlockState(pos.offset(Direction.byHorizontalIndex(i))).getBlock() instanceof BlockDecorMilker) return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
(goal, world, pos)->{
|
||||
log("move: position reached");
|
||||
goal.getCreature().setLocationAndAngles(goal.getTargetPosition().getX(), goal.getTargetPosition().getY(), goal.getTargetPosition().getZ(), facing.getHorizontalAngle(), 0);
|
||||
},
|
||||
(goal, world, pos)->{
|
||||
log("move: aborted");
|
||||
}
|
||||
);
|
||||
state_ = MilkingState.COMING;
|
||||
state_timeout_ = 400; // 15s should be enough
|
||||
log("Picked: coming to " + target_pos);
|
||||
return false;
|
||||
}
|
||||
case COMING: {
|
||||
if(target_pos.squareDistanceTo(cow.getPositionVec()) <= 1) {
|
||||
log("Coming: position reached");
|
||||
state_ = MilkingState.POSITIONING;
|
||||
state_timeout_ = 100; // 5s
|
||||
} else if((!SingleMoveGoal.isActiveFor(cow))) {
|
||||
release_cow(cow);
|
||||
log("Coming: aborted");
|
||||
} else {
|
||||
state_timeout_ -= 100;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
case POSITIONING: {
|
||||
log("Positioning: start milking");
|
||||
cow.setNoAI(true);
|
||||
cow.setLocationAndAngles(target_pos.getX(), target_pos.getY(), target_pos.getZ(), facing.getHorizontalAngle(), 0);
|
||||
world.playSound(null, pos, SoundEvents.ENTITY_COW_MILK, SoundCategory.BLOCKS, 0.5f, 1f);
|
||||
state_timeout_ = 600;
|
||||
state_ = MilkingState.MILKING;
|
||||
state_timer_ = 30;
|
||||
return false;
|
||||
}
|
||||
case MILKING: {
|
||||
tank_level_ = MathHelper.clamp(tank_level_+BUCKET_SIZE, 0, TANK_CAPACITY);
|
||||
state_timeout_ = 600;
|
||||
state_ = MilkingState.LEAVING;
|
||||
state_timer_ = 20;
|
||||
cow.setNoAI(false);
|
||||
cow.getNavigator().clearPath();
|
||||
cow.goalSelector.getRunningGoals().forEach(PrioritizedGoal::resetTask);
|
||||
Goal goal = new MoveToMilkingMachineGoal(cow, target_pos);
|
||||
cow.goalSelector.addGoal(2, goal);
|
||||
cow.targetSelector.addGoal(2, goal);
|
||||
} else {
|
||||
log("in pos ... ");
|
||||
cow.moveToBlockPosAndAngles(target_pos, facing.getHorizontalAngle(), 0);
|
||||
log("Milking: done, leave");
|
||||
return true;
|
||||
}
|
||||
case LEAVING: {
|
||||
BlockPos p = (tracked_cow_original_position_ != null) ? (tracked_cow_original_position_) : getPos().offset(facing,2).offset(facing.rotateYCCW());
|
||||
SingleMoveGoal.startFor(cow, p, 2, 1.0, (goal, world, pos)->(pos.distanceSq(goal.getCreature().getPosition())>100));
|
||||
state_timeout_ = 600;
|
||||
state_timer_ = 500;
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
state_ = MilkingState.WAITING;
|
||||
log("Leaving: process done");
|
||||
return true;
|
||||
}
|
||||
case WAITING: {
|
||||
// wait for the timeout to kick in until starting with the next.
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
log("Waiting: ...");
|
||||
return true;
|
||||
}
|
||||
default: {
|
||||
release_cow(cow);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
if(cow!=null) return false;
|
||||
|
||||
state_timer_ -= PROCESSING_TICK_INTERVAL;
|
||||
if(state_timer_ > 0) return false;
|
||||
switch(state_) { // Let's do this the old school FSA sequencing way ...
|
||||
case IDLE: {
|
||||
final List<LivingEntity> blocking_entities = world.getEntitiesWithinAABB(LivingEntity.class, new AxisAlignedBB(pos.offset(facing)).grow(0.5, 0.5, 0.5));
|
||||
if(blocking_entities.size() > 0) {
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
log("Idle: Position blocked");
|
||||
if(blocking_entities.get(0) instanceof CowEntity) {
|
||||
CowEntity blocker = (CowEntity)blocking_entities.get(0);
|
||||
BlockPos p = getPos().offset(facing,2);
|
||||
log("Idle: Shove off");
|
||||
blocker.setNoAI(false);
|
||||
blocker.goalSelector.getRunningGoals().forEach(PrioritizedGoal::resetTask);
|
||||
blocker.getNavigator().tryMoveToXYZ(p.getX()+0.5, p.getY()+0.5, p.getZ()+0.5, 1);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
if(cow.getLeashed() || cow.isChild() || cow.isInLove() || (!cow.onGround) || cow.isBeingRidden() || cow.isSprinting()) return false;
|
||||
tracked_cow_ = cow.getUniqueID();
|
||||
state_ = MilkingState.PICKED;
|
||||
state_timeout_ = 200;
|
||||
tracked_cow_original_position_ = cow.getPosition();
|
||||
log("Idle: Picked cow " + tracked_cow_);
|
||||
return false;
|
||||
}
|
||||
case PICKED: {
|
||||
BlockPos p = getPos().offset(facing).offset(facing.rotateY());
|
||||
cow.getNavigator().clearPath();
|
||||
if(!cow.getNavigator().tryMoveToXYZ(p.getX(), p.getY(), p.getZ(),1.0)) {
|
||||
log("Picked: No path");
|
||||
cow.goalSelector.getRunningGoals().forEach(PrioritizedGoal::resetTask);
|
||||
tracked_cow_ = null;
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
return false;
|
||||
}
|
||||
state_ = MilkingState.COMING;
|
||||
state_timeout_ = 300; // 15s should be enough
|
||||
log("Picked: coming to " +p);
|
||||
return false;
|
||||
}
|
||||
case COMING: {
|
||||
BlockPos p = getPos().offset(facing).offset(facing.rotateY());
|
||||
if(cow.getPosition().distanceSq(p) > 1) {
|
||||
if(cow.getNavigator().getTargetPos().equals(p) && (!cow.getNavigator().noPath())) return false;
|
||||
if(!cow.getNavigator().tryMoveToXYZ(p.getX(), p.getY(), p.getZ(),1.0)) {
|
||||
log("Coming: lost path");
|
||||
cow.goalSelector.getRunningGoals().forEach(PrioritizedGoal::resetTask);
|
||||
tracked_cow_ = null;
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
return false;
|
||||
} else {
|
||||
log("Coming: Re-init path");
|
||||
state_timeout_ -= 100;
|
||||
}
|
||||
} else {
|
||||
BlockPos next_p = getPos().offset(facing);
|
||||
if(!cow.getNavigator().tryMoveToXYZ(next_p.getX(), next_p.getY(), next_p.getZ(), 1.0)) {
|
||||
log("Coming: No path");
|
||||
tracked_cow_ = null;
|
||||
cow.goalSelector.getRunningGoals().forEach(PrioritizedGoal::resetTask);
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
return false;
|
||||
}
|
||||
log("Coming: position reached");
|
||||
state_ = MilkingState.POSITIONING;
|
||||
state_timeout_ = 100; // 5s
|
||||
}
|
||||
return false;
|
||||
}
|
||||
case POSITIONING: {
|
||||
BlockPos p = getPos().offset(facing);
|
||||
if(p.distanceSq(cow.posX, cow.posY, cow.posZ, true) > 0.45) {
|
||||
if(cow.getNavigator().getTargetPos().equals(p) && (!cow.getNavigator().noPath())) return false;
|
||||
if(!cow.getNavigator().tryMoveToXYZ(p.getX(), p.getY(), p.getZ(), 1.0)) {
|
||||
log("Positioning: lost path");
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
cow.goalSelector.getRunningGoals().forEach(PrioritizedGoal::resetTask);
|
||||
} else {
|
||||
log("Positioning: Re-init path");
|
||||
state_timeout_ -= 25;
|
||||
}
|
||||
tracked_cow_ = null;
|
||||
return false;
|
||||
}
|
||||
cow.setNoAI(true);
|
||||
cow.move(MoverType.SELF, new Vec3d(p.getX()+0.5-cow.posX, 0,p.getZ()+0.5-cow.posZ));
|
||||
world.playSound(null, pos, SoundEvents.ENTITY_COW_MILK, SoundCategory.BLOCKS, 0.5f, 1f);
|
||||
state_timeout_ = 600;
|
||||
state_ = MilkingState.MILKING;
|
||||
state_timer_ = 30;
|
||||
log("Positioning: start milking");
|
||||
return false;
|
||||
}
|
||||
case MILKING: {
|
||||
tank_level_ = MathHelper.clamp(tank_level_+BUCKET_SIZE, 0, TANK_CAPACITY);
|
||||
state_timeout_ = 600;
|
||||
state_ = MilkingState.LEAVING;
|
||||
state_timer_ = 20;
|
||||
cow.setNoAI(false);
|
||||
cow.getNavigator().clearPath();
|
||||
log("Milking: done, leave");
|
||||
return true;
|
||||
}
|
||||
case LEAVING: {
|
||||
BlockPos p = (tracked_cow_original_position_ != null) ? (tracked_cow_original_position_) : getPos().offset(facing,2).offset(facing.rotateYCCW());
|
||||
if(!cow.getNavigator().tryMoveToXYZ(p.getX(), p.getY(), p.getZ(), 1.0)) cow.getNavigator().clearPath();
|
||||
state_timeout_ = 600;
|
||||
state_timer_ = 500;
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
state_ = MilkingState.WAITING;
|
||||
log("Leaving: process done");
|
||||
return true;
|
||||
}
|
||||
case WAITING: {
|
||||
tick_timer_ = TICK_INTERVAL;
|
||||
log("Waiting: ...");
|
||||
return true; // wait for the timeout to kick in until starting with the next.
|
||||
}
|
||||
default: {
|
||||
tracked_cow_ = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return (tracked_cow_ != null);
|
||||
}
|
||||
|
||||
|
@ -522,8 +470,7 @@ public class BlockDecorMilker extends BlockDecorDirectedHorizontal
|
|||
tick_timer_ = TICK_INTERVAL;
|
||||
boolean dirty = false;
|
||||
final BlockState block_state = world.getBlockState(pos);
|
||||
if(!world.isBlockPowered(pos) && (state_==MilkingState.IDLE)) {
|
||||
log("Cycle");
|
||||
if(!world.isBlockPowered(pos) || (state_ != MilkingState.IDLE)) {
|
||||
if(energy_consumption > 0) {
|
||||
if(energy_stored_ <= 0) return;
|
||||
energy_stored_ = MathHelper.clamp(energy_stored_-energy_consumption, 0, MAX_ENERGY_BUFFER);
|
||||
|
@ -559,65 +506,122 @@ public class BlockDecorMilker extends BlockDecorDirectedHorizontal
|
|||
}
|
||||
}
|
||||
|
||||
public static class MoveToMilkingMachineGoal extends net.minecraft.entity.ai.goal.MoveToBlockGoal
|
||||
public static class SingleMoveGoal extends net.minecraft.entity.ai.goal.MoveToBlockGoal
|
||||
{
|
||||
@FunctionalInterface public interface TargetPositionInValidCheck { boolean test(SingleMoveGoal goal, IWorldReader world, BlockPos pos); }
|
||||
@FunctionalInterface public interface StrollEvent { void apply(SingleMoveGoal goal, IWorldReader world, Vec3d pos); }
|
||||
private static void log(String s) {} // System.out.println(s);
|
||||
|
||||
public MoveToMilkingMachineGoal(CowEntity creature, BlockPos pos)
|
||||
private static final int motion_timeout = 20*20;
|
||||
private boolean aborted_;
|
||||
private boolean in_position_;
|
||||
private boolean was_aborted_;
|
||||
private Vec3d target_pos_;
|
||||
private TargetPositionInValidCheck abort_condition_;
|
||||
private StrollEvent on_target_position_reached_;
|
||||
private StrollEvent on_aborted_;
|
||||
|
||||
public SingleMoveGoal(CreatureEntity creature, Vec3d pos, double speed, TargetPositionInValidCheck abort_condition, @Nullable StrollEvent on_position_reached, @Nullable StrollEvent on_aborted)
|
||||
{
|
||||
super(creature, 1.0, 20, 4);
|
||||
destinationBlock = pos;
|
||||
runDelay = 0;
|
||||
super(creature, speed, 32, 32);
|
||||
abort_condition_ = abort_condition;
|
||||
on_target_position_reached_ = on_position_reached;
|
||||
on_aborted_ = on_aborted;
|
||||
destinationBlock = new BlockPos(pos.getX(), pos.getY(), pos.getZ());
|
||||
timeoutCounter = 0;
|
||||
runDelay = 0;
|
||||
aborted_ = false;
|
||||
was_aborted_ = false;
|
||||
target_pos_ = pos;
|
||||
}
|
||||
|
||||
private void abort()
|
||||
{
|
||||
creature.targetSelector.getRunningGoals().filter(g->(g.getGoal()) instanceof MoveToMilkingMachineGoal).forEach(creature.goalSelector::removeGoal);
|
||||
creature.goalSelector.getRunningGoals().filter(g->(g.getGoal()) instanceof MoveToMilkingMachineGoal).forEach(creature.goalSelector::removeGoal);
|
||||
}
|
||||
public static void startFor(CreatureEntity entity, BlockPos target_pos, int priority, double speed, TargetPositionInValidCheck abort_condition)
|
||||
{ startFor(entity, new Vec3d(target_pos.getX(),target_pos.getY(),target_pos.getZ()), priority, speed, abort_condition, null, null); }
|
||||
|
||||
public static void startFor(CreatureEntity entity, Vec3d target_pos, int priority, double speed, TargetPositionInValidCheck abort_condition, @Nullable StrollEvent on_position_reached, @Nullable StrollEvent on_aborted)
|
||||
{ entity.goalSelector.addGoal(priority, new SingleMoveGoal(entity, target_pos, speed, abort_condition, on_position_reached, on_aborted)); }
|
||||
|
||||
public static boolean isActiveFor(CreatureEntity entity)
|
||||
{ return (entity != null) && (entity.goalSelector.getRunningGoals().anyMatch(g->(g.getGoal()) instanceof SingleMoveGoal)); }
|
||||
|
||||
public static void abortFor(CreatureEntity entity)
|
||||
{ entity.goalSelector.getRunningGoals().filter(g->(g.getGoal()) instanceof SingleMoveGoal).forEach(g->((SingleMoveGoal)g.getGoal()).abort()); }
|
||||
|
||||
public Vec3d getTargetPosition()
|
||||
{ return target_pos_; }
|
||||
|
||||
public CreatureEntity getCreature()
|
||||
{ return creature; }
|
||||
|
||||
public void abort()
|
||||
{ aborted_ = true; }
|
||||
|
||||
@Override
|
||||
public void resetTask()
|
||||
{ runDelay = 0; timeoutCounter = 0; }
|
||||
|
||||
@Override
|
||||
public double getTargetDistanceSq()
|
||||
{ return 0.8; }
|
||||
{ return 1.2; }
|
||||
|
||||
@Override
|
||||
public boolean shouldMove()
|
||||
{ return (timeoutCounter & 0x3) == 0; }
|
||||
{ return (timeoutCounter & 0x7) == 0; }
|
||||
|
||||
@Override
|
||||
public boolean shouldExecute() {
|
||||
if(--runDelay > 0) return false;
|
||||
runDelay = 4;
|
||||
public boolean shouldExecute()
|
||||
{
|
||||
if(!shouldMoveTo(creature.world, destinationBlock)) {
|
||||
aborted_ = true;
|
||||
return false;
|
||||
} else if(aborted_) {
|
||||
// shouldExecute is the point where in GoalSelector.tick() the goal is not in flagGoals and can be removed.
|
||||
creature.goalSelector.getRunningGoals().filter(g->(g.getGoal()) instanceof SingleMoveGoal).forEach(g->creature.goalSelector.removeGoal(g));
|
||||
creature.goalSelector.removeGoal(this);
|
||||
if((!was_aborted_) && (on_aborted_!=null)) on_aborted_.apply(this, creature.world, target_pos_);
|
||||
was_aborted_ = true;
|
||||
return false;
|
||||
} else if(--runDelay > 0) {
|
||||
return false;
|
||||
} else {
|
||||
runDelay = 10;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void startExecuting()
|
||||
{
|
||||
log("startExecuting()");
|
||||
timeoutCounter = 0;
|
||||
if(!creature.getNavigator().tryMoveToXYZ(target_pos_.getX(), target_pos_.getY(), target_pos_.getZ(), this.movementSpeed)) abort();
|
||||
}
|
||||
|
||||
public boolean shouldContinueExecuting()
|
||||
{
|
||||
if((aborted_) || (creature.getNavigator().noPath()) || (timeoutCounter > motion_timeout) || (!shouldMoveTo(creature.world, destinationBlock))) {
|
||||
abort();
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void tick()
|
||||
{
|
||||
if(!destinationBlock.withinDistance(creature.getPositionVec(), getTargetDistanceSq())) {
|
||||
++timeoutCounter;
|
||||
if(shouldMove()) {
|
||||
if(!creature.getNavigator().tryMoveToXYZ(destinationBlock.getX()+0.5, destinationBlock.getY(), destinationBlock.getZ()+0.5, this.movementSpeed)) {
|
||||
System.out.println("TRYMOVE FAILED");
|
||||
abort();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
System.out.println("IN POSITION");
|
||||
abort();
|
||||
}
|
||||
}
|
||||
protected boolean shouldMoveTo(IWorldReader world, BlockPos pos)
|
||||
{ if(!abort_condition_.test(this, world, pos)) { return true; } abort(); return false; }
|
||||
|
||||
@Override
|
||||
protected boolean shouldMoveTo(IWorldReader world, BlockPos pos)
|
||||
public void tick()
|
||||
{
|
||||
for(int i=0; i<4; ++i) {
|
||||
if(world.getBlockState(pos.offset(Direction.byHorizontalIndex(i))).getBlock() instanceof BlockDecorMilker) return true;
|
||||
BlockPos testpos = new BlockPos(target_pos_.getX(), creature.getPositionVec().getY(), target_pos_.getZ());
|
||||
if(!testpos.withinDistance(creature.getPositionVec(), getTargetDistanceSq())) {
|
||||
if((++timeoutCounter > motion_timeout)) { abort(); return; }
|
||||
if(shouldMove() && (!creature.getNavigator().tryMoveToXYZ(target_pos_.getX(), target_pos_.getY(), target_pos_.getZ(), movementSpeed))) abort();
|
||||
} else {
|
||||
in_position_ = true;
|
||||
abort();
|
||||
if(on_target_position_reached_ != null) on_target_position_reached_.apply(this, creature.world, target_pos_);
|
||||
}
|
||||
System.out.println("NO MOVE TO");
|
||||
abort();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,40 +1,16 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v0_model"
|
||||
},
|
||||
"parts=0,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v1_model"
|
||||
},
|
||||
"parts=0,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v2_model"
|
||||
},
|
||||
"parts=0,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v3_model"
|
||||
},
|
||||
"parts=1,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v0_model"
|
||||
},
|
||||
"parts=1,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v1_model"
|
||||
},
|
||||
"parts=1,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v2_model"
|
||||
},
|
||||
"parts=1,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v3_model"
|
||||
},
|
||||
"parts=2,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v0_model"
|
||||
},
|
||||
"parts=2,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v1_model"
|
||||
},
|
||||
"parts=2,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v2_model"
|
||||
},
|
||||
"parts=2,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v3_model"
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v0_model" },
|
||||
"parts=0,tvariant=1": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v1_model" },
|
||||
"parts=0,tvariant=2": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v2_model" },
|
||||
"parts=0,tvariant=3": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s0v3_model" },
|
||||
"parts=1,tvariant=0": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v0_model" },
|
||||
"parts=1,tvariant=1": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v1_model" },
|
||||
"parts=1,tvariant=2": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v2_model" },
|
||||
"parts=1,tvariant=3": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s1v3_model" },
|
||||
"parts=2,tvariant=0": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v0_model" },
|
||||
"parts=2,tvariant=1": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v1_model" },
|
||||
"parts=2,tvariant=2": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v2_model" },
|
||||
"parts=2,tvariant=3": { "model": "engineersdecor:block/slab/specific/clinker_brick_slab_s2v3_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,40 +1,16 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v0_model"
|
||||
},
|
||||
"parts=0,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v1_model"
|
||||
},
|
||||
"parts=0,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v2_model"
|
||||
},
|
||||
"parts=0,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v3_model"
|
||||
},
|
||||
"parts=1,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v0_model"
|
||||
},
|
||||
"parts=1,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v1_model"
|
||||
},
|
||||
"parts=1,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v2_model"
|
||||
},
|
||||
"parts=1,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v3_model"
|
||||
},
|
||||
"parts=2,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v0_model"
|
||||
},
|
||||
"parts=2,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v1_model"
|
||||
},
|
||||
"parts=2,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v2_model"
|
||||
},
|
||||
"parts=2,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v3_model"
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v0_model" },
|
||||
"parts=0,tvariant=1": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v1_model" },
|
||||
"parts=0,tvariant=2": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v2_model" },
|
||||
"parts=0,tvariant=3": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s0v3_model" },
|
||||
"parts=1,tvariant=0": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v0_model" },
|
||||
"parts=1,tvariant=1": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v1_model" },
|
||||
"parts=1,tvariant=2": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v2_model" },
|
||||
"parts=1,tvariant=3": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s1v3_model" },
|
||||
"parts=2,tvariant=0": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v0_model" },
|
||||
"parts=2,tvariant=1": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v1_model" },
|
||||
"parts=2,tvariant=2": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v2_model" },
|
||||
"parts=2,tvariant=3": { "model": "engineersdecor:block/slab/specific/clinker_brick_stained_slab_s2v3_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stained_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/brick/clinker_brick_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/clinker_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -6,4 +6,4 @@
|
|||
{ "when": { "south": "true" }, "apply": { "model": "engineersdecor:block/brick/clinker_brick_wall_side", "y": 180, "uvlock": true } },
|
||||
{ "when": { "west": "true" }, "apply": { "model": "engineersdecor:block/brick/clinker_brick_wall_side", "y": 270, "uvlock": true } }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -6,4 +6,4 @@
|
|||
{ "when": { "south": "true" }, "apply": { "model": "engineersdecor:block/concrete/concrete_wall_side", "y": 180, "uvlock": true } },
|
||||
{ "when": { "west": "true" }, "apply": { "model": "engineersdecor:block/concrete/concrete_wall_side", "y": 270, "uvlock": true } }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,10 +1,16 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/device/factory_dropper_model"
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} },
|
||||
"open": { "false":{}, "true":{ "model": "engineersdecor:block/device/factory_dropper_model_open" } }
|
||||
"facing=north,open=false": { "model": "engineersdecor:block/device/factory_dropper_model" },
|
||||
"facing=south,open=false": { "model": "engineersdecor:block/device/factory_dropper_model", "y":180 },
|
||||
"facing=west,open=false": { "model": "engineersdecor:block/device/factory_dropper_model", "y":270 },
|
||||
"facing=east,open=false": { "model": "engineersdecor:block/device/factory_dropper_model", "y":90 },
|
||||
"facing=up,open=false": { "model": "engineersdecor:block/device/factory_dropper_model", "x":270 },
|
||||
"facing=down,open=false": { "model": "engineersdecor:block/device/factory_dropper_model", "x":90 },
|
||||
"facing=north,open=true": { "model": "engineersdecor:block/device/factory_dropper_model_open" },
|
||||
"facing=south,open=true": { "model": "engineersdecor:block/device/factory_dropper_model_open", "y":180 },
|
||||
"facing=west,open=true": { "model": "engineersdecor:block/device/factory_dropper_model_open", "y":270 },
|
||||
"facing=east,open=true": { "model": "engineersdecor:block/device/factory_dropper_model_open", "y":90 },
|
||||
"facing=up,open=true": { "model": "engineersdecor:block/device/factory_dropper_model_open", "x":270 },
|
||||
"facing=down,open=true": { "model": "engineersdecor:block/device/factory_dropper_model_open", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/device/factory_hopper_model"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north":{"y":0},
|
||||
"south":{"y":180},
|
||||
"west":{"y":270},
|
||||
"east":{"y":90},
|
||||
"up": { "model": "engineersdecor:block/device/factory_hopper_model_up" },
|
||||
"down": { "model": "engineersdecor:block/device/factory_hopper_model_down" }
|
||||
}
|
||||
"facing=north": { "model": "engineersdecor:block/device/factory_hopper_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/device/factory_hopper_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/device/factory_hopper_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/device/factory_hopper_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/device/factory_hopper_model_up" },
|
||||
"facing=down": { "model": "engineersdecor:block/device/factory_hopper_model_down" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/device/factory_placer_model"
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/device/factory_placer_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/device/factory_placer_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/device/factory_placer_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/device/factory_placer_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/device/factory_placer_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/device/factory_placer_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,40 +1,16 @@
|
|||
{
|
||||
"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"
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,44 +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 }
|
||||
"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 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_clinker_brick_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_concrete_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_concrete_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"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"
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_rebar_concrete_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_aluminum_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_copper_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_gold_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_iron_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_sheetmetal_steel_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,49 +1,19 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s0_model"
|
||||
},
|
||||
"parts=1": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s1_model"
|
||||
},
|
||||
"parts=2": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s2_model"
|
||||
},
|
||||
"parts=3": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s3_model"
|
||||
},
|
||||
"parts=4": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s4_model"
|
||||
},
|
||||
"parts=5": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s5_model"
|
||||
},
|
||||
"parts=6": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s6_model"
|
||||
},
|
||||
"parts=7": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s7_model"
|
||||
},
|
||||
"parts=8": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s8_model"
|
||||
},
|
||||
"parts=9": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s9_model"
|
||||
},
|
||||
"parts=10": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sa_model"
|
||||
},
|
||||
"parts=11": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sb_model"
|
||||
},
|
||||
"parts=12": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sc_model"
|
||||
},
|
||||
"parts=13": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sd_model"
|
||||
},
|
||||
"parts=14": {
|
||||
"model": "engineersdecor:block/slab/specific/halfslab_treated_wood_se_model"
|
||||
"variants": {
|
||||
"parts=0": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s0_model" },
|
||||
"parts=1": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s1_model" },
|
||||
"parts=2": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s2_model" },
|
||||
"parts=3": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s3_model" },
|
||||
"parts=4": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s4_model" },
|
||||
"parts=5": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s5_model" },
|
||||
"parts=6": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s6_model" },
|
||||
"parts=7": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s7_model" },
|
||||
"parts=8": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s8_model" },
|
||||
"parts=9": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_s9_model" },
|
||||
"parts=10": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sa_model" },
|
||||
"parts=11": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sb_model" },
|
||||
"parts=12": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sc_model" },
|
||||
"parts=13": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_sd_model" },
|
||||
"parts=14": { "model": "engineersdecor:block/slab/specific/halfslab_treated_wood_se_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/light/floor_edge_light_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/light/floor_edge_light_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/light/floor_edge_light_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/light/floor_edge_light_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/light/floor_edge_light_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/light/floor_edge_light_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/light/floor_edge_light_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/light/inset_light_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/light/inset_light_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/light/inset_light_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/light/inset_light_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/light/inset_light_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/light/inset_light_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/light/inset_light_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,40 +1,16 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v0_model"
|
||||
},
|
||||
"parts=0,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v1_model"
|
||||
},
|
||||
"parts=0,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v2_model"
|
||||
},
|
||||
"parts=0,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v3_model"
|
||||
},
|
||||
"parts=1,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v0_model"
|
||||
},
|
||||
"parts=1,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v1_model"
|
||||
},
|
||||
"parts=1,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v2_model"
|
||||
},
|
||||
"parts=1,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v3_model"
|
||||
},
|
||||
"parts=2,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v0_model"
|
||||
},
|
||||
"parts=2,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v1_model"
|
||||
},
|
||||
"parts=2,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v2_model"
|
||||
},
|
||||
"parts=2,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v3_model"
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v0_model" },
|
||||
"parts=0,tvariant=1": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v1_model" },
|
||||
"parts=0,tvariant=2": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v2_model" },
|
||||
"parts=0,tvariant=3": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s0v3_model" },
|
||||
"parts=1,tvariant=0": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v0_model" },
|
||||
"parts=1,tvariant=1": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v1_model" },
|
||||
"parts=1,tvariant=2": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v2_model" },
|
||||
"parts=1,tvariant=3": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s1v3_model" },
|
||||
"parts=2,tvariant=0": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v0_model" },
|
||||
"parts=2,tvariant=1": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v1_model" },
|
||||
"parts=2,tvariant=2": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v2_model" },
|
||||
"parts=2,tvariant=3": { "model": "engineersdecor:block/slab/specific/panzerglass_slab_s2v3_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -11,4 +11,4 @@
|
|||
{ "model": "engineersdecor:block/concrete/rebar_concrete_model7" }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,40 +1,16 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v0_model"
|
||||
},
|
||||
"parts=0,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v1_model"
|
||||
},
|
||||
"parts=0,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v2_model"
|
||||
},
|
||||
"parts=0,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v3_model"
|
||||
},
|
||||
"parts=1,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v0_model"
|
||||
},
|
||||
"parts=1,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v1_model"
|
||||
},
|
||||
"parts=1,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v2_model"
|
||||
},
|
||||
"parts=1,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v3_model"
|
||||
},
|
||||
"parts=2,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v0_model"
|
||||
},
|
||||
"parts=2,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v1_model"
|
||||
},
|
||||
"parts=2,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v2_model"
|
||||
},
|
||||
"parts=2,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v3_model"
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v0_model" },
|
||||
"parts=0,tvariant=1": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v1_model" },
|
||||
"parts=0,tvariant=2": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v2_model" },
|
||||
"parts=0,tvariant=3": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s0v3_model" },
|
||||
"parts=1,tvariant=0": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v0_model" },
|
||||
"parts=1,tvariant=1": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v1_model" },
|
||||
"parts=1,tvariant=2": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v2_model" },
|
||||
"parts=1,tvariant=3": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s1v3_model" },
|
||||
"parts=2,tvariant=0": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v0_model" },
|
||||
"parts=2,tvariant=1": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v1_model" },
|
||||
"parts=2,tvariant=2": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v2_model" },
|
||||
"parts=2,tvariant=3": { "model": "engineersdecor:block/slab/specific/rebar_concrete_slab_s2v3_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -11,4 +11,4 @@
|
|||
{ "model": "engineersdecor:block/concrete/rebar_concrete_tile_model7" }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,40 +1,16 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v0_model"
|
||||
},
|
||||
"parts=0,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v1_model"
|
||||
},
|
||||
"parts=0,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v2_model"
|
||||
},
|
||||
"parts=0,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v3_model"
|
||||
},
|
||||
"parts=1,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v0_model"
|
||||
},
|
||||
"parts=1,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v1_model"
|
||||
},
|
||||
"parts=1,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v2_model"
|
||||
},
|
||||
"parts=1,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v3_model"
|
||||
},
|
||||
"parts=2,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v0_model"
|
||||
},
|
||||
"parts=2,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v1_model"
|
||||
},
|
||||
"parts=2,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v2_model"
|
||||
},
|
||||
"parts=2,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v3_model"
|
||||
}
|
||||
"parts=0,tvariant=0": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v0_model" },
|
||||
"parts=0,tvariant=1": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v1_model" },
|
||||
"parts=0,tvariant=2": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v2_model" },
|
||||
"parts=0,tvariant=3": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s0v3_model" },
|
||||
"parts=1,tvariant=0": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v0_model" },
|
||||
"parts=1,tvariant=1": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v1_model" },
|
||||
"parts=1,tvariant=2": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v2_model" },
|
||||
"parts=1,tvariant=3": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s1v3_model" },
|
||||
"parts=2,tvariant=0": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v0_model" },
|
||||
"parts=2,tvariant=1": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v1_model" },
|
||||
"parts=2,tvariant=2": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v2_model" },
|
||||
"parts=2,tvariant=3": { "model": "engineersdecor:block/slab/specific/rebar_concrete_tile_slab_s2v3_model" }
|
||||
}
|
||||
}
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/concrete/rebar_concrete_tile_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
{ "when": { "south": "true" }, "apply": { "model": "engineersdecor:block/concrete/rebar_concrete_wall_side", "y": 180, "uvlock": true } },
|
||||
{ "when": { "west": "true" }, "apply": { "model": "engineersdecor:block/concrete/rebar_concrete_wall_side", "y": 270, "uvlock": true } }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/sign/sign_danger_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":180}, "south":{"y":0}, "west":{"y":90}, "east":{"y":270}, "up": {"x":0}, "down": {"x":0} }
|
||||
"facing=north": { "model": "engineersdecor:block/sign/sign_danger_model", "y":180 },
|
||||
"facing=south": { "model": "engineersdecor:block/sign/sign_danger_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/sign/sign_danger_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/sign/sign_danger_model", "y":270 },
|
||||
"facing=up": { "model": "engineersdecor:block/sign/sign_danger_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/sign/sign_danger_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/sign/sign_decor_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":180}, "south":{"y":0}, "west":{"y":90}, "east":{"y":270}, "up": {"x":0}, "down": {"x":0} }
|
||||
"facing=north": { "model": "engineersdecor:block/sign/sign_decor_model", "y":180 },
|
||||
"facing=south": { "model": "engineersdecor:block/sign/sign_decor_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/sign/sign_decor_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/sign/sign_decor_model", "y":270 },
|
||||
"facing=up": { "model": "engineersdecor:block/sign/sign_decor_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/sign/sign_decor_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/sign/sign_defense_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":180}, "south":{"y":0}, "west":{"y":90}, "east":{"y":270}, "up": {"x":0}, "down": {"x":0} }
|
||||
"facing=north": { "model": "engineersdecor:block/sign/sign_defense_model", "y":180 },
|
||||
"facing=south": { "model": "engineersdecor:block/sign/sign_defense_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/sign/sign_defense_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/sign/sign_defense_model", "y":270 },
|
||||
"facing=up": { "model": "engineersdecor:block/sign/sign_defense_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/sign/sign_defense_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/sign/sign_exit_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":180}, "south":{"y":0}, "west":{"y":90}, "east":{"y":270}, "up": {"x":0}, "down": {"x":0} }
|
||||
"facing=north": { "model": "engineersdecor:block/sign/sign_exit_model", "y":180 },
|
||||
"facing=south": { "model": "engineersdecor:block/sign/sign_exit_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/sign/sign_exit_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/sign/sign_exit_model", "y":270 },
|
||||
"facing=up": { "model": "engineersdecor:block/sign/sign_exit_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/sign/sign_exit_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/sign/sign_factoryarea_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":180}, "south":{"y":0}, "west":{"y":90}, "east":{"y":270}, "up": {"x":0}, "down": {"x":0} }
|
||||
"facing=north": { "model": "engineersdecor:block/sign/sign_factoryarea_model", "y":180 },
|
||||
"facing=south": { "model": "engineersdecor:block/sign/sign_factoryarea_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/sign/sign_factoryarea_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/sign/sign_factoryarea_model", "y":270 },
|
||||
"facing=up": { "model": "engineersdecor:block/sign/sign_factoryarea_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/sign/sign_factoryarea_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/sign/sign_hotwire_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":180}, "south":{"y":0}, "west":{"y":90}, "east":{"y":270}, "up": {"x":0}, "down": {"x":0} }
|
||||
"facing=north": { "model": "engineersdecor:block/sign/sign_hotwire_model", "y":180 },
|
||||
"facing=south": { "model": "engineersdecor:block/sign/sign_hotwire_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/sign/sign_hotwire_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/sign/sign_hotwire_model", "y":270 },
|
||||
"facing=up": { "model": "engineersdecor:block/sign/sign_hotwire_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/sign/sign_hotwire_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/sign/sign_mindstep_model" },
|
||||
"variants": {
|
||||
"facing": { "north":{"y":180}, "south":{"y":0}, "west":{"y":90}, "east":{"y":270}, "up": {"x":0}, "down": {"x":0} }
|
||||
"facing=north": { "model": "engineersdecor:block/sign/sign_mindstep_model", "y":180 },
|
||||
"facing=south": { "model": "engineersdecor:block/sign/sign_mindstep_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/sign/sign_mindstep_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/sign/sign_mindstep_model", "y":270 },
|
||||
"facing=up": { "model": "engineersdecor:block/sign/sign_mindstep_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/sign/sign_mindstep_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,40 +1,16 @@
|
|||
{
|
||||
"variants": {
|
||||
"parts=0,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v0_model"
|
||||
},
|
||||
"parts=0,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v1_model"
|
||||
},
|
||||
"parts=0,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v2_model"
|
||||
},
|
||||
"parts=0,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v3_model"
|
||||
},
|
||||
"parts=1,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v0_model"
|
||||
},
|
||||
"parts=1,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v1_model"
|
||||
},
|
||||
"parts=1,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v2_model"
|
||||
},
|
||||
"parts=1,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v3_model"
|
||||
},
|
||||
"parts=2,tvariant=0": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v0_model"
|
||||
},
|
||||
"parts=2,tvariant=1": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v1_model"
|
||||
},
|
||||
"parts=2,tvariant=2": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v2_model"
|
||||
},
|
||||
"parts=2,tvariant=3": {
|
||||
"model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v3_model"
|
||||
}
|
||||
"parts=0,tvariant=0": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v0_model" },
|
||||
"parts=0,tvariant=1": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v1_model" },
|
||||
"parts=0,tvariant=2": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v2_model" },
|
||||
"parts=0,tvariant=3": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s0v3_model" },
|
||||
"parts=1,tvariant=0": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v0_model" },
|
||||
"parts=1,tvariant=1": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v1_model" },
|
||||
"parts=1,tvariant=2": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v2_model" },
|
||||
"parts=1,tvariant=3": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s1v3_model" },
|
||||
"parts=2,tvariant=0": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v0_model" },
|
||||
"parts=2,tvariant=1": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v1_model" },
|
||||
"parts=2,tvariant=2": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v2_model" },
|
||||
"parts=2,tvariant=3": { "model": "engineersdecor:block/slab/specific/slag_brick_slab_s2v3_model" }
|
||||
}
|
||||
}
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
"facing=east,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "engineersdecor:block/brick/slag_brick_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_outer", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "engineersdecor:block/brick/slag_brick_stairs_inner", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/device/small_block_breaker_model"
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90} },
|
||||
"active": { "true":{ "model": "engineersdecor:block/device/small_block_breaker_model_active" }, "false":{}}
|
||||
"active=false,facing=north": { "model": "engineersdecor:block/device/small_block_breaker_model" },
|
||||
"active=false,facing=south": { "model": "engineersdecor:block/device/small_block_breaker_model", "y":180 },
|
||||
"active=false,facing=west": { "model": "engineersdecor:block/device/small_block_breaker_model", "y":270 },
|
||||
"active=false,facing=east": { "model": "engineersdecor:block/device/small_block_breaker_model", "y":90 },
|
||||
"active=true,facing=north": { "model": "engineersdecor:block/device/small_block_breaker_model_active" },
|
||||
"active=true,facing=south": { "model": "engineersdecor:block/device/small_block_breaker_model_active", "y":180 },
|
||||
"active=true,facing=west": { "model": "engineersdecor:block/device/small_block_breaker_model_active", "y":270 },
|
||||
"active=true,facing=east": { "model": "engineersdecor:block/device/small_block_breaker_model_active", "y":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,12 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/device/small_fluid_funnel_model_s0" },
|
||||
"variants": {
|
||||
"level": {
|
||||
"0":{},
|
||||
"1":{"model": "engineersdecor:block/device/small_fluid_funnel_model_s1"},
|
||||
"2":{"model": "engineersdecor:block/device/small_fluid_funnel_model_s2"},
|
||||
"3":{"model": "engineersdecor:block/device/small_fluid_funnel_model_s3"}
|
||||
}
|
||||
"level=0": { "model": "engineersdecor:block/device/small_fluid_funnel_model_s0" },
|
||||
"level=1": { "model": "engineersdecor:block/device/small_fluid_funnel_model_s1" },
|
||||
"level=2": { "model": "engineersdecor:block/device/small_fluid_funnel_model_s2" },
|
||||
"level=3": { "model": "engineersdecor:block/device/small_fluid_funnel_model_s3" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -4,17 +4,14 @@
|
|||
"active=false,facing=south,filled=false": { "model": "engineersdecor:block/device/small_milking_machine_model", "y": 180 },
|
||||
"active=false,facing=west,filled=false": { "model": "engineersdecor:block/device/small_milking_machine_model", "y": 270 },
|
||||
"active=false,facing=east,filled=false": { "model": "engineersdecor:block/device/small_milking_machine_model", "y": 90 },
|
||||
|
||||
"active=true,facing=north,filled=false": { "model": "engineersdecor:block/device/small_milking_machine_model_active", "y": 0 },
|
||||
"active=true,facing=south,filled=false": { "model": "engineersdecor:block/device/small_milking_machine_model_active", "y": 180 },
|
||||
"active=true,facing=west,filled=false": { "model": "engineersdecor:block/device/small_milking_machine_model_active", "y": 270 },
|
||||
"active=true,facing=east,filled=false": { "model": "engineersdecor:block/device/small_milking_machine_model_active", "y": 90 },
|
||||
|
||||
"active=false,facing=north,filled=true": { "model": "engineersdecor:block/device/small_milking_machine_model_filled", "y": 0 },
|
||||
"active=false,facing=south,filled=true": { "model": "engineersdecor:block/device/small_milking_machine_model_filled", "y": 180 },
|
||||
"active=false,facing=west,filled=true": { "model": "engineersdecor:block/device/small_milking_machine_model_filled", "y": 270 },
|
||||
"active=false,facing=east,filled=true": { "model": "engineersdecor:block/device/small_milking_machine_model_filled", "y": 90 },
|
||||
|
||||
"active=true,facing=north,filled=true": { "model": "engineersdecor:block/device/small_milking_machine_model_filled_active", "y": 0 },
|
||||
"active=true,facing=south,filled=true": { "model": "engineersdecor:block/device/small_milking_machine_model_filled_active", "y": 180 },
|
||||
"active=true,facing=west,filled=true": { "model": "engineersdecor:block/device/small_milking_machine_model_filled_active", "y": 270 },
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/device/small_tree_cutter_model" },
|
||||
"variants": {
|
||||
"facing": { "north": {"y":0}, "south": {"y":180}, "west": {"y":-90}, "east": {"y":90} },
|
||||
"active": { "true":{ "model": "engineersdecor:block/device/small_tree_cutter_model_active" }, "false":{}}
|
||||
"active=false,facing=north": { "model": "engineersdecor:block/device/small_tree_cutter_model" },
|
||||
"active=false,facing=south": { "model": "engineersdecor:block/device/small_tree_cutter_model", "y":180 },
|
||||
"active=false,facing=west": { "model": "engineersdecor:block/device/small_tree_cutter_model", "y":270 },
|
||||
"active=false,facing=east": { "model": "engineersdecor:block/device/small_tree_cutter_model", "y":90 },
|
||||
"active=true,facing=north": { "model": "engineersdecor:block/device/small_tree_cutter_model_active" },
|
||||
"active=true,facing=south": { "model": "engineersdecor:block/device/small_tree_cutter_model_active", "y":180 },
|
||||
"active=true,facing=west": { "model": "engineersdecor:block/device/small_tree_cutter_model_active", "y":270 },
|
||||
"active=true,facing=east": { "model": "engineersdecor:block/device/small_tree_cutter_model_active", "y":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/furniture/steel_floor_grating_model" },
|
||||
"variants": {
|
||||
"": [{}]
|
||||
}
|
||||
}
|
||||
{ "variants": { "": { "model": "engineersdecor:block/furniture/steel_floor_grating_model" } } }
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/furniture/steel_framed_window_model"
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north": {"y":0}, "south": {"y":0}, "west": {"y":90}, "east": {"y":90}, "up": {"x":90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/furniture/steel_framed_window_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/furniture/steel_framed_window_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/furniture/steel_framed_window_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/furniture/steel_framed_window_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/furniture/steel_framed_window_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/furniture/steel_framed_window_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/furniture/steel_table_model" },
|
||||
"variants": {
|
||||
"": [{}]
|
||||
}
|
||||
}
|
||||
{ "variants": { "": { "model": "engineersdecor:block/furniture/steel_table_model" } } }
|
|
@ -1,14 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/pole/straight_thick_metal_pole_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thick_steel_pole_top_texture"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north": {"y":180}, "south": {"y":0}, "west": {"y":90}, "east": {"y":270}, "up": {"x":90}, "down": {"x":270}}
|
||||
"facing=north": { "model": "engineersdecor:block/pole/thick_steel_pole_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/pole/thick_steel_pole_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/pole/thick_steel_pole_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/pole/thick_steel_pole_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/pole/thick_steel_pole_model", "x":90 },
|
||||
"facing=down": { "model": "engineersdecor:block/pole/thick_steel_pole_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,15 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/pole/straight_thick_metal_pole_head_model",
|
||||
"x":-90,
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thick_steel_pole_top_texture"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/pole/thick_steel_pole_head_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/pole/thick_steel_pole_head_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/pole/thick_steel_pole_head_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/pole/thick_steel_pole_head_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/pole/thick_steel_pole_head_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/pole/thick_steel_pole_head_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,14 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/pole/straight_thin_metal_pole_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thin_steel_pole_top_texture"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north": {"y":180}, "south": {"y":0}, "west": {"y":90}, "east": {"y":270}, "up": {"x":90}, "down": {"x":270}}
|
||||
"facing=north": { "model": "engineersdecor:block/pole/thin_steel_pole_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/pole/thin_steel_pole_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/pole/thin_steel_pole_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/pole/thin_steel_pole_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/pole/thin_steel_pole_model", "x":90 },
|
||||
"facing=down": { "model": "engineersdecor:block/pole/thin_steel_pole_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,15 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/pole/straight_thin_metal_pole_head_model",
|
||||
"x":-90,
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thin_steel_pole_top_texture"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/pole/thin_steel_pole_head_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/pole/thin_steel_pole_head_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/pole/thin_steel_pole_head_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/pole/thin_steel_pole_head_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/pole/thin_steel_pole_head_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/pole/thin_steel_pole_head_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_broad_model" },
|
||||
"variants": {
|
||||
"facing": { "north": {"y":0}, "south": {"y":180}, "west": {"y":-90}, "east": {"y":90}, "up":{}, "down":{} }
|
||||
"facing=north": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_broad_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_broad_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_broad_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_broad_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_broad_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_broad_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/crafting_table/treated_wood_crafting_table_model" },
|
||||
"variants": {
|
||||
"facing": { "north": {"y":0}, "south": {"y":180}, "west": {"y":-90}, "east": {"y":90}, "up":{}, "down":{} }
|
||||
"facing=north": { "model": "engineersdecor:block/crafting_table/treated_wood_crafting_table_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/crafting_table/treated_wood_crafting_table_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/crafting_table/treated_wood_crafting_table_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/crafting_table/treated_wood_crafting_table_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/crafting_table/treated_wood_crafting_table_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/crafting_table/treated_wood_crafting_table_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,14 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/pole/straight_pole_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/treated_wood_pole_top_texture"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north": {"y":180}, "south": {"y":0}, "west": {"y":90}, "east": {"y":270}, "up": {"x":90}, "down": {"x":270}}
|
||||
"facing=north": { "model": "engineersdecor:block/pole/treated_wood_pole_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/pole/treated_wood_pole_model" },
|
||||
"facing=west": { "model": "engineersdecor:block/pole/treated_wood_pole_model", "y":90 },
|
||||
"facing=east": { "model": "engineersdecor:block/pole/treated_wood_pole_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/pole/treated_wood_pole_model", "x":90 },
|
||||
"facing=down": { "model": "engineersdecor:block/pole/treated_wood_pole_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,15 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/pole/straight_pole_head_model",
|
||||
"x":-90,
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/treated_wood_pole_top_texture"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/pole/treated_wood_pole_head_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/pole/treated_wood_pole_head_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/pole/treated_wood_pole_head_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/pole/treated_wood_pole_head_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/pole/treated_wood_pole_head_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/pole/treated_wood_pole_head_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,15 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/pole/straight_pole_support_model",
|
||||
"x":-90,
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/treated_wood_pole_top_texture"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north":{"y":0}, "south":{"y":180}, "west":{"y":270}, "east":{"y":90}, "up": {"x":-90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/pole/treated_wood_pole_support_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/pole/treated_wood_pole_support_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/pole/treated_wood_pole_support_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/pole/treated_wood_pole_support_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/pole/treated_wood_pole_support_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/pole/treated_wood_pole_support_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +1 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/furniture/treated_wood_side_table_model"
|
||||
},
|
||||
"variants": {
|
||||
"": [{}]
|
||||
}
|
||||
}
|
||||
{ "variants": { "": { "model": "engineersdecor:block/furniture/treated_wood_side_table_model" } } }
|
|
@ -1,5 +1 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/furniture/treated_wood_stool_model" },
|
||||
"variants": { "": [{}] }
|
||||
}
|
||||
{ "variants": { "": { "model": "engineersdecor:block/furniture/treated_wood_stool_model" } } }
|
|
@ -1,5 +1 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/furniture/treated_wood_table_model" },
|
||||
"variants": { "": [{}] }
|
||||
}
|
||||
{ "variants": { "": { "model": "engineersdecor:block/furniture/treated_wood_table_model" } } }
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:block/furniture/treated_wood_window_model"
|
||||
},
|
||||
"variants": {
|
||||
"facing": { "north": {"y":0}, "south": {"y":0}, "west": {"y":90}, "east": {"y":90}, "up": {"x":90}, "down": {"x":90} }
|
||||
"facing=north": { "model": "engineersdecor:block/furniture/treated_wood_window_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/furniture/treated_wood_window_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/furniture/treated_wood_window_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/furniture/treated_wood_window_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/furniture/treated_wood_window_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/furniture/treated_wood_window_model", "x":90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_model" },
|
||||
"variants": {
|
||||
"facing": { "north": {"y":0}, "south": {"y":180}, "west": {"y":-90}, "east": {"y":90}, "up":{}, "down":{} }
|
||||
"facing=north": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_model" },
|
||||
"facing=down": { "model": "engineersdecor:block/furniture/treated_wood_windowsill_model" }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/pole/straight_thick_metal_pole_head_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thick_steel_pole_top_texture"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/pole/straight_thick_metal_pole_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thick_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thick_steel_pole_top_texture"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/pole/straight_thin_metal_pole_head_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thin_steel_pole_top_texture"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/pole/straight_thin_metal_pole_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/thin_steel_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/thin_steel_pole_top_texture"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/pole/straight_pole_head_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/treated_wood_pole_top_texture"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/pole/straight_pole_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/treated_wood_pole_top_texture"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/pole/straight_pole_support_model",
|
||||
"textures": {
|
||||
"particle": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"side": "engineersdecor:block/pole/treated_wood_pole_side_texture",
|
||||
"top": "engineersdecor:block/pole/treated_wood_pole_top_texture"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue