Tier3 machine models done.

This commit is contained in:
drcrazy 2019-04-09 15:04:05 +03:00
parent 04f4e51695
commit cd48daa152
57 changed files with 181 additions and 341 deletions

View file

@ -32,7 +32,7 @@ import reborncore.client.models.RebornModelRegistry;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.TechReborn;
import techreborn.client.EGui;
import techreborn.tiles.TileChunkLoader;
import techreborn.tiles.machine.tier3.TileChunkLoader;
public class BlockChunkLoader extends BlockMachineBase {

View file

@ -35,7 +35,7 @@ import reborncore.client.models.RebornModelRegistry;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.TechReborn;
import techreborn.client.EGui;
import techreborn.tiles.TileCreativeQuantumChest;
import techreborn.tiles.machine.tier3.TileCreativeQuantumChest;
public class BlockCreativeQuantumChest extends BlockMachineBase {

View file

@ -32,7 +32,7 @@ import reborncore.client.models.RebornModelRegistry;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.TechReborn;
import techreborn.client.EGui;
import techreborn.tiles.TileCreativeQuantumTank;
import techreborn.tiles.machine.tier3.TileCreativeQuantumTank;
public class BlockCreativeQuantumTank extends BlockMachineBase {

View file

@ -32,7 +32,7 @@ import reborncore.client.models.RebornModelRegistry;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.TechReborn;
import techreborn.client.EGui;
import techreborn.tiles.TileMatterFabricator;
import techreborn.tiles.machine.tier3.TileMatterFabricator;
public class BlockMatterFabricator extends BlockMachineBase {

View file

@ -32,7 +32,7 @@ import reborncore.client.models.RebornModelRegistry;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.TechReborn;
import techreborn.client.EGui;
import techreborn.tiles.TileQuantumChest;
import techreborn.tiles.machine.tier3.TileQuantumChest;
public class BlockQuantumChest extends BlockMachineBase {

View file

@ -32,7 +32,7 @@ import reborncore.client.models.RebornModelRegistry;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.TechReborn;
import techreborn.client.EGui;
import techreborn.tiles.TileQuantumTank;
import techreborn.tiles.machine.tier3.TileQuantumTank;
public class BlockQuantumTank extends BlockMachineBase {

View file

@ -57,6 +57,10 @@ import techreborn.tiles.machine.iron.TileIronAlloyFurnace;
import techreborn.tiles.machine.iron.TileIronFurnace;
import techreborn.tiles.machine.multiblock.*;
import techreborn.tiles.machine.tier1.*;
import techreborn.tiles.machine.tier3.TileChunkLoader;
import techreborn.tiles.machine.tier3.TileMatterFabricator;
import techreborn.tiles.machine.tier3.TileQuantumChest;
import techreborn.tiles.machine.tier3.TileQuantumTank;
import techreborn.tiles.storage.TileAdjustableSU;
import techreborn.tiles.storage.TileHighVoltageSU;
import techreborn.tiles.storage.TileLowVoltageSU;

View file

@ -44,6 +44,10 @@ import techreborn.tiles.machine.iron.TileIronAlloyFurnace;
import techreborn.tiles.machine.iron.TileIronFurnace;
import techreborn.tiles.machine.multiblock.*;
import techreborn.tiles.machine.tier1.*;
import techreborn.tiles.machine.tier3.TileChunkLoader;
import techreborn.tiles.machine.tier3.TileMatterFabricator;
import techreborn.tiles.machine.tier3.TileQuantumChest;
import techreborn.tiles.machine.tier3.TileQuantumTank;
import techreborn.tiles.storage.TileAdjustableSU;
import techreborn.tiles.storage.TileHighVoltageSU;
import techreborn.tiles.storage.TileLowVoltageSU;

View file

@ -31,7 +31,7 @@ import net.minecraft.client.resources.I18n;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
import reborncore.client.gui.builder.widget.GuiButtonSimple;
import techreborn.tiles.TileChunkLoader;
import techreborn.tiles.machine.tier3.TileChunkLoader;
public class GuiChunkLoader extends GuiContainer {

View file

@ -27,7 +27,7 @@ package techreborn.client.gui;
import net.minecraft.entity.player.EntityPlayer;
import reborncore.client.gui.builder.GuiBase;
import reborncore.client.gui.guibuilder.GuiBuilder;
import techreborn.tiles.TileMatterFabricator;
import techreborn.tiles.machine.tier3.TileMatterFabricator;
public class GuiMatterFabricator extends GuiBase {

View file

@ -26,7 +26,7 @@ package techreborn.client.gui;
import net.minecraft.entity.player.EntityPlayer;
import reborncore.client.gui.builder.GuiBase;
import techreborn.tiles.TileQuantumChest;
import techreborn.tiles.machine.tier3.TileQuantumChest;
public class GuiQuantumChest extends GuiBase {

View file

@ -27,7 +27,7 @@ package techreborn.client.gui;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.fluids.FluidStack;
import reborncore.client.gui.builder.GuiBase;
import techreborn.tiles.TileQuantumTank;
import techreborn.tiles.machine.tier3.TileQuantumTank;
public class GuiQuantumTank extends GuiBase {

View file

@ -44,6 +44,12 @@ import techreborn.tiles.machine.iron.TileIronAlloyFurnace;
import techreborn.tiles.machine.iron.TileIronFurnace;
import techreborn.tiles.machine.multiblock.*;
import techreborn.tiles.machine.tier1.*;
import techreborn.tiles.machine.tier3.TileChunkLoader;
import techreborn.tiles.machine.tier3.TileCreativeQuantumChest;
import techreborn.tiles.machine.tier3.TileCreativeQuantumTank;
import techreborn.tiles.machine.tier3.TileMatterFabricator;
import techreborn.tiles.machine.tier3.TileQuantumChest;
import techreborn.tiles.machine.tier3.TileQuantumTank;
import techreborn.tiles.storage.TileAdjustableSU;
import techreborn.tiles.storage.TileHighVoltageSU;
import techreborn.tiles.storage.TileLowVoltageSU;

View file

@ -22,7 +22,7 @@
* SOFTWARE.
*/
package techreborn.tiles;
package techreborn.tiles.machine.tier3;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;

View file

@ -22,7 +22,7 @@
* SOFTWARE.
*/
package techreborn.tiles;
package techreborn.tiles.machine.tier3;
import net.minecraft.item.ItemStack;
import techreborn.init.TRTileEntities;

View file

@ -22,7 +22,7 @@
* SOFTWARE.
*/
package techreborn.tiles;
package techreborn.tiles.machine.tier3;
import techreborn.init.TRTileEntities;

View file

@ -22,7 +22,7 @@
* SOFTWARE.
*/
package techreborn.tiles;
package techreborn.tiles.machine.tier3;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;

View file

@ -22,7 +22,7 @@
* SOFTWARE.
*/
package techreborn.tiles;
package techreborn.tiles.machine.tier3;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntityType;
@ -33,6 +33,7 @@ import reborncore.common.registration.RebornRegister;
import reborncore.common.registration.config.ConfigRegistry;
import techreborn.TechReborn;
import techreborn.init.TRTileEntities;
import techreborn.tiles.TileTechStorageBase;
@RebornRegister(TechReborn.MOD_ID)
public class TileQuantumChest extends TileTechStorageBase implements IContainerProvider {

View file

@ -22,7 +22,7 @@
* SOFTWARE.
*/
package techreborn.tiles;
package techreborn.tiles.machine.tier3;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/chunk_loader" }
}
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/creative_quantum_chest" }
}
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/creative_quantum_tank" }
}
}

View file

@ -0,0 +1,12 @@
{
"variants": {
"facing=north,active=false": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator" },
"facing=south,active=false": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator", "y": 180 },
"facing=west,active=false": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator", "y": 270 },
"facing=east,active=false": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator", "y": 90 },
"facing=north,active=true": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator_on" },
"facing=south,active=true": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator_on", "y": 180 },
"facing=west,active=true": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator_on", "y": 270 },
"facing=east,active=true": { "model": "techreborn:block/machines/tier3_machines/fluid_replicator_on", "y": 90 }
}
}

View file

@ -1,45 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/industrial_chunkloader_side",
"top": "techreborn:blocks/machines/tier3_machines/industrial_chunkloader_top",
"side": "techreborn:blocks/machines/tier3_machines/industrial_chunkloader_side",
"bottom": "techreborn:blocks/machines/tier3_machines/machine_bottom",
"front": "techreborn:blocks/machines/tier3_machines/industrial_chunkloader_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
}
},
"false": {
"textures": {
}
}
}
}
}

View file

@ -1,45 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/creative_quantum_chest_side",
"down": "techreborn:blocks/machines/tier3_machines/quantum_chest_bottom",
"top": "techreborn:blocks/machines/tier3_machines/quantum_chest_top",
"side": "techreborn:blocks/machines/tier3_machines/creative_quantum_chest_side",
"front": "techreborn:blocks/machines/tier3_machines/creative_quantum_chest_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
}
},
"false": {
"textures": {
}
}
}
}
}

