Misc minor fixes & cost balance

This commit is contained in:
Anuken
2022-10-21 17:24:10 -04:00
parent a137a9a1da
commit 52b1372324
3 changed files with 14 additions and 4 deletions

View File

@@ -2543,7 +2543,7 @@ public class Blocks{
fluxReactor = new VariableReactor("flux-reactor"){{
requirements(Category.power, with(Items.graphite, 300, Items.carbide, 200, Items.oxide, 100, Items.silicon, 600, Items.surgeAlloy, 300));
powerProduction = 120f;
maxHeat = 150f;
maxHeat = 140f;
consumeLiquid(Liquids.cyanogen, 9f / 60f);
liquidCapacity = 30f;
@@ -2934,7 +2934,7 @@ public class Blocks{
}};
coreCitadel = new CoreBlock("core-citadel"){{
requirements(Category.effect, with(Items.silicon, 4000, Items.beryllium, 5000, Items.tungsten, 3000, Items.oxide, 1000));
requirements(Category.effect, with(Items.silicon, 4000, Items.beryllium, 4000, Items.tungsten, 3000, Items.oxide, 1000));
unitType = UnitTypes.incite;
health = 16000;

View File

@@ -3055,7 +3055,6 @@ public class UnitTypes{
trailWidth = 2f;
trailLength = 4;
shake = 1f;
recoil = 0.1f;
trailEffect = Fx.missileTrail;
trailParam = 1.8f;
@@ -3093,6 +3092,7 @@ public class UnitTypes{
recoil = 0.5f;
bullet = new BulletType(){{
shootSound = Sounds.lasershoot;
shootEffect = Fx.sparkShoot;
hitEffect = Fx.pointHit;
maxRange = 100f;