Solar panels flattened.
|
@ -153,6 +153,8 @@ public class TRContent {
|
|||
block = new BlockSolarPanel(this);
|
||||
this.generationRateD = generationRateD;
|
||||
this.generationRateN = generationRateN;
|
||||
// Buffer for 2 mins of work
|
||||
internalCapacity = generationRateD * 2_400;
|
||||
|
||||
InitUtils.setup(block, "solar_panel_" + name);
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ package techreborn.tiles.generator;
|
|||
import net.minecraft.block.Block;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.util.EnumFacing;
|
||||
import net.minecraft.util.text.TextFormatting;
|
||||
import reborncore.api.IToolDrop;
|
||||
|
@ -131,6 +132,15 @@ public class TileSolarPanel extends TilePowerAcceptor implements IToolDrop {
|
|||
+ StringUtils.toFirstCapitalAllLowercase(getTier().toString()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readFromNBT(NBTTagCompound tag) {
|
||||
if (world == null) {
|
||||
// We are in TileEntity.create method during chunk load.
|
||||
this.checkOverfill = false;
|
||||
}
|
||||
super.readFromNBT(tag);
|
||||
}
|
||||
|
||||
// TileMachineBase
|
||||
@Override
|
||||
public void onLoad() {
|
||||
|
@ -145,7 +155,6 @@ public class TileSolarPanel extends TilePowerAcceptor implements IToolDrop {
|
|||
// IToolDrop
|
||||
@Override
|
||||
public ItemStack getToolDrop(final EntityPlayer playerIn) {
|
||||
// return new ItemStack(ModBlocks.SOLAR_PANEL, 1, panel.ordinal());
|
||||
return null;
|
||||
return new ItemStack(getBlockType());
|
||||
}
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"transform": "forge:default-block",
|
||||
"model": "cube_bottom_top",
|
||||
"textures": {
|
||||
"particle": "techreborn:blocks/machines/generators/creative_panel_side",
|
||||
"top": "techreborn:blocks/machines/generators/creative_panel_top",
|
||||
"down": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/creative_panel_side"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"transform": "forge:default-block",
|
||||
"model": "cube_bottom_top",
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/creative_panel_side"
|
||||
}
|
||||
},
|
||||
"normal": {
|
||||
"transform": "forge:default-block",
|
||||
"model": "cube_bottom_top",
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/creative_panel_side"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"particle": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"down": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/solar_panel_side_off"
|
||||
},
|
||||
"transform": "forge:default-block",
|
||||
"model": "cube_bottom_top"
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"transform": "forge:default-block",
|
||||
"model": "orientable",
|
||||
"textures": {}
|
||||
},
|
||||
"active": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/solar_panel_side_on"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/solar_panel_side_off"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"basic": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/basicsolar_panel_top"
|
||||
}
|
||||
},
|
||||
"hybrid": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/hybridsolar_panel_top"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/advancedsolar_panel_top"
|
||||
}
|
||||
},
|
||||
"ultimate": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/ultimatesolar_panel_top"
|
||||
}
|
||||
},
|
||||
"quantum": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/quantumsolar_panel_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/advanced_solar_panel_top",
|
||||
"bottom": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
},
|
||||
"transform": "forge:default-block",
|
||||
"model": "minecraft:cube_bottom_top"
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"model": "minecraft:cube_bottom_top",
|
||||
"textures": {
|
||||
|
||||
}
|
||||
},
|
||||
"facing": {
|
||||
"north": {
|
||||
|
||||
},
|
||||
"east": {
|
||||
"y": 90
|
||||
},
|
||||
"south": {
|
||||
"y": 180
|
||||
},
|
||||
"west": {
|
||||
"y": 270
|
||||
}
|
||||
},
|
||||
"active": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_on"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/basic_solar_panel_top",
|
||||
"bottom": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
},
|
||||
"transform": "forge:default-block",
|
||||
"model": "minecraft:cube_bottom_top"
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"model": "minecraft:cube_bottom_top",
|
||||
"textures": {
|
||||
|
||||
}
|
||||
},
|
||||
"facing": {
|
||||
"north": {
|
||||
|
||||
},
|
||||
"east": {
|
||||
"y": 90
|
||||
},
|
||||
"south": {
|
||||
"y": 180
|
||||
},
|
||||
"west": {
|
||||
"y": 270
|
||||
}
|
||||
},
|
||||
"active": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_on"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/creative_panel_top",
|
||||
"bottom": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/panels/creative_panel_side"
|
||||
},
|
||||
"transform": "forge:default-block",
|
||||
"model": "minecraft:cube_bottom_top"
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"model": "minecraft:cube_bottom_top",
|
||||
"textures": {
|
||||
|
||||
}
|
||||
},
|
||||
"facing": {
|
||||
"north": {
|
||||
|
||||
},
|
||||
"east": {
|
||||
"y": 90
|
||||
},
|
||||
"south": {
|
||||
"y": 180
|
||||
},
|
||||
"west": {
|
||||
"y": 270
|
||||
}
|
||||
},
|
||||
"active": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/creative_panel_side"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/creative_panel_side"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/industrial_solar_panel_top",
|
||||
"bottom": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
},
|
||||
"transform": "forge:default-block",
|
||||
"model": "minecraft:cube_bottom_top"
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"model": "minecraft:cube_bottom_top",
|
||||
"textures": {
|
||||
|
||||
}
|
||||
},
|
||||
"facing": {
|
||||
"north": {
|
||||
|
||||
},
|
||||
"east": {
|
||||
"y": 90
|
||||
},
|
||||
"south": {
|
||||
"y": 180
|
||||
},
|
||||
"west": {
|
||||
"y": 270
|
||||
}
|
||||
},
|
||||
"active": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_on"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/quantum_solar_panel_top",
|
||||
"bottom": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
},
|
||||
"transform": "forge:default-block",
|
||||
"model": "minecraft:cube_bottom_top"
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"model": "minecraft:cube_bottom_top",
|
||||
"textures": {
|
||||
|
||||
}
|
||||
},
|
||||
"facing": {
|
||||
"north": {
|
||||
|
||||
},
|
||||
"east": {
|
||||
"y": 90
|
||||
},
|
||||
"south": {
|
||||
"y": 180
|
||||
},
|
||||
"west": {
|
||||
"y": 270
|
||||
}
|
||||
},
|
||||
"active": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_on"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"top": "techreborn:blocks/machines/generators/panels/ultimate_solar_panel_top",
|
||||
"bottom": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
},
|
||||
"transform": "forge:default-block",
|
||||
"model": "minecraft:cube_bottom_top"
|
||||
},
|
||||
"variants": {
|
||||
"inventory": {
|
||||
"model": "minecraft:cube_bottom_top",
|
||||
"textures": {
|
||||
|
||||
}
|
||||
},
|
||||
"facing": {
|
||||
"north": {
|
||||
|
||||
},
|
||||
"east": {
|
||||
"y": 90
|
||||
},
|
||||
"south": {
|
||||
"y": 180
|
||||
},
|
||||
"west": {
|
||||
"y": 270
|
||||
}
|
||||
},
|
||||
"active": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_on"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"side": "techreborn:blocks/machines/generators/panels/solar_panel_side_off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"transform": "forge:default-block",
|
||||
"model": "orientable",
|
||||
"textures": {
|
||||
"particle": "techreborn:blocks/machines/generators/solar_panel_side_off",
|
||||
"particle": "techreborn:blocks/machines/generators/panels/solar_panel_side_off",
|
||||
"west": "techreborn:blocks/machines/generators/wind_mill_left",
|
||||
"east": "techreborn:blocks/machines/generators/wind_mill_right",
|
||||
"south": "techreborn:blocks/machines/generators/generator_bottom",
|
||||
|
|
Before Width: | Height: | Size: 777 B After Width: | Height: | Size: 777 B |
Before Width: | Height: | Size: 813 B After Width: | Height: | Size: 813 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 787 B After Width: | Height: | Size: 787 B |
Before Width: | Height: | Size: 792 B After Width: | Height: | Size: 792 B |
Before Width: | Height: | Size: 638 B After Width: | Height: | Size: 638 B |
Before Width: | Height: | Size: 674 B After Width: | Height: | Size: 674 B |
Before Width: | Height: | Size: 813 B After Width: | Height: | Size: 813 B |
Before Width: | Height: | Size: 775 B After Width: | Height: | Size: 775 B |