mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-09 20:29:06 +07:00
Additional pyratite balancing
This commit is contained in:
parent
54e5d6a302
commit
d02268d347
@ -1131,14 +1131,14 @@ public class Blocks implements ContentList{
|
||||
|
||||
differentialGenerator = new SingleTypeGenerator("differential-generator"){{
|
||||
requirements(Category.power, with(Items.copper, 70, Items.titanium, 50, Items.lead, 100, Items.silicon, 65, Items.metaglass, 50));
|
||||
powerProduction = 16f;
|
||||
itemDuration = 140f;
|
||||
powerProduction = 17f;
|
||||
itemDuration = 200f;
|
||||
hasLiquids = true;
|
||||
hasItems = true;
|
||||
size = 3;
|
||||
|
||||
consumes.item(Items.pyratite).optional(true, false);
|
||||
consumes.liquid(Liquids.cryofluid, 0.15f);
|
||||
consumes.liquid(Liquids.cryofluid, 0.14f);
|
||||
}};
|
||||
|
||||
rtgGenerator = new DecayGenerator("rtg-generator"){{
|
||||
|
@ -84,7 +84,7 @@ public class Items implements ContentList{
|
||||
}};
|
||||
|
||||
pyratite = new Item("pyratite", Color.valueOf("ffaa5f")){{
|
||||
flammability = 1.4f;
|
||||
flammability = 1.5f;
|
||||
explosiveness = 0.4f;
|
||||
}};
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ public class StatusEffects implements ContentList{
|
||||
none = new StatusEffect("none");
|
||||
|
||||
burning = new StatusEffect("burning"){{
|
||||
damage = 0.075f;
|
||||
damage = 0.08f; //over 10 seconds, this would be 48 damage
|
||||
effect = Fx.burning;
|
||||
|
||||
init(() -> {
|
||||
|
@ -410,7 +410,7 @@ public class JoinDialog extends BaseDialog{
|
||||
}
|
||||
|
||||
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")
|
||||
|
Loading…
Reference in New Issue
Block a user