diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-22 18:26:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-22 18:26:02 -0300 |
commit | ee68c6a10e0e828a7470e67133e65851272b162d (patch) | |
tree | 0b43c5781954f8ae391c21318bfb4e475cfb9f39 /db/re/item_db.conf | |
parent | 2425d937e9a2ad06e720f045304257ea80b6ab6c (diff) | |
download | serverdata-ee68c6a10e0e828a7470e67133e65851272b162d.tar.gz serverdata-ee68c6a10e0e828a7470e67133e65851272b162d.tar.bz2 serverdata-ee68c6a10e0e828a7470e67133e65851272b162d.tar.xz serverdata-ee68c6a10e0e828a7470e67133e65851272b162d.zip |
Common and Legendary mounts
Diffstat (limited to 'db/re/item_db.conf')
-rw-r--r-- | db/re/item_db.conf | 84 |
1 files changed, 79 insertions, 5 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 60b10fa7d..74eb11117 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -3286,9 +3286,47 @@ item_db: ( // Mounts (690 to 699, probably there will be extra IDs) { - Id: 698 - AegisName: "LegendaryMouboo" - Name: "Legendary Mouboo" + Id: 696 + AegisName: "RidingMouboo" + Name: "Riding Mouboo" + Type: "IT_ARMOR" + Loc: ["EQP_HAND_R", "EQP_HAND_L"] + Buy: 7500000 + Sell: 50000 + Weight: 500 + Refine: false + WeaponLv: 1 + EquipLv: 1 + Trade: { + notrade: true + nodrop: true + noselltonpc: true + nogstorage: true + nomail: true + noauction: true + } + Script: <" + bonus bNoRegen,1; + bonus bNoRegen,2; + bonus bFleeRate,50; + bonus bNoKnockback,1; + bonus bSpeedAddRate,-10; // 25-10 = +15% + + bonus bAtkRate,-100; + bonus bMatkRate,-100; + bonus bBaseAtk,-700; + "> + OnEquipScript: <" + setmount 1; + "> + OnUnequipScript: <" + setmount 0; + "> +}, +{ + Id: 697 + AegisName: "RidingTortuga" + Name: "Riding Tortuga" Type: "IT_ARMOR" Loc: ["EQP_HAND_R", "EQP_HAND_L"] Buy: 7500000 @@ -3310,11 +3348,47 @@ item_db: ( bonus bNoRegen,2; bonus bFleeRate,50; bonus bNoKnockback,1; - bonus bSpeedAddRate,25; + bonus bSpeedAddRate,-15; // 25-15 = +10% bonus bAtkRate,-100; bonus bMatkRate,-100; bonus bBaseAtk,-700; + "> + OnEquipScript: <" + setmount 2; + "> + OnUnequipScript: <" + setmount 0; + "> +}, +{ + Id: 698 + AegisName: "LegendaryMouboo" + Name: "Legendary Mouboo" + Type: "IT_ARMOR" + Loc: "EQP_SHADOW_SHOES" + Buy: 7500000 + Sell: 50000 + Weight: 500 + Refine: false + Trade: { + notrade: true + nodrop: true + noselltonpc: true + nogstorage: true + nomail: true + noauction: true + } + Script: <" + bonus bNoRegen,1; + bonus bNoRegen,2; + bonus bAtkRange,-1; + bonus bFleeRate,50; + bonus bAtkRate,-50; + bonus bHitRate,-30; + bonus bCritical,25; + bonus bNoKnockback,0; + bonus bSpeedAddRate,5; // 25+5 = +30% /* We can use them to protect mount from bows, for example bonus bNearAtkDef,-50; bonus bLongAtkDef,-50; @@ -3356,7 +3430,7 @@ item_db: ( bonus bHitRate,-30; bonus bCritical,25; bonus bNoKnockback,0; - bonus bSpeedAddRate,25; + bonus bSpeedAddRate,5; // 25+5 = +30% /* We can use them to protect mount from bows, for example bonus bNearAtkDef,-50; bonus bLongAtkDef,-50; |