diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-15 12:57:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-15 12:57:21 -0300 |
commit | 7e575457d04da544550e368b1d78e59be5dcb8cf (patch) | |
tree | 6c5b3a007b143a2e465ffa000332c72f3e920cce | |
parent | 5ca97e49cbe3bb78794d09f08e43b57c439fd77f (diff) | |
download | serverdata-7e575457d04da544550e368b1d78e59be5dcb8cf.tar.gz serverdata-7e575457d04da544550e368b1d78e59be5dcb8cf.tar.bz2 serverdata-7e575457d04da544550e368b1d78e59be5dcb8cf.tar.xz serverdata-7e575457d04da544550e368b1d78e59be5dcb8cf.zip |
Add four extra, legendary cards: Speed Card, Reflect Card, Power Card and Wall Card.
-rw-r--r-- | db/re/item_db.conf | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 2cdcf7e8d..b0550c03c 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -11827,6 +11827,62 @@ item_db: ( bonus bDex,2; "> }, +{ + Id: 5037 + AegisName: "SpeedCard" + Name: "Speed Card" + Type: "IT_CARD" + Buy: 50 + Sell: 25 + Weight: 4 + Loc: 2097151 + Script: <" + bonus bSpeedAddRate, 1; + bonus bAspd, 1; + "> +}, +{ + Id: 5038 + AegisName: "ReflectCard" + Name: "Reflect Card" + Type: "IT_CARD" + Buy: 50 + Sell: 25 + Weight: 4 + Loc: 2097151 + Script: <" + bonus bShortWeaponDamageReturn, 1; + bonus bLongWeaponDamageReturn, 1; + "> +}, +{ + Id: 5039 + AegisName: "PowerCard" + Name: "Power Card" + Type: "IT_CARD" + Buy: 50 + Sell: 25 + Weight: 4 + Loc: 2097151 + Script: <" + bonus bAtk, 25; + bonus bMatk, 25; + "> +}, +{ + Id: 5040 + AegisName: "WallCard" + Name: "Wall Card" + Type: "IT_CARD" + Buy: 50 + Sell: 25 + Weight: 4 + Loc: 2097151 + Script: <" + bonus bDef2, 25; + bonus bMdef, 25; + "> +}, // Bows & Ranged Weaponry { Id: 6000 |