Space 'puddles'

This commit is contained in:
Anuken
2021-08-20 11:42:27 -04:00
parent e5c77ef69a
commit 8f389665a1
4 changed files with 79 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ public class Bullets implements ContentList{
standardDenseBig, standardThoriumBig, standardIncendiaryBig,
//liquid
waterShot, cryoShot, slagShot, oilShot, heavyWaterShot, heavyCryoShot, heavySlagShot, heavyOilShot,
waterShot, cryoShot, slagShot, oilShot, heavyWaterShot, heavyCryoShot, heavySlagShot, heavyOilShot, spaceLiquid,
//environment, misc.
damageLightning, damageLightningGround, fireball, basicFlame, pyraFlame;
@@ -476,5 +476,10 @@ public class Bullets implements ContentList{
statusDuration = 60f * 4f;
damage = 0.2f;
}};
spaceLiquid = new SpaceLiquidBulletType(){{
knockback = 0.7f;
drag = 0.01f;
}};
}
}

View File

@@ -32,6 +32,8 @@ public class Liquids implements ContentList{
heatCapacity = 0.7f;
barColor = Color.valueOf("6b675f");
effect = StatusEffects.tarred;
boilPoint = 0.65f;
gasColor = Color.grays(0.4f);
}};
cryofluid = new Liquid("cryofluid", Color.valueOf("6ecdec")){{