Skip to content

Commit 6c29adb

Browse files
committed
Vanstar unit stuff
1 parent 1fef1c8 commit 6c29adb

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/exogenesis/content/ExoUnitTypes.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ public static void load() {
379379
layer = Layer.effect;
380380
y = 0f;
381381
color = ExoPal.empyrean;
382-
stroke = strokeTo = 2.5f;
383-
radiusTo = radius = 9f;
382+
stroke = strokeTo = 1.5f;
383+
radiusTo = radius = 7f;
384384
}},
385385
new HaloPart() {{
386386
y = 0f;
@@ -389,11 +389,11 @@ public static void load() {
389389
color = ExoPal.empyrean;
390390
layer = Layer.effect;
391391
haloRotateSpeed = -2.5f;
392-
haloRadius = haloRadiusTo = 8.5f;
392+
haloRadius = haloRadiusTo = 7.5f;
393393
stroke = 0f;
394394
strokeTo = 1.2f;
395395
shapes = 4;
396-
triLengthTo = triLength = 5f;
396+
triLengthTo = triLength = 3f;
397397
}}
398398
);
399399
homingPower = 0.07f;

src/exogenesis/content/ExoVanstarBlocks.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -731,28 +731,28 @@ public static void load(){
731731
coboltWall = new Wall("cobolt-wall"){{
732732
requirements(Category.defense, with(ExoItems.cobolt, 6));
733733
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
734-
health = 150;
734+
health = 180;
735735
researchCostMultiplier = 0.1f;
736736
}};
737737
largeCoboltWall = new Wall("large-cobolt-wall"){{
738738
requirements(Category.defense, ItemStack.mult(coboltWall.requirements, 4));
739739
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
740740
researchCostMultiplier = 0.25f;
741-
health = 150 * 4;
741+
health = 180 * 4;
742742
size = 2;
743743
}};
744744
oltuxiumWall = new Wall("oltuxium-wall"){{
745745
requirements(Category.defense, with(ExoItems.oltuxium, 6));
746746
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
747-
health = 130;
747+
health = 155;
748748
lightningChance = 0.2f;
749749
lightningColor = ExoPal.empyrean;
750750
researchCostMultiplier = 0.1f;
751751
}};
752752
largeOltuxiumWall = new Wall("large-oltuxium-wall"){{
753753
requirements(Category.defense, ItemStack.mult(oltuxiumWall.requirements, 4));
754754
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
755-
health = 130 * 4;
755+
health = 155 * 4;
756756
lightningChance = 0.2f;
757757
lightningColor = ExoPal.empyrean;
758758
researchCostMultiplier = 0.25f;
@@ -761,27 +761,27 @@ public static void load(){
761761
ironWall = new Wall("iron-wall"){{
762762
requirements(Category.defense, with(ExoItems.iron, 6));
763763
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
764-
health = 180;
764+
health = 230;
765765
researchCostMultiplier = 0.1f;
766766
}};
767767
largeIronWall = new Wall("large-iron-wall"){{
768768
requirements(Category.defense, ItemStack.mult(ironWall.requirements, 4));
769769
researchCostMultiplier = 0.25f;
770770
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
771-
health = 180 * 4;
771+
health = 230 * 4;
772772
size = 2;
773773
}};
774774
listusiumWall = new Wall("listusium-wall"){{
775775
requirements(Category.defense, with(ExoItems.litusiumAlloy, 6));
776-
health = 230;
776+
health = 270;
777777
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
778778
researchCostMultiplier = 0.1f;
779779
}};
780780
largeListusiumWall = new Wall("large-listusium-wall"){{
781781
requirements(Category.defense, ItemStack.mult(listusiumWall.requirements, 4));
782782
researchCostMultiplier = 0.25f;
783783
envEnabled = ExoEnv.stormWorld | Env.terrestrial;
784-
health = 230 * 4;
784+
health = 270 * 4;
785785
size = 2;
786786
}};
787787

src/exogenesis/content/ExoVanstarTechTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static void load() {
7373
node(vanstaniumOven);
7474
});
7575

76-
node(alloyForge, Seq.with(new Objectives.SectorComplete(ferricCrator)), () -> {
76+
node(alloyForge, Seq.with(new Objectives.SectorComplete(ferricCrator), new Objectives.Research(ironFurnace), new Objectives.Research(metaglassForger)), () -> {
7777

7878
node(osmiumBlastForge);
7979
});

0 commit comments

Comments
 (0)