Skip to content

Commit efb9c15

Browse files
committed
aureus stuff
1 parent e5784cb commit efb9c15

4 files changed

Lines changed: 29 additions & 8 deletions

File tree

src/exogenesis/content/ExoEnvironmentBlocks.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import mindustry.content.StatusEffects;
88
import mindustry.gen.Sounds;
99
import mindustry.graphics.CacheLayer;
10+
import mindustry.graphics.Layer;
1011
import mindustry.world.Block;
1112
import mindustry.world.blocks.environment.*;
1213
import mindustry.world.meta.Attribute;
@@ -442,10 +443,9 @@ public static void load() {
442443
giantMarbleBoulder = new TallBlock("gaint-marble-boulder") {{
443444
clipSize = 228f;
444445
rotationRand = 20;
445-
breakable = true;
446446
deconstructThreshold = 9f;
447447
shadowAlpha = 0.5f;
448-
layer = 76;
448+
layer = Layer.darkness + 1;
449449
shadowOffset = -10f;
450450
}};
451451
mediumMarbleBoulder = new TallBlock("medium-marble-boulder") {{

src/exogenesis/content/ExoSectorPresets.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ public static void load(){
3939
difficulty = 4;
4040
overrideLaunchDefaults = true;
4141
}};
42+
/*
43+
marbleHills = new SectorPreset("marbleHills", ExoPlanets.vanstar, 43){{
44+
addStartingItems = true;
45+
difficulty = 5;
46+
captureWave = 40;
47+
overrideLaunchDefaults = true;
48+
}};
49+
*/
4250
//MarbleHills 43
4351
//typhoon 166
4452
//castle 622

src/exogenesis/content/ExoVanstarBlocks.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,7 +1255,7 @@ public static void load(){
12551255
shootSound = Sounds.railgun;
12561256
rotateSpeed = 3;
12571257

1258-
consumePower(15f);
1258+
consumePower(13f);
12591259
coolant = consume(new ConsumeLiquid(ExoLiquids.ichorium, 0.4f));
12601260
drawer = new DrawTurret("elecian-") {{
12611261
parts.addAll(
@@ -1415,6 +1415,7 @@ ExoItems.oltuxium, new BasicBulletType(0f, 0) {{
14151415
}});
14161416
abilities.add(new MoveEffectAbility(){{
14171417
effect = ExoFx.disperseTrailLarger;
1418+
rotateEffect = true;
14181419
rotation = 180f;
14191420
y = -9f;
14201421
color = ExoPal.empyrean;
@@ -1426,7 +1427,7 @@ ExoItems.peridotite, new BasicBulletType(0f, 0) {{
14261427
shootEffect = Fx.shootBig;
14271428
smokeEffect = Fx.shootSmokeMissile;
14281429
ammoMultiplier = 5f;
1429-
reloadMultiplier = 1.5f;
1430+
reloadMultiplier = 2f;
14301431
rangeChange = 100;
14311432
spawnUnit = new MissileUnitType("glory-slowdown-missile") {{
14321433
speed = 7.6f;
@@ -1467,13 +1468,14 @@ ExoItems.peridotite, new BasicBulletType(0f, 0) {{
14671468
energy, 0.5f
14681469
);
14691470
collidesAir = true;
1470-
splashDamage = 30;
1471+
splashDamage = 23;
14711472
splashDamageRadius = 70;
14721473
buildingDamageMultiplier = 0.3f;
14731474

14741475
ammoMultiplier = 1f;
14751476
fragLifeMin = 1f;
14761477
fragBullets = 6;
1478+
fragRandomSpread = 0;
14771479
fragSpread = 60;
14781480
fragBullet = new ExoBasicBulletType(6, 10){{
14791481
lifetime = 50f;
@@ -1534,15 +1536,15 @@ ExoItems.peridotite, new BasicBulletType(0f, 0) {{
15341536
}}
15351537
);
15361538
}};
1537-
ammo(ExoItems.peridotite, new ExoBasicBulletType(6, 10){{
1539+
ammo(ExoItems.peridotite, new ExoBasicBulletType(6, 7){{
15381540
lifetime = 50f;
15391541
width = 6.5f;
15401542
height = 15;
15411543
homingRange = 45;
15421544
homingPower = 0.3f;
15431545
homingDelay = 0.6f;
15441546
addDamageMultiplier(
1545-
kinetic, 0.5f
1547+
kinetic, 1f
15461548
);
15471549
sprite = "missile-large";
15481550
shootEffect = Fx.shootBigColor;

src/exogenesis/content/ExoVanstarTechTree.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class ExoVanstarTechTree {
2222
public static void load() {
2323
ExoPlanets.vanstar.techTree = nodeRoot("exogenesis-vanstar", coreBelief, () -> {
2424
node(coreHope, Seq.with(new Objectives.SectorComplete(ferricCrator)), () -> {
25-
node(coreHope, Seq.with(new Objectives.SectorComplete(Fortress)), () -> {
25+
node(coreReliance, Seq.with(new Objectives.Research(neodymium)), () -> {
2626

2727
});
2828
});
@@ -241,6 +241,17 @@ public static void load() {
241241
});
242242
});
243243
});
244+
node(flicker, () -> {
245+
node(ember, Seq.with(new Objectives.Research(neodymium)), () -> {
246+
node(blaze, () -> {
247+
node(pyric, () -> {
248+
node(phlogiston, () -> {
249+
250+
});
251+
});
252+
});
253+
});
254+
});
244255
node(lux, () -> {
245256
node(glimmer, Seq.with(new Objectives.Research(neodymium)),() -> {
246257
node(shine, () -> {

0 commit comments

Comments
 (0)