Additional pyratite balancing

This commit is contained in:
Anuken
2020-07-17 15:25:17 -04:00
parent 54e5d6a302
commit d02268d347
4 changed files with 6 additions and 6 deletions

View File

@@ -1131,14 +1131,14 @@ public class Blocks implements ContentList{
differentialGenerator = new SingleTypeGenerator("differential-generator"){{ differentialGenerator = new SingleTypeGenerator("differential-generator"){{
requirements(Category.power, with(Items.copper, 70, Items.titanium, 50, Items.lead, 100, Items.silicon, 65, Items.metaglass, 50)); requirements(Category.power, with(Items.copper, 70, Items.titanium, 50, Items.lead, 100, Items.silicon, 65, Items.metaglass, 50));
powerProduction = 16f; powerProduction = 17f;
itemDuration = 140f; itemDuration = 200f;
hasLiquids = true; hasLiquids = true;
hasItems = true; hasItems = true;
size = 3; size = 3;
consumes.item(Items.pyratite).optional(true, false); consumes.item(Items.pyratite).optional(true, false);
consumes.liquid(Liquids.cryofluid, 0.15f); consumes.liquid(Liquids.cryofluid, 0.14f);
}}; }};
rtgGenerator = new DecayGenerator("rtg-generator"){{ rtgGenerator = new DecayGenerator("rtg-generator"){{

View File

@@ -84,7 +84,7 @@ public class Items implements ContentList{
}}; }};
pyratite = new Item("pyratite", Color.valueOf("ffaa5f")){{ pyratite = new Item("pyratite", Color.valueOf("ffaa5f")){{
flammability = 1.4f; flammability = 1.5f;
explosiveness = 0.4f; explosiveness = 0.4f;
}}; }};
} }

View File

@@ -17,7 +17,7 @@ public class StatusEffects implements ContentList{
none = new StatusEffect("none"); none = new StatusEffect("none");
burning = new StatusEffect("burning"){{ burning = new StatusEffect("burning"){{
damage = 0.075f; damage = 0.08f; //over 10 seconds, this would be 48 damage
effect = Fx.burning; effect = Fx.burning;
init(() -> { init(() -> {

View File

@@ -410,7 +410,7 @@ public class JoinDialog extends BaseDialog{
} }
float targetWidth(){ float targetWidth(){
return Math.min(Core.graphics.getWidth() / Scl.scl() * 0.9f, 500f);//Core.graphics.isPortrait() ? 350f : 500f; return Math.min(Core.graphics.getWidth() / Scl.scl() * 0.9f, 500f);
} }
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")