Now with 50% less json file, and fixes

This commit is contained in:
modmuss50 2016-04-25 11:10:06 +01:00
parent 61c7815f3b
commit eca6144c66
93 changed files with 2406 additions and 1877 deletions

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "%MODEL%"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "%OFF_TEXTURE%"
}
},
"normal":[{"model": "%MODEL%"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "%ON_TEXTURE%"
}
},
"false":{
"textures": {
"front": "%OFF_TEXTURE%"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"%SIDE_TEXTURE%",
"top":"%TOP_TEXTURE%",
"side":"%SIDE_TEXTURE%"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"%OFF_TEXTURE%"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"%ON_TEXTURE%"
}
},
"false":{
"textures":{
"front":"%OFF_TEXTURE%"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "%SIDE_TEXTURE%",
"top": "%TOP_TEXTURE%",
"side": "%SIDE_TEXTURE%",
"front": "%OFF_TEXTURE%"
}
}
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "%SIDE_TEXTURE%",
"top": "%TOP_TEXTURE%",
"front": "%OFF_TEXTURE%",
"side": "%SIDE_TEXTURE%"
}
}

View file

@ -62,8 +62,7 @@ public class Core
public VersionChecker versionChecker;
@Mod.EventHandler
public void preinit(FMLPreInitializationEvent event)
{
public void preinit(FMLPreInitializationEvent event) throws IllegalAccessException, InstantiationException {
event.getModMetadata().version = ModInfo.MOD_VERSION;
INSTANCE = this;
FMLCommonHandler.instance().bus().register(this);
@ -87,6 +86,13 @@ public class Core
{
compatModule.preInit(event);
}
// Register ModBlocks
ModBlocks.init();
// Register Fluids
ModFluids.init();
// Register ModItems
ModItems.init();
// Entitys
EntityRegistry.registerModEntity(EntityNukePrimed.class, "nuke", 0, INSTANCE, 160, 5, true);
proxy.preInit(event);
@ -94,19 +100,12 @@ public class Core
RecipeConfigManager.load(event.getModConfigurationDirectory());
versionChecker = new VersionChecker("TechReborn", new ModInfo());
versionChecker.checkVersionThreaded();
logHelper.info("PreInitialization Complete");
}
@Mod.EventHandler
public void init(FMLInitializationEvent event) throws IllegalAccessException, InstantiationException
{
// Register ModBlocks
ModBlocks.init();
// Register Fluids
ModFluids.init();
// Register ModItems
ModItems.init();
// Registers Chest Loot
ModLoot.init();
// Multiparts

View file

@ -57,8 +57,6 @@ public class JsonGenerator {
}
File machineBaseFile = new File(baseJsonFiles, "machineBase.json");
String machineBase = Files.toString(machineBaseFile, Charsets.UTF_8);
File machineModelBaseFile = new File(baseJsonFiles, "machineModelBase.json");
String machineModelBase = Files.toString(machineModelBaseFile, Charsets.UTF_8);
for(Object object : RebornCore.jsonDestroyer.objectsToDestroy){
if(object instanceof BlockMachineBase){
BlockMachineBase base = (BlockMachineBase) object;
@ -68,9 +66,10 @@ public class JsonGenerator {
state.delete();
}
String output = machineBase;
output = output.replaceAll("%MODEL%", "techreborn:" + base.getUnlocalizedName());
output = output.replaceAll("%OFF_TEXTURE%", base.getTextureNameFromState(base.getDefaultState(), EnumFacing.NORTH));
output = output.replaceAll("%ON_TEXTURE%", base.getTextureNameFromState(base.getDefaultState().withProperty(BlockMachineBase.ACTIVE, true), EnumFacing.NORTH));
output = output.replaceAll("%SIDE_TEXTURE%", base.getTextureNameFromState(base.getDefaultState(), EnumFacing.EAST));
output = output.replaceAll("%TOP_TEXTURE%", base.getTextureNameFromState(base.getDefaultState(), EnumFacing.UP));
try {
FileOutputStream is = new FileOutputStream(state);
OutputStreamWriter osw = new OutputStreamWriter(is);
@ -80,26 +79,6 @@ public class JsonGenerator {
} catch (IOException e) {
e.printStackTrace();
}
File model = new File(blockModels, base.getUnlocalizedName() + ".json");
if(model.exists()){
model.delete();
}
String modelOutput = machineModelBase;
modelOutput = modelOutput.replaceAll("%MODEL%", base.getUnlocalizedName() );
modelOutput = modelOutput.replaceAll("%OFF_TEXTURE%", base.getTextureNameFromState(base.getDefaultState(), EnumFacing.NORTH));
modelOutput = modelOutput.replaceAll("%ON_TEXTURE%", base.getTextureNameFromState(base.getDefaultState().withProperty(BlockMachineBase.ACTIVE, true), EnumFacing.NORTH));
modelOutput = modelOutput.replaceAll("%SIDE_TEXTURE%", base.getTextureNameFromState(base.getDefaultState(), EnumFacing.EAST));
modelOutput = modelOutput.replaceAll("%TOP_TEXTURE%", base.getTextureNameFromState(base.getDefaultState(), EnumFacing.UP));
try {
FileOutputStream is = new FileOutputStream(model);
OutputStreamWriter osw = new OutputStreamWriter(is);
Writer w = new BufferedWriter(osw);
w.write(modelOutput);
w.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

View file

@ -1,14 +1,24 @@
package techreborn.proxies;
import net.minecraft.client.renderer.ItemMeshDefinition;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.client.renderer.entity.Render;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.Util;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.client.registry.ClientRegistry;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import net.minecraftforge.fml.client.registry.RenderingRegistry;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.registry.GameData;
import reborncore.RebornCore;
import reborncore.client.multiblock.MultiblockRenderEvent;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.client.ClientMultiBlocks;
import techreborn.client.IconSupplier;
import techreborn.client.RegisterItemJsons;
@ -44,6 +54,13 @@ public class ClientProxy extends CommonProxy
e.printStackTrace();
}
}).start();
for(Object object : RebornCore.jsonDestroyer.objectsToDestroy) {
if (object instanceof BlockMachineBase) {
BlockMachineBase base = (BlockMachineBase) object;
registerItemModel(Item.getItemFromBlock(base));
}
}
}
@Override
@ -60,6 +77,45 @@ public class ClientProxy extends CommonProxy
// TODO FIX ME
ClientRegistry.registerKeyBinding(KeyBindings.config);
ClientMultiBlocks.init();
}
protected void registerItemModel(ItemStack item, String name) {
// tell Minecraft which textures it has to load. This is resource-domain sensitive
ModelLoader.registerItemVariants(item.getItem(), new ResourceLocation(name));
// tell the game which model to use for this item-meta combination
ModelLoader.setCustomModelResourceLocation(item.getItem(), item
.getMetadata(), new ModelResourceLocation(name, "inventory"));
}
public ResourceLocation registerItemModel(Item item) {
ResourceLocation itemLocation = getItemLocation(item);
if(itemLocation == null) {
return null;
}
return registerIt(item, itemLocation);
}
public static ResourceLocation getItemLocation(Item item) {
Object o = GameData.getItemRegistry().getNameForObject(item);
if(o == null) {
return null;
}
return (ResourceLocation) o;
}
private static ResourceLocation registerIt(Item item, final ResourceLocation location) {
ModelLoader.setCustomMeshDefinition(item, new ItemMeshDefinition() {
@Override
public ModelResourceLocation getModelLocation(ItemStack stack) {
return new ModelResourceLocation(location, "inventory");
}
});
ModelLoader.registerItemVariants(item, location);
return location;
}
public class RenderManagerNuke implements IRenderFactory<EntityNukePrimed>

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.alloysmelter"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.alloysmelter"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top":"techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side":"techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"front": "techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.alloyfurnace"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/iron_machines/alloy_furnace_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.alloyfurnace"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/iron_machines/alloy_furnace_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/iron_machines/alloy_furnace_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/iron_machines/iron_machine_side",
"top":"techreborn:blocks/machine/iron_machines/iron_machine_top",
"side":"techreborn:blocks/machine/iron_machines/iron_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/iron_machines/alloy_furnace_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/iron_machines/alloy_furnace_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/iron_machines/alloy_furnace_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/iron_machines/iron_machine_side",
"top": "techreborn:blocks/machine/iron_machines/iron_machine_top",
"side": "techreborn:blocks/machine/iron_machines/iron_machine_side",
"front": "techreborn:blocks/machine/iron_machines/alloy_furnace_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.assemblingmachine"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/assembling_machine_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.assemblingmachine"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/assembling_machine_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/assembling_machine_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/machine_side",
"top":"techreborn:blocks/machine/greg_machines/machine_top",
"side":"techreborn:blocks/machine/greg_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/assembling_machine_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/assembling_machine_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/assembling_machine_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"side": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/assembling_machine_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.blastfurnace"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.blastfurnace"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top":"techreborn:blocks/machine/advanced_machines/advanced_machine_top",
"side":"techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/advanced_machine_top",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"front": "techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.chargebench"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/chargeBench_side"
}
},
"normal":[{"model": "techreborn:tile.techreborn.chargebench"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/chargeBench_side"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/chargeBench_side"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/chargeBench_side",
"top":"techreborn:blocks/machine/greg_machines/chargeBench_side",
"side":"techreborn:blocks/machine/greg_machines/chargeBench_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/chargeBench_side"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/chargeBench_side"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/chargeBench_side"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/chargeBench_side",
"top": "techreborn:blocks/machine/greg_machines/chargeBench_side",
"side": "techreborn:blocks/machine/greg_machines/chargeBench_side",
"front": "techreborn:blocks/machine/greg_machines/chargeBench_side"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.chemicalreactor"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/chemical_reactor_side_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.chemicalreactor"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/chemical_reactor_side_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/chemical_reactor_side_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/machine_side",
"top":"techreborn:blocks/machine/greg_machines/machine_top",
"side":"techreborn:blocks/machine/greg_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/chemical_reactor_side_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/chemical_reactor_side_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/chemical_reactor_side_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"side": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/chemical_reactor_side_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.chunkloader"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
},
"normal":[{"model": "techreborn:tile.techreborn.chunkloader"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side",
"top":"techreborn:blocks/machine/greg_machines/machine_top",
"side":"techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"side": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side",
"front": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.computercube"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/computer_cube"
}
},
"normal":[{"model": "techreborn:tile.techreborn.computercube"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/computer_cube"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/computer_cube"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/computer_cube",
"top":"techreborn:blocks/machine/greg_machines/computer_cube",
"side":"techreborn:blocks/machine/greg_machines/computer_cube"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/computer_cube"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/computer_cube"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/computer_cube"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/computer_cube",
"top": "techreborn:blocks/machine/greg_machines/computer_cube",
"side": "techreborn:blocks/machine/greg_machines/computer_cube",
"front": "techreborn:blocks/machine/greg_machines/computer_cube"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.dieselgenerator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
},
"normal":[{"model": "techreborn:tile.techreborn.dieselgenerator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/generator_machine_side",
"top":"techreborn:blocks/machine/generators/diesel_generator_top_off",
"side":"techreborn:blocks/machine/generators/generator_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/generator_machine_side"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/generator_machine_side"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/generator_machine_side"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/generator_machine_side",
"top": "techreborn:blocks/machine/generators/diesel_generator_top_off",
"side": "techreborn:blocks/machine/generators/generator_machine_side",
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.distillationtower"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/distillation_tower_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.distillationtower"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/distillation_tower_front_off"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/distillation_tower_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"side":"techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/distillation_tower_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/distillation_tower_front_off"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/distillation_tower_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"front": "techreborn:blocks/machine/advanced_machines/distillation_tower_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.dragoneggsiphoner"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.dragoneggsiphoner"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off",
"top":"techreborn:blocks/machine/generators/dragon_egg_energy_siphon_top",
"side":"techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off",
"top": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_top",
"side": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off",
"front": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.electriccraftingtable"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/electric_crafting_table_front"
}
},
"normal":[{"model": "techreborn:tile.techreborn.electriccraftingtable"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/electric_crafting_table_front"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/electric_crafting_table_front"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/machine_side",
"top":"techreborn:blocks/machine/greg_machines/electric_crafting_table_top",
"side":"techreborn:blocks/machine/greg_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/electric_crafting_table_front"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/electric_crafting_table_front"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/electric_crafting_table_front"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/electric_crafting_table_top",
"side": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/electric_crafting_table_front"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.fusioncoil"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/fusion_coil"
}
},
"normal":[{"model": "techreborn:tile.techreborn.fusioncoil"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/fusion_coil"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/fusion_coil"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/fusion_coil",
"top":"techreborn:blocks/machine/greg_machines/fusion_coil",
"side":"techreborn:blocks/machine/greg_machines/fusion_coil"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/fusion_coil"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/fusion_coil"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/fusion_coil"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/fusion_coil",
"top": "techreborn:blocks/machine/greg_machines/fusion_coil",
"side": "techreborn:blocks/machine/greg_machines/fusion_coil",
"front": "techreborn:blocks/machine/greg_machines/fusion_coil"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.fusioncontrolcomputer"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/fusion_control_computer_front"
}
},
"normal":[{"model": "techreborn:tile.techreborn.fusioncontrolcomputer"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/fusion_control_computer_front"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/fusion_control_computer_front"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/machine_side",
"top":"techreborn:blocks/machine/greg_machines/machine_side",
"side":"techreborn:blocks/machine/greg_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/fusion_control_computer_front"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/fusion_control_computer_front"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/fusion_control_computer_front"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_side",
"side": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/fusion_control_computer_front"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.gasTurbine"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
},
"normal":[{"model": "techreborn:tile.techreborn.gasTurbine"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/generator_machine_side",
"top":"techreborn:blocks/machine/generators/gas_generator_top",
"side":"techreborn:blocks/machine/generators/generator_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/generator_machine_side"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/generator_machine_side"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/generator_machine_side"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/generator_machine_side",
"top": "techreborn:blocks/machine/generators/gas_generator_top",
"side": "techreborn:blocks/machine/generators/generator_machine_side",
"front": "techreborn:blocks/machine/generators/generator_machine_side"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.industrialgrinder"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_grinder_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.industrialgrinder"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_grinder_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_grinder_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/advanced_machines/machine_side",
"top":"techreborn:blocks/machine/advanced_machines/industrial_grinder_top_off",
"side":"techreborn:blocks/machine/advanced_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_grinder_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_grinder_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_grinder_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/machine_side",
"top": "techreborn:blocks/machine/advanced_machines/industrial_grinder_top_off",
"side": "techreborn:blocks/machine/advanced_machines/machine_side",
"front": "techreborn:blocks/machine/advanced_machines/industrial_grinder_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.heatgenerator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/heat_generator_side"
}
},
"normal":[{"model": "techreborn:tile.techreborn.heatgenerator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/heat_generator_side"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/heat_generator_side"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/heat_generator_side",
"top":"techreborn:blocks/machine/generators/heat_generator_top",
"side":"techreborn:blocks/machine/generators/heat_generator_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/heat_generator_side"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/heat_generator_side"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/heat_generator_side"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/heat_generator_side",
"top": "techreborn:blocks/machine/generators/heat_generator_top",
"side": "techreborn:blocks/machine/generators/heat_generator_side",
"front": "techreborn:blocks/machine/generators/heat_generator_side"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.implosioncompressor"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/implosion_compressor_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.implosioncompressor"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/implosion_compressor_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/implosion_compressor_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"side":"techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/implosion_compressor_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/implosion_compressor_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/implosion_compressor_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"front": "techreborn:blocks/machine/advanced_machines/implosion_compressor_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.industrialsawmill"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.industrialsawmill"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top":"techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"side":"techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"front": "techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.industrialelectrolyzer"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.industrialelectrolyzer"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off",
"top":"techreborn:blocks/machine/advanced_machines/machine_top",
"side":"techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off",
"top": "techreborn:blocks/machine/advanced_machines/machine_top",
"side": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off",
"front": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.ironfurnace"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/iron_machines/iron_furnace_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.ironfurnace"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/iron_machines/iron_furnace_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/iron_machines/iron_furnace_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/iron_machines/iron_machine_side",
"top":"techreborn:blocks/machine/iron_machines/iron_machine_top",
"side":"techreborn:blocks/machine/iron_machines/iron_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/iron_machines/iron_furnace_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/iron_machines/iron_furnace_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/iron_machines/iron_furnace_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/iron_machines/iron_machine_side",
"top": "techreborn:blocks/machine/iron_machines/iron_machine_top",
"side": "techreborn:blocks/machine/iron_machines/iron_machine_side",
"front": "techreborn:blocks/machine/iron_machines/iron_furnace_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.lesustorage"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/storage/lesu_block"
}
},
"normal":[{"model": "techreborn:tile.techreborn.lesustorage"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/storage/lesu_block"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/storage/lesu_block"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/storage/lesu_block",
"top":"techreborn:blocks/machine/storage/lesu_block",
"side":"techreborn:blocks/machine/storage/lesu_block"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/storage/lesu_block"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/storage/lesu_block"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/storage/lesu_block"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/storage/lesu_block",
"top": "techreborn:blocks/machine/storage/lesu_block",
"side": "techreborn:blocks/machine/storage/lesu_block",
"front": "techreborn:blocks/machine/storage/lesu_block"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.lightningrod"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/lightning_rod_side_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.lightningrod"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/lightning_rod_side_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/lightning_rod_side_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/lightning_rod_side_off",
"top":"techreborn:blocks/machine/generators/lightning_rod_top_off",
"side":"techreborn:blocks/machine/generators/lightning_rod_side_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/lightning_rod_side_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/lightning_rod_side_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/lightning_rod_side_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/lightning_rod_side_off",
"top": "techreborn:blocks/machine/generators/lightning_rod_top_off",
"side": "techreborn:blocks/machine/generators/lightning_rod_side_off",
"front": "techreborn:blocks/machine/generators/lightning_rod_side_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.magicenergyconverter"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/magic_energy_converter_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.magicenergyconverter"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/magic_energy_converter_front_off"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/magic_energy_converter_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/magic_energy_converter_side",
"top":"techreborn:blocks/machine/generators/magic_energy_converter_top",
"side":"techreborn:blocks/machine/generators/magic_energy_converter_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/magic_energy_converter_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/magic_energy_converter_front_off"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/magic_energy_converter_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/magic_energy_converter_side",
"top": "techreborn:blocks/machine/generators/magic_energy_converter_top",
"side": "techreborn:blocks/machine/generators/magic_energy_converter_side",
"front": "techreborn:blocks/machine/generators/magic_energy_converter_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.magicenergyabsorber"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
},
"normal":[{"model": "techreborn:tile.techreborn.magicenergyabsorber"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/magic_energy_absorber_side",
"top":"techreborn:blocks/machine/generators/magic_energy_absorber_top",
"side":"techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/magic_energy_absorber_side",
"top": "techreborn:blocks/machine/generators/magic_energy_absorber_top",
"side": "techreborn:blocks/machine/generators/magic_energy_absorber_side",
"front": "techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.matterfabricator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/matter_fabricator_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.matterfabricator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/matter_fabricator_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/matter_fabricator_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"top":"techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"side":"techreborn:blocks/machine/greg_machines/matter_fabricator_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/matter_fabricator_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/matter_fabricator_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/matter_fabricator_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"top": "techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"side": "techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"front": "techreborn:blocks/machine/greg_machines/matter_fabricator_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.plasmagenerator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/plasma_generator_front"
}
},
"normal":[{"model": "techreborn:tile.techreborn.plasmagenerator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/plasma_generator_front"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/plasma_generator_front"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/plasma_generator_side_off",
"top":"techreborn:blocks/machine/generators/plasma_generator_side_off",
"side":"techreborn:blocks/machine/generators/plasma_generator_side_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/plasma_generator_front"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/plasma_generator_front"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/plasma_generator_front"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/plasma_generator_side_off",
"top": "techreborn:blocks/machine/generators/plasma_generator_side_off",
"side": "techreborn:blocks/machine/generators/plasma_generator_side_off",
"front": "techreborn:blocks/machine/generators/plasma_generator_front"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.playerDetector"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/player_detector_all"
}
},
"normal":[{"model": "techreborn:tile.techreborn.playerDetector"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/player_detector_all"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/player_detector_all"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/player_detector_all",
"top":"techreborn:blocks/machine/greg_machines/player_detector_all",
"side":"techreborn:blocks/machine/greg_machines/player_detector_all"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/player_detector_all"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/player_detector_all"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/player_detector_all"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/player_detector_all",
"top": "techreborn:blocks/machine/greg_machines/player_detector_all",
"side": "techreborn:blocks/machine/greg_machines/player_detector_all",
"front": "techreborn:blocks/machine/greg_machines/player_detector_all"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.recycler"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/recycler_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.recycler"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/recycler_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/recycler_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top":"techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side":"techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/recycler_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/recycler_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/recycler_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"front": "techreborn:blocks/machine/tier1_machines/recycler_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.rollingmachine"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/rolling_machine_side_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.rollingmachine"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/rolling_machine_side_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/rolling_machine_side_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/machine_side",
"top":"techreborn:blocks/machine/greg_machines/machine_top",
"side":"techreborn:blocks/machine/greg_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/rolling_machine_side_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/rolling_machine_side_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/rolling_machine_side_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"side": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/rolling_machine_side_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.scrapboxinator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/scrapboxinator_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.scrapboxinator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/scrapboxinator_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/scrapboxinator_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/machine_side",
"top":"techreborn:blocks/machine/greg_machines/machine_top",
"side":"techreborn:blocks/machine/greg_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/scrapboxinator_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/scrapboxinator_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/scrapboxinator_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"side": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/scrapboxinator_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.semifluidgenerator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/semifluid_generator_side"
}
},
"normal":[{"model": "techreborn:tile.techreborn.semifluidgenerator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/semifluid_generator_side"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/semifluid_generator_side"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/semifluid_generator_side",
"top":"techreborn:blocks/machine/generators/generator_machine_top",
"side":"techreborn:blocks/machine/generators/semifluid_generator_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/semifluid_generator_side"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/semifluid_generator_side"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/semifluid_generator_side"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/semifluid_generator_side",
"top": "techreborn:blocks/machine/generators/generator_machine_top",
"side": "techreborn:blocks/machine/generators/semifluid_generator_side",
"front": "techreborn:blocks/machine/generators/semifluid_generator_side"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.supercondensator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/supercondensator_front"
}
},
"normal":[{"model": "techreborn:tile.techreborn.supercondensator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/supercondensator_front"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/supercondensator_front"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/supercondensator_side",
"top":"techreborn:blocks/machine/greg_machines/supercondensator_side",
"side":"techreborn:blocks/machine/greg_machines/supercondensator_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/supercondensator_front"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/supercondensator_front"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/supercondensator_front"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/supercondensator_side",
"top": "techreborn:blocks/machine/greg_machines/supercondensator_side",
"side": "techreborn:blocks/machine/greg_machines/supercondensator_side",
"front": "techreborn:blocks/machine/greg_machines/supercondensator_front"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.centrifuge"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.centrifuge"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off",
"top":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"side":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off",
"top": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"side": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off",
"front": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.compressor"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/compressor_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.compressor"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/compressor_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/compressor_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top":"techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side":"techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/compressor_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/compressor_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/compressor_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"front": "techreborn:blocks/machine/tier1_machines/compressor_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.digitalChest"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"normal":[{"model": "techreborn:tile.techreborn.digitalChest"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/qchest_side",
"top":"techreborn:blocks/machine/greg_machines/quantum_top",
"side":"techreborn:blocks/machine/greg_machines/qchest_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/quantum_chest"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/qchest_side",
"top": "techreborn:blocks/machine/greg_machines/quantum_top",
"side": "techreborn:blocks/machine/greg_machines/qchest_side",
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.electricfurnace"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/electric_furnace_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.electricfurnace"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/electric_furnace_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/electric_furnace_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top":"techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side":"techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/electric_furnace_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/electric_furnace_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/electric_furnace_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"front": "techreborn:blocks/machine/tier1_machines/electric_furnace_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.extractor"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/extractor_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.extractor"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/extractor_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/extractor_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top":"techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side":"techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/extractor_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/extractor_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/extractor_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"front": "techreborn:blocks/machine/tier1_machines/extractor_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.generator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/generator_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.generator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/generator_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/generator_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/generator_machine_side",
"top":"techreborn:blocks/machine/generators/generator_machine_top",
"side":"techreborn:blocks/machine/generators/generator_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/generator_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/generator_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/generator_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/generator_machine_side",
"top": "techreborn:blocks/machine/generators/generator_machine_top",
"side": "techreborn:blocks/machine/generators/generator_machine_side",
"front": "techreborn:blocks/machine/generators/generator_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.grinder"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/grinder_front_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.grinder"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/grinder_front_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/tier1_machines/grinder_front_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top":"techreborn:blocks/machine/tier1_machines/grinder_top_off",
"side":"techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/grinder_front_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/grinder_front_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/tier1_machines/grinder_front_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/grinder_top_off",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"front": "techreborn:blocks/machine/tier1_machines/grinder_front_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.quantumChest"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"normal":[{"model": "techreborn:tile.techreborn.quantumChest"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/qchest_side",
"top":"techreborn:blocks/machine/greg_machines/quantum_top",
"side":"techreborn:blocks/machine/greg_machines/qchest_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/quantum_chest"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/quantum_chest"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/qchest_side",
"top": "techreborn:blocks/machine/greg_machines/quantum_top",
"side": "techreborn:blocks/machine/greg_machines/qchest_side",
"front": "techreborn:blocks/machine/greg_machines/quantum_chest"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.quantumTank"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.quantumTank"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/thermal_generator_side_off",
"top":"techreborn:blocks/machine/greg_machines/quantum_top",
"side":"techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/thermal_generator_side_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/thermal_generator_side_off"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"top": "techreborn:blocks/machine/greg_machines/quantum_top",
"side": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.thermalGenerator"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
},
"normal":[{"model": "techreborn:tile.techreborn.thermalGenerator"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/generators/thermal_generator_side_on"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/generators/thermal_generator_side_off",
"top":"techreborn:blocks/machine/generators/thermal_generator_top_off",
"side":"techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/generators/thermal_generator_side_off"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/generators/thermal_generator_side_on"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"top": "techreborn:blocks/machine/generators/thermal_generator_top_off",
"side": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}
}
}

View file

@ -1,35 +1,55 @@
{
"forge_marker": 1,
"defaults": {
"model": "techreborn:tile.techreborn.vacuumfreezer"
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
"front": "techreborn:blocks/machine/greg_machines/vacuum_freezer_front"
}
},
"normal":[{"model": "techreborn:tile.techreborn.vacuumfreezer"}],
"facing":{
"north": {},
"east": {"y": 90},
"south": {"y": 180},
"west": {"y": 270}
},
"active":{
"true":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/vacuum_freezer_front"
}
},
"false":{
"textures": {
"front": "techreborn:blocks/machine/greg_machines/vacuum_freezer_front"
}
"forge_marker":1,
"defaults":{
"transform":"forge:default-block",
"model":"orientable",
"textures":{
"particle":"techreborn:blocks/machine/greg_machines/machine_side",
"top":"techreborn:blocks/machine/greg_machines/vacuum_freezer_top",
"side":"techreborn:blocks/machine/greg_machines/machine_side"
}
}
}
},
"variants":{
"inventory":{
"transform":"forge:default-block",
"textures":{
"front":"techreborn:blocks/machine/greg_machines/vacuum_freezer_front"
}
},
"facing":{
"north":{
},
"east":{
"y":90
},
"south":{
"y":180
},
"west":{
"y":270
}
},
"active":{
"true":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/vacuum_freezer_front"
}
},
"false":{
"textures":{
"front":"techreborn:blocks/machine/greg_machines/vacuum_freezer_front"
}
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/vacuum_freezer_top",
"side": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/vacuum_freezer_front"
}
}
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/iron_machines/iron_machine_side",
"top": "techreborn:blocks/machine/iron_machines/iron_machine_top",
"front": "techreborn:blocks/machine/iron_machines/alloy_furnace_front_off",
"side": "techreborn:blocks/machine/iron_machines/iron_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"front": "techreborn:blocks/machine/tier1_machines/electric_alloy_furnace_front_off",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"front": "techreborn:blocks/machine/greg_machines/assembling_machine_front_off",
"side": "techreborn:blocks/machine/greg_machines/machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/advanced_machine_top",
"front": "techreborn:blocks/machine/advanced_machines/industrial_blast_furnace_front_off",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off",
"top": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"front": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off",
"side": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_side_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/chargeBench_side",
"top": "techreborn:blocks/machine/greg_machines/chargeBench_side",
"front": "techreborn:blocks/machine/greg_machines/chargeBench_side",
"side": "techreborn:blocks/machine/greg_machines/chargeBench_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"front": "techreborn:blocks/machine/greg_machines/chemical_reactor_side_off",
"side": "techreborn:blocks/machine/greg_machines/machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"front": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side",
"side": "techreborn:blocks/machine/greg_machines/industrial_chunk_loader_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"front": "techreborn:blocks/machine/tier1_machines/compressor_front_off",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/computer_cube",
"top": "techreborn:blocks/machine/greg_machines/computer_cube",
"front": "techreborn:blocks/machine/greg_machines/computer_cube",
"side": "techreborn:blocks/machine/greg_machines/computer_cube"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/generator_machine_side",
"top": "techreborn:blocks/machine/generators/diesel_generator_top_off",
"front": "techreborn:blocks/machine/generators/generator_machine_side",
"side": "techreborn:blocks/machine/generators/generator_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/qchest_side",
"top": "techreborn:blocks/machine/greg_machines/quantum_top",
"front": "techreborn:blocks/machine/greg_machines/quantum_chest",
"side": "techreborn:blocks/machine/greg_machines/qchest_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"front": "techreborn:blocks/machine/advanced_machines/distillation_tower_front_off",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off",
"top": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_top",
"front": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off",
"side": "techreborn:blocks/machine/generators/dragon_egg_energy_siphon_side_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/electric_crafting_table_top",
"front": "techreborn:blocks/machine/greg_machines/electric_crafting_table_front",
"side": "techreborn:blocks/machine/greg_machines/machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"front": "techreborn:blocks/machine/tier1_machines/electric_furnace_front_off",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"front": "techreborn:blocks/machine/tier1_machines/extractor_front_off",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/fusion_coil",
"top": "techreborn:blocks/machine/greg_machines/fusion_coil",
"front": "techreborn:blocks/machine/greg_machines/fusion_coil",
"side": "techreborn:blocks/machine/greg_machines/fusion_coil"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_side",
"front": "techreborn:blocks/machine/greg_machines/fusion_control_computer_front",
"side": "techreborn:blocks/machine/greg_machines/machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/generator_machine_side",
"top": "techreborn:blocks/machine/generators/gas_generator_top",
"front": "techreborn:blocks/machine/generators/generator_machine_side",
"side": "techreborn:blocks/machine/generators/generator_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/generator_machine_side",
"top": "techreborn:blocks/machine/generators/generator_machine_top",
"front": "techreborn:blocks/machine/generators/generator_front_off",
"side": "techreborn:blocks/machine/generators/generator_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/grinder_top_off",
"front": "techreborn:blocks/machine/tier1_machines/grinder_front_off",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/heat_generator_side",
"top": "techreborn:blocks/machine/generators/heat_generator_top",
"front": "techreborn:blocks/machine/generators/heat_generator_side",
"side": "techreborn:blocks/machine/generators/heat_generator_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/industrial_centrifuge_top_off",
"front": "techreborn:blocks/machine/advanced_machines/implosion_compressor_front_off",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off",
"top": "techreborn:blocks/machine/advanced_machines/machine_top",
"front": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off",
"side": "techreborn:blocks/machine/advanced_machines/industrial_electrolyzer_front_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/machine_side",
"top": "techreborn:blocks/machine/advanced_machines/industrial_grinder_top_off",
"front": "techreborn:blocks/machine/advanced_machines/industrial_grinder_front_off",
"side": "techreborn:blocks/machine/advanced_machines/machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"top": "techreborn:blocks/machine/advanced_machines/advanced_machine_side",
"front": "techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off",
"side": "techreborn:blocks/machine/advanced_machines/advanced_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/iron_machines/iron_machine_side",
"top": "techreborn:blocks/machine/iron_machines/iron_machine_top",
"front": "techreborn:blocks/machine/iron_machines/iron_furnace_front_off",
"side": "techreborn:blocks/machine/iron_machines/iron_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/storage/lesu_block",
"top": "techreborn:blocks/machine/storage/lesu_block",
"front": "techreborn:blocks/machine/storage/lesu_block",
"side": "techreborn:blocks/machine/storage/lesu_block"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/lightning_rod_side_off",
"top": "techreborn:blocks/machine/generators/lightning_rod_top_off",
"front": "techreborn:blocks/machine/generators/lightning_rod_side_off",
"side": "techreborn:blocks/machine/generators/lightning_rod_side_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/magic_energy_absorber_side",
"top": "techreborn:blocks/machine/generators/magic_energy_absorber_top",
"front": "techreborn:blocks/machine/generators/magic_energy_absorber_side",
"side": "techreborn:blocks/machine/generators/magic_energy_absorber_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/magic_energy_converter_side",
"top": "techreborn:blocks/machine/generators/magic_energy_converter_top",
"front": "techreborn:blocks/machine/generators/magic_energy_converter_front_off",
"side": "techreborn:blocks/machine/generators/magic_energy_converter_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"top": "techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"front": "techreborn:blocks/machine/greg_machines/matter_fabricator_off",
"side": "techreborn:blocks/machine/greg_machines/matter_fabricator_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/plasma_generator_side_off",
"top": "techreborn:blocks/machine/generators/plasma_generator_side_off",
"front": "techreborn:blocks/machine/generators/plasma_generator_front",
"side": "techreborn:blocks/machine/generators/plasma_generator_side_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/player_detector_all",
"top": "techreborn:blocks/machine/greg_machines/player_detector_all",
"front": "techreborn:blocks/machine/greg_machines/player_detector_all",
"side": "techreborn:blocks/machine/greg_machines/player_detector_all"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/qchest_side",
"top": "techreborn:blocks/machine/greg_machines/quantum_top",
"front": "techreborn:blocks/machine/greg_machines/quantum_chest",
"side": "techreborn:blocks/machine/greg_machines/qchest_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"top": "techreborn:blocks/machine/greg_machines/quantum_top",
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"side": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/tier1_machines/tier1_machine_side",
"top": "techreborn:blocks/machine/tier1_machines/tier1_machine_top",
"front": "techreborn:blocks/machine/tier1_machines/recycler_front_off",
"side": "techreborn:blocks/machine/tier1_machines/tier1_machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"front": "techreborn:blocks/machine/greg_machines/rolling_machine_side_off",
"side": "techreborn:blocks/machine/greg_machines/machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/machine_top",
"front": "techreborn:blocks/machine/greg_machines/scrapboxinator_front_off",
"side": "techreborn:blocks/machine/greg_machines/machine_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/semifluid_generator_side",
"top": "techreborn:blocks/machine/generators/generator_machine_top",
"front": "techreborn:blocks/machine/generators/semifluid_generator_side",
"side": "techreborn:blocks/machine/generators/semifluid_generator_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/supercondensator_side",
"top": "techreborn:blocks/machine/greg_machines/supercondensator_side",
"front": "techreborn:blocks/machine/greg_machines/supercondensator_front",
"side": "techreborn:blocks/machine/greg_machines/supercondensator_side"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"top": "techreborn:blocks/machine/generators/thermal_generator_top_off",
"front": "techreborn:blocks/machine/generators/thermal_generator_side_off",
"side": "techreborn:blocks/machine/generators/thermal_generator_side_off"
}
}

View file

@ -1,9 +0,0 @@
{
"parent": "block/orientable",
"textures": {
"particle": "techreborn:blocks/machine/greg_machines/machine_side",
"top": "techreborn:blocks/machine/greg_machines/vacuum_freezer_top",
"front": "techreborn:blocks/machine/greg_machines/vacuum_freezer_front",
"side": "techreborn:blocks/machine/greg_machines/machine_side"
}
}