Skip to content

Commit a10e85b

Browse files
Weaken OceanCurrents
1 parent 2a6a272 commit a10e85b

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Content/LegendWeapon/HalibutLegend/HalibutOverride.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,9 +354,9 @@ private static void SetCompositeArmWithRotation(Player player, float rotation) {
354354
}
355355
}
356356

357-
int bulletAmt = Main.rand.Next((int)(1 + HalibutData.GetLevel() * 0.45f), (int)(1 + HalibutData.GetLevel() * 0.85f));
357+
int bulletAmt = Main.rand.Next((int)(1 + HalibutData.GetLevel() * 0.35f), (int)(1 + HalibutData.GetLevel() * 0.65f));
358358
if (isBullet) {
359-
damage = (int)(damage * (1.2f + (bulletAmt - 1) * (1f - 0.3 / Main.LocalPlayer.GetDamage<RangedDamageClass>().Additive)) * (1f + HalibutData.GetLevel() / 26f));
359+
damage = (int)(damage * (1f + (bulletAmt - 1) * (1f - 0.3 / Main.LocalPlayer.GetDamage<RangedDamageClass>().Additive)) * (1f + HalibutData.GetLevel() / 26f));
360360
if (damage < 12) {
361361
damage = 12;
362362
}

Content/LegendWeapon/HalibutLegend/OceanCurrent.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,7 @@ public override void SetDefaults() {
8989

9090
public override void ModifyHitNPC(NPC target, ref NPC.HitModifiers modifiers) {
9191
if (target.IsWormBody()) {
92-
modifiers.FinalDamage *= 0.8f;
93-
}
94-
if (target.type == CWRID.NPC_DevourerofGodsHead || target.type == CWRID.NPC_DevourerofGodsTail) {
95-
modifiers.FinalDamage *= 1.25f;
92+
modifiers.FinalDamage *= 0.75f;
9693
}
9794
}
9895

0 commit comments

Comments
 (0)