View file

@ -1,45 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/creative_quantum_tank_side",
"down": "techreborn:blocks/machines/tier3_machines/quantum_tank_bottom",
"top": "techreborn:blocks/machines/tier3_machines/quantum_tank_top",
"side": "techreborn:blocks/machines/tier3_machines/creative_quantum_tank_side",
"front": "techreborn:blocks/machines/tier3_machines/creative_quantum_tank_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
}
},
"false": {
"textures": {
}
}
}
}
}

View file

@ -1,49 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_off",
"top": "techreborn:blocks/machines/tier3_machines/machine_top",
"down": "techreborn:blocks/machines/tier3_machines/machine_bottom",
"south": "techreborn:blocks/machines/tier3_machines/machine_back",
"west": "techreborn:blocks/machines/tier3_machines/machine_west",
"east": "techreborn:blocks/machines/tier3_machines/machine_east"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"front": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_off"
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
"front": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_on"
}
},
"false": {
"textures": {
"front": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_off"
}
}
}
}
}

View file

@ -1,51 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/mass_fabricator_side_off",
"down": "techreborn:blocks/machines/tier3_machines/mass_fabricator_bottom"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"top": "techreborn:blocks/machines/tier3_machines/mass_fabricator_top_off",
"side": "techreborn:blocks/machines/tier3_machines/mass_fabricator_side_off",
"front": "techreborn:blocks/machines/tier3_machines/mass_fabricator_side_off"
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
"top": "techreborn:blocks/machines/tier3_machines/mass_fabricator_top_on",
"side": "techreborn:blocks/machines/tier3_machines/mass_fabricator_side_on",
"front": "techreborn:blocks/machines/tier3_machines/mass_fabricator_side_on"
}
},
"false": {
"textures": {
"top": "techreborn:blocks/machines/tier3_machines/mass_fabricator_top_off",
"side": "techreborn:blocks/machines/tier3_machines/mass_fabricator_side_off",
"front": "techreborn:blocks/machines/tier3_machines/mass_fabricator_side_off"
}
}
}
}
}

