summaryrefslogtreecommitdiff
path: root/npc/items
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-04-26 07:47:04 -0300
committerJesusaves <cpntb1@ymail.com>2020-04-26 07:47:04 -0300
commitc9361c6ac2e84d2e6e8ef2f418b92b88027fcead (patch)
tree19a5d90e797009692132161351ee42a4b36c60fb /npc/items
parentd745280ed5b143acd24cf9ac8243380a50de9e3e (diff)
downloadserverdata-c9361c6ac2e84d2e6e8ef2f418b92b88027fcead.tar.gz
serverdata-c9361c6ac2e84d2e6e8ef2f418b92b88027fcead.tar.bz2
serverdata-c9361c6ac2e84d2e6e8ef2f418b92b88027fcead.tar.xz
serverdata-c9361c6ac2e84d2e6e8ef2f418b92b88027fcead.zip
Guild Shop now sells Arcmage Boxset.
Job Level now affects chances of getting a good Arcmage Card.
Diffstat (limited to 'npc/items')
-rw-r--r--npc/items/arcmage.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/items/arcmage.txt b/npc/items/arcmage.txt
index 15ab88ccb..486db2661 100644
--- a/npc/items/arcmage.txt
+++ b/npc/items/arcmage.txt
@@ -19,7 +19,7 @@ function script MakeRandomArcmageCard {
// 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) {
+ if (.@r < 500+JobLevel) {
array_push(.@arcmagecards, SpeedCard);
array_push(.@arcmagecards, ReflectCard);
array_push(.@arcmagecards, PowerCard);