Skip to content

Commit 282c9ea

Browse files
committed
Unit things2
1 parent 40a33d5 commit 282c9ea

3 files changed

Lines changed: 26 additions & 3 deletions

File tree

421 Bytes
Loading

src/exogenesis/content/ExoBlocks.java

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,24 @@ Items.surgeAlloy, new ShrapnelBulletType(){{
465465
fromColor = Pal.surgeAmmoFront;
466466
toColor = hitColor = lightningColor = Pal.surgeAmmoBack;
467467
shootEffect = new MultiEffect(ExoShootFx.weldSpark);
468+
}},
469+
ExoItems.quantumCrytsal, new ShrapnelBulletType(){{
470+
length = brange;
471+
status = StatusEffects.slow;
472+
statusDuration = 50;
473+
damage = 155f;
474+
ammoMultiplier = 7f;
475+
serrationWidth = 12;
476+
serrationSpacing = 14;
477+
serrationFadeOffset = 0.1f;
478+
serrations = 8;
479+
lifesteal = 0.05f;
480+
width = 35f;
481+
serrationLenScl = 25f;
482+
smokeEffect = Fx.none;
483+
fromColor = ExoPal.indigoFront;
484+
toColor = hitColor = lightningColor = ExoPal.indigoBack;
485+
shootEffect = new MultiEffect(ExoShootFx.weldSpark);
468486
}}
469487
);
470488
}};
@@ -511,10 +529,10 @@ Items.surgeAlloy, new ShrapnelBulletType(){{
511529
}};
512530
maxSpeedupScl = 24f;
513531
speedupPerShoot = 0.3f;
514-
inaccuracyUp = 0.1f;
532+
inaccuracyUp = 0.3f;
515533
overheatTime = 600f;
516534
reload = 70f;
517-
range = 200f;
535+
range = 280f;
518536
size = 5;
519537
recoil = 1.5f;
520538
recoilTime = 10;

src/exogenesis/content/ExoItems.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class ExoItems{
1010
public static Item
1111
//multi-faction items
12-
osmium, gold, leadZinc, uranimite, voltriumAlloy, exoSilicon, exoGraphite, exoMetaglass,
12+
osmium, gold, leadZinc, uranimite, voltriumAlloy, quantumCrytsal, exoSilicon, exoGraphite, exoMetaglass,
1313
//Vanstar items
1414
vanstarBasalt, oltuxium, rustyCopper, cobolt, erythritePowder, ferricPowder, iron, quartz, empyreanPlating, magnetite, litusiumAlloy,
1515
neodymium, lightningStone, peridotite, ameythystGeode, luxiteStone, vousarStone,
@@ -53,6 +53,11 @@ public static void load(){
5353
charge = 2.75f;
5454
healthScaling = 0.25f;
5555
}};
56+
quantumCrytsal = new Item("quantum-crystal", Color.valueOf("7863da")){{
57+
cost = 1.2f;
58+
healthScaling = 0.25f;
59+
}};
60+
5661

5762
//Vanstar items
5863
vanstarBasalt = new Item("vanstar-basalt", Color.valueOf("3e404c")){{

0 commit comments

Comments
 (0)