diff options
-rw-r--r-- | npc/functions/event.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt index 9f2134cde..b02d59fc5 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -97,6 +97,9 @@ function script sThanksgiving { // A fruit before 10 days: rig to Arcmage or to blueprint if (.@luck == 10 && #THANKS_STREAK < 10) .@luck+=any(-1,1); + // A fruit before 20 days: Lower chances from 4% to 2% + if (.@luck == 10 && #THANKS_STREAK < 20) + .@luck=rand2(0,11); // Extra spins .@extra=rand2(1,3); .@spins=.@extra*11+.@luck; |