View file

@ -1,45 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/quantum_chest_side",
"down": "techreborn:blocks/machines/tier3_machines/quantum_chest_bottom",
"top": "techreborn:blocks/machines/tier3_machines/quantum_chest_top",
"side": "techreborn:blocks/machines/tier3_machines/quantum_chest_side",
"front": "techreborn:blocks/machines/tier3_machines/quantum_chest_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
}
},
"false": {
"textures": {
}
}
}
}
}

View file

@ -1,45 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/quantum_tank_side",
"down": "techreborn:blocks/machines/tier3_machines/quantum_tank_bottom",
"top": "techreborn:blocks/machines/tier3_machines/quantum_tank_top",
"side": "techreborn:blocks/machines/tier3_machines/quantum_tank_side",
"front": "techreborn:blocks/machines/tier3_machines/quantum_tank_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
}
},
"false": {
"textures": {
}
}
}
}
}

View file

@ -0,0 +1,6 @@
{
"variants": {
"active=false": { "model": "techreborn:block/machines/tier3_machines/matter_fabricator" },
"active=true": { "model": "techreborn:block/machines/tier3_machines/matter_fabricator_on" }
}
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/quantum_chest" }
}
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/quantum_tank" }
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"top": "techreborn:block/machines/tier3_machines/chunk_loader_top",
"bottom": "techreborn:block/machines/tier3_machines/machine_bottom",
"side": "techreborn:block/machines/tier3_machines/chunk_loader_side"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"top": "techreborn:block/machines/tier3_machines/quantum_chest_top",
"bottom": "techreborn:block/machines/tier3_machines/quantum_chest_bottom",
"side": "techreborn:block/machines/tier3_machines/creative_quantum_chest_side"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"top": "techreborn:block/machines/tier3_machines/quantum_tank_top",
"bottom": "techreborn:block/machines/tier3_machines/quantum_tank_bottom",
"side": "techreborn:block/machines/tier3_machines/creative_quantum_tank_side"
}
}

