Vent condenser resprite
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 246 B After Width: | Height: | Size: 246 B |
|
Before Width: | Height: | Size: 459 B After Width: | Height: | Size: 459 B |
|
Before Width: | Height: | Size: 465 B After Width: | Height: | Size: 465 B |
|
After Width: | Height: | Size: 2.0 KiB |
BIN
core/assets-raw/sprites/blocks/production/vent-condenser-mid.png
Normal file
|
After Width: | Height: | Size: 186 B |
|
Before Width: | Height: | Size: 825 B After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.6 KiB |
@@ -1073,6 +1073,7 @@ public class Blocks{
|
|||||||
requirements(Category.crafting, with(Items.tungsten, 30, Items.graphite, 30));
|
requirements(Category.crafting, with(Items.tungsten, 30, Items.graphite, 30));
|
||||||
|
|
||||||
drawer = new DrawMulti(new DrawHeatOutput(true));
|
drawer = new DrawMulti(new DrawHeatOutput(true));
|
||||||
|
rotateDraw = false;
|
||||||
drawer.iconOverride = new String[]{""};
|
drawer.iconOverride = new String[]{""};
|
||||||
size = 2;
|
size = 2;
|
||||||
heatOutput = 2f;
|
heatOutput = 2f;
|
||||||
@@ -2015,7 +2016,7 @@ public class Blocks{
|
|||||||
spinSpeed = 0.6f;
|
spinSpeed = 0.6f;
|
||||||
spinners = true;
|
spinners = true;
|
||||||
hasLiquids = true;
|
hasLiquids = true;
|
||||||
outputLiquid = new LiquidStack(Liquids.water, 10f / 60f / 9f);
|
outputLiquid = new LiquidStack(Liquids.water, 5f / 60f / 9f);
|
||||||
liquidCapacity = 20f;
|
liquidCapacity = 20f;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
@@ -2189,11 +2190,9 @@ public class Blocks{
|
|||||||
baseEfficiency = 0f;
|
baseEfficiency = 0f;
|
||||||
displayEfficiency = false;
|
displayEfficiency = false;
|
||||||
craftEffect = Fx.turbinegenerate;
|
craftEffect = Fx.turbinegenerate;
|
||||||
drawer = new DrawMulti(new DrawBlock(), new DrawBlurSpin("-rotator"){{
|
drawer = new DrawMulti(new DrawRegion("-bottom"), new DrawBlurSpin("-rotator", 6f), new DrawRegion("-mid"), new DrawLiquidTile(Liquids.water, 38f / 4f), new DrawBlock());
|
||||||
rotateSpeed = 6f;
|
drawer.iconOverride = new String[]{"-bottom", "-rotator", ""};
|
||||||
}});
|
craftTime = 120f;
|
||||||
ignoreLiquidFullness = true;
|
|
||||||
craftTime = 50f;
|
|
||||||
size = 3;
|
size = 3;
|
||||||
ambientSound = Sounds.hum;
|
ambientSound = Sounds.hum;
|
||||||
ambientSoundVolume = 0.06f;
|
ambientSoundVolume = 0.06f;
|
||||||
|
|||||||
@@ -72,6 +72,7 @@ public class AttributeCrafter extends GenericCrafter{
|
|||||||
@Override
|
@Override
|
||||||
public void pickedUp(){
|
public void pickedUp(){
|
||||||
attrsum = 0f;
|
attrsum = 0f;
|
||||||
|
warmup = 0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -14,8 +14,9 @@ public class DrawBlurSpin extends DrawBlock{
|
|||||||
public String suffix = "";
|
public String suffix = "";
|
||||||
public float rotateSpeed = 1f, x, y, blurThresh = 0.7f;
|
public float rotateSpeed = 1f, x, y, blurThresh = 0.7f;
|
||||||
|
|
||||||
public DrawBlurSpin(String suffix){
|
public DrawBlurSpin(String suffix, float speed){
|
||||||
this.suffix = suffix;
|
this.suffix = suffix;
|
||||||
|
rotateSpeed = speed;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DrawBlurSpin(){
|
public DrawBlurSpin(){
|
||||||
|
|||||||