summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-09-04 12:41:51 -0300
committerJesusaves <cpntb1@ymail.com>2019-09-04 12:41:51 -0300
commit1a5f3d0cca83abdabf7d4674725ffd22ec897535 (patch)
treec038e2c40bbea7538372b3a741753fea289dab5a
parent88180b9cfd815f88644c8001b15130d576674d48 (diff)
downloadserverdata-1a5f3d0cca83abdabf7d4674725ffd22ec897535.tar.gz
serverdata-1a5f3d0cca83abdabf7d4674725ffd22ec897535.tar.bz2
serverdata-1a5f3d0cca83abdabf7d4674725ffd22ec897535.tar.xz
serverdata-1a5f3d0cca83abdabf7d4674725ffd22ec897535.zip
Update a comment to reflect the real rare card drop chance is not 5%, but 1.67%
-rw-r--r--npc/items/arcmage.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/items/arcmage.txt b/npc/items/arcmage.txt
index 06d69f367..15ab88ccb 100644
--- a/npc/items/arcmage.txt
+++ b/npc/items/arcmage.txt
@@ -17,6 +17,8 @@ function script MakeRandomArcmageCard {
.@r=rand(0,10000);
// 5% chances of a rare card
+ // Actually only 1/3 of this rate is effective
+ // Therefore real chances are of about 1.67%
if (.@r < 500) {
array_push(.@arcmagecards, SpeedCard);
array_push(.@arcmagecards, ReflectCard);