View file

@ -0,0 +1,11 @@
{
"parent": "minecraft:block/orientable",
"textures": {
"up": "techreborn:block/machines/tier3_machines/machine_top",
"down": "techreborn:block/machines/tier3_machines/machine_bottom",
"west": "techreborn:block/machines/tier3_machines/machine_west",
"east": "techreborn:block/machines/tier3_machines/machine_east",
"south": "techreborn:block/machines/tier3_machines/machine_back",
"front": "techreborn:block/machines/tier3_machines/fluid_replicator_front_off"
}
}

View file

@ -0,0 +1,11 @@
{
"parent": "minecraft:block/orientable",
"textures": {
"up": "techreborn:block/machines/tier3_machines/machine_top",
"down": "techreborn:block/machines/tier3_machines/machine_bottom",
"west": "techreborn:block/machines/tier3_machines/machine_west",
"east": "techreborn:block/machines/tier3_machines/machine_east",
"south": "techreborn:block/machines/tier3_machines/machine_back",
"front": "techreborn:block/machines/tier3_machines/fluid_replicator_front_on"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"top": "techreborn:block/machines/tier3_machines/matter_fabricator_top_off",
"bottom": "techreborn:block/machines/tier3_machines/matter_fabricator_bottom",
"side": "techreborn:block/machines/tier3_machines/matter_fabricator_side_off"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"top": "techreborn:block/machines/tier3_machines/matter_fabricator_top_on",
"bottom": "techreborn:block/machines/tier3_machines/matter_fabricator_bottom",
"side": "techreborn:block/machines/tier3_machines/matter_fabricator_side_on"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"top": "techreborn:block/machines/tier3_machines/quantum_chest_top",
"bottom": "techreborn:block/machines/tier3_machines/quantum_chest_bottom",
"side": "techreborn:block/machines/tier3_machines/quantum_chest_side"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"top": "techreborn:block/machines/tier3_machines/quantum_tank_top",
"bottom": "techreborn:block/machines/tier3_machines/quantum_tank_bottom",
"side": "techreborn:block/machines/tier3_machines/quantum_tank_side"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/machines/tier3_machines/chunk_loader"
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/creative_quantum_chest" }
}
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/creative_quantum_tank" }
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/machines/tier3_machines/fluid_replicator"
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/machines/tier3_machines/matter_fabricator"
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/quantum_chest" }
}
}

View file

@ -0,0 +1,5 @@
{
"variants": {
"": { "model": "techreborn:block/machines/tier3_machines/quantum_tank" }
}
}