From 2863f5cd4ca1c9e839d1e925a97369e151b2e91e Mon Sep 17 00:00:00 2001 From: EJCrispy Date: Tue, 16 Sep 2025 17:21:27 -0700 Subject: [PATCH] You now have max luck (double) at shimmer --- AdventurePlayer.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/AdventurePlayer.cs b/AdventurePlayer.cs index d7c7804f..c0092298 100644 --- a/AdventurePlayer.cs +++ b/AdventurePlayer.cs @@ -1228,6 +1228,17 @@ public override void PostUpdateEquips() } } +public class AetherLuckPlayer : ModPlayer +{ + public override void ModifyLuck(ref float luck) + { + if (Player.ZoneShimmer) + { + luck += 400; // 400 times the amount of normal luck + } + } +} + public class ShinyStoneHotswap : ModBuff { public override string Texture => $"PvPAdventure/Assets/Buff/ShinyStoneHotswap";