diff options
-rw-r--r-- | npc/014-5/events.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/014-5/events.txt b/npc/014-5/events.txt index 00773a910..5671d65cb 100644 --- a/npc/014-5/events.txt +++ b/npc/014-5/events.txt @@ -116,9 +116,15 @@ .@boost+=25; .@lucky+=1; } + // 4L Clover also boosts the chance of obtaining the Funky Hat + if (getequipid(EQI_ACC_L) == FourLeafClover) + .@lucky+=1; // Full set raises in further 25. Max boost gauge from dye is 150 atm. + // Four Leaf Clover complements if you failed to obtain the boost if (.@boost >= 125) .@boost+=25; + else if (getequipid(EQI_ACC_L) == FourLeafClover) + .@boost+=25; // .@boost, right now, is a number from 0 to 250. // Randomness factor can make that 20% higher, up to 300. |