Vent condenser resprite

This commit is contained in:
Anuken
2021-12-09 18:02:45 -05:00
parent f582462177
commit 3bd4cc8e81
11 changed files with 8 additions and 7 deletions

View File

@@ -1073,6 +1073,7 @@ public class Blocks{
requirements(Category.crafting, with(Items.tungsten, 30, Items.graphite, 30));
drawer = new DrawMulti(new DrawHeatOutput(true));
rotateDraw = false;
drawer.iconOverride = new String[]{""};
size = 2;
heatOutput = 2f;
@@ -2015,7 +2016,7 @@ public class Blocks{
spinSpeed = 0.6f;
spinners = true;
hasLiquids = true;
outputLiquid = new LiquidStack(Liquids.water, 10f / 60f / 9f);
outputLiquid = new LiquidStack(Liquids.water, 5f / 60f / 9f);
liquidCapacity = 20f;
}};
@@ -2189,11 +2190,9 @@ public class Blocks{
baseEfficiency = 0f;
displayEfficiency = false;
craftEffect = Fx.turbinegenerate;
drawer = new DrawMulti(new DrawBlock(), new DrawBlurSpin("-rotator"){{
rotateSpeed = 6f;
}});
ignoreLiquidFullness = true;
craftTime = 50f;
drawer = new DrawMulti(new DrawRegion("-bottom"), new DrawBlurSpin("-rotator", 6f), new DrawRegion("-mid"), new DrawLiquidTile(Liquids.water, 38f / 4f), new DrawBlock());
drawer.iconOverride = new String[]{"-bottom", "-rotator", ""};
craftTime = 120f;
size = 3;
ambientSound = Sounds.hum;
ambientSoundVolume = 0.06f;

View File

@@ -72,6 +72,7 @@ public class AttributeCrafter extends GenericCrafter{
@Override
public void pickedUp(){
attrsum = 0f;
warmup = 0f;
}
@Override

View File

@@ -14,8 +14,9 @@ public class DrawBlurSpin extends DrawBlock{
public String suffix = "";
public float rotateSpeed = 1f, x, y, blurThresh = 0.7f;
public DrawBlurSpin(String suffix){
public DrawBlurSpin(String suffix, float speed){
this.suffix = suffix;
rotateSpeed = speed;
}
public DrawBlurSpin(){