diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-10-10 21:17:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-10-10 21:17:41 -0300 |
commit | 1d245b01cb8cff6854d432de08656007266b1f0c (patch) | |
tree | b8085bc938ef251ba894105e285dd68db2c518cd /npc/items | |
parent | c3ba2133726e9da04566ea6bc97c9ad2cc622272 (diff) | |
download | serverdata-1d245b01cb8cff6854d432de08656007266b1f0c.tar.gz serverdata-1d245b01cb8cff6854d432de08656007266b1f0c.tar.bz2 serverdata-1d245b01cb8cff6854d432de08656007266b1f0c.tar.xz serverdata-1d245b01cb8cff6854d432de08656007266b1f0c.zip |
Arcmage Boxset - If you are *really* lucky, you may get the S version.
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/arcmage.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/items/arcmage.txt b/npc/items/arcmage.txt index d2cd59921..038be82ce 100644 --- a/npc/items/arcmage.txt +++ b/npc/items/arcmage.txt @@ -25,6 +25,26 @@ function script MakeRandomArcmageCard { array_push(.@arcmagecards, PowerCard); array_push(.@arcmagecards, WallCard); } + // You may get the S Card if you are lucky. + // However, less than 1/2 of this rate is + // effective, and it is not so flexible. + // 0.05% at start and +0.1% per rebirth + if (.@r < 5+(REBIRTH*10)) { + array_push(.@arcmagecards, NatureCardS); + array_push(.@arcmagecards, NinjaCardS); + array_push(.@arcmagecards, MageCardS); + array_push(.@arcmagecards, DruidCardS); + array_push(.@arcmagecards, ClericCardS); + array_push(.@arcmagecards, KnightCardS); + array_push(.@arcmagecards, HeroCardS); + array_push(.@arcmagecards, NecromancerCardS); + // These cards does not have S version for drop + array_push(.@arcmagecards, SpeedCard); + array_push(.@arcmagecards, ReflectCard); + array_push(.@arcmagecards, PowerCard); + array_push(.@arcmagecards, WallCard); + } + getitem any_of(.@arcmagecards), 1; return; } |