Misc cleanup

This commit is contained in:
Anuken
2021-02-17 09:15:17 -05:00
parent 080fe8c3c4
commit 00342ddaae
5 changed files with 21 additions and 6 deletions

View File

@@ -30,12 +30,17 @@ public class NuclearReactor extends PowerGenerator{
public Color lightColor = Color.valueOf("7f19ea");
public Color coolColor = new Color(1, 1, 1, 0f);
public Color hotColor = Color.valueOf("ff9575a3");
public float itemDuration = 120; //time to consume 1 fuel
public float heating = 0.01f; //heating per frame * fullness
public float smokeThreshold = 0.3f; //threshold at which block starts smoking
/** ticks to consume 1 fuel */
public float itemDuration = 120;
/** heating per frame * fullness */
public float heating = 0.01f;
/** threshold at which block starts smoking */
public float smokeThreshold = 0.3f;
/** heat threshold at which lights start flashing */
public float flashThreshold = 0.46f;
public int explosionRadius = 19;
public int explosionDamage = 1250;
public float flashThreshold = 0.46f; //heat threshold at which the lights start flashing
/** heat removed per unit of coolant */
public float coolantPower = 0.5f;
public @Load("@-top") TextureRegion topRegion;