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";