Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes the Default of both "Override" settings ("NoUse" and "Trade" restrictions) from 0 to 100 and removes all "Override" settings currently set.
Minor formatting and doc fixes.
Fixes CD_In_MouthK (420003) headgear Location.
Thanks to @aleos89
41102 lines (41100 sloc)
790 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is a part of rAthena. | |
| # Copyright(C) 2021 rAthena Development Team | |
| # https://rathena.org - https://github.com/rathena | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| # GNU General Public License for more details. | |
| # | |
| # You should have received a copy of the GNU General Public License | |
| # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| # | |
| ########################################################################### | |
| # Item Database | |
| ########################################################################### | |
| # | |
| # Item Settings | |
| # | |
| ########################################################################### | |
| # - Id Item ID. | |
| # AegisName Server name to reference the item in scripts and lookups, should use no spaces. | |
| # Name Name in English for displaying as output. | |
| # Type Item type. (Default: Etc) | |
| # SubType Weapon, Ammo or Card type. (Default: 0) | |
| # Buy Buying price. When not specified, becomes double the sell price. (Default: 0) | |
| # Sell Selling price. When not specified, becomes half the buy price. (Default: 0) | |
| # Weight Item weight. Each 10 is 1 weight. (Default: 0) | |
| # Attack Weapon's attack. (Default: 0) | |
| # MagicAttack Weapon's magic attack. (Default: 0) | |
| # Defense Armor's defense. (Default: 0) | |
| # Range Weapon's attack range. (Default: 0) | |
| # Slots Available slots in item. (Default: 0) | |
| # Jobs Jobs that can equip the item. (Map default is 'All: true') | |
| # Classes Upper class types that can equip the item. (Map default is 'All: true') | |
| # Gender Gender that can equip the item. (Default: Both) | |
| # Locations Equipment's placement. (Default: None) | |
| # WeaponLevel Weapon level. (Default: 1 for Weapons) | |
| # ArmorLevel Armor level. (Default: 1 for Armors) | |
| # EquipLevelMin Minimum required level to equip. (Default: 0) | |
| # EquipLevelMax Maximum level that can equip. (Default: 0) | |
| # Refineable If the item can be refined. (Default: false) | |
| # View View sprite of an item. (Default: 0) | |
| # AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) | |
| # Flags: Item flags. (Default: null) | |
| # BuyingStore If the item is available for Buyingstores. (Default: false) | |
| # DeadBranch If the item is a Dead Branch. (Default: false) | |
| # Container If the item is part of a container. (Default: false) | |
| # UniqueId If the item is a unique stack. (Default: false) | |
| # BindOnEquip If the item is bound to the character upon equipping. (Default: false) | |
| # DropAnnounce If the item has a special announcement to self on drop. (Default: false) | |
| # NoConsume If the item is consumed on use. (Default: false) | |
| # DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None) | |
| # Delay: Item use delay. (Default: null) | |
| # Duration Duration of delay in seconds. | |
| # Status Status Change used to track delay. (Default: None) | |
| # Stack: Item stack amount. (Default: null) | |
| # Amount Maximum amount that can be stacked. | |
| # Inventory If the stack is applied to player's inventory. (Default: true) | |
| # Cart If the stack is applied to the player's cart. (Default: false) | |
| # Storage If the stack is applied to the player's storage. (Default: false) | |
| # GuildStorage If the stack is applied to the player's guild storage. (Default: false) | |
| # NoUse: Conditions when the item is unusable. (Default: null) | |
| # Override Group level to override these conditions. (Default: 100) | |
| # Sitting If the item can not be used while sitting. (Default: false) | |
| # Trade: Trade restrictions. (Default: null) | |
| # Override Group level to override these conditions. (Default: 100) | |
| # NoDrop If the item can not be dropped. (Default: false) | |
| # NoTrade If the item can not be traded. (Default: false) | |
| # TradePartner If the item can not be traded to the player's partner. (Default: false) | |
| # NoSell If the item can not be sold. (Default: false) | |
| # NoCart If the item can not be put in a cart. (Default: false) | |
| # NoStorage If the item can not be put in a storage. (Default: false) | |
| # NoGuildStorage If the item can not be put in a guild storage. (Default: false) | |
| # NoMail If the item can not be put in a mail. (Default: false) | |
| # NoAuction If the item can not be put in an auction. (Default: false) | |
| # Script Script to execute when the item is used/equipped. (Default: null) | |
| # EquipScript Script to execute when the item is equipped. (Default: null) | |
| # UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) | |
| ########################################################################### | |
| Header: | |
| Type: ITEM_DB | |
| Version: 2 | |
| Body: | |
| - Id: 1101 | |
| AegisName: Sword | |
| Name: Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 100 | |
| Weight: 500 | |
| Attack: 25 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1102 | |
| AegisName: Sword_ | |
| Name: Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 100 | |
| Weight: 500 | |
| Attack: 25 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1103 | |
| AegisName: Sword__ | |
| Name: Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 100 | |
| Weight: 500 | |
| Attack: 25 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1104 | |
| AegisName: Falchion | |
| Name: Falchion | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 1500 | |
| Weight: 600 | |
| Attack: 39 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1105 | |
| AegisName: Falchion_ | |
| Name: Falchion | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 1500 | |
| Weight: 600 | |
| Attack: 39 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1106 | |
| AegisName: Falchion__ | |
| Name: Falchion | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 1500 | |
| Weight: 600 | |
| Attack: 39 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1107 | |
| AegisName: Blade | |
| Name: Blade | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 2900 | |
| Weight: 700 | |
| Attack: 53 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1108 | |
| AegisName: Blade_ | |
| Name: Blade | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 2900 | |
| Weight: 700 | |
| Attack: 53 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1109 | |
| AegisName: Blade__ | |
| Name: Blade | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 2900 | |
| Weight: 700 | |
| Attack: 53 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1110 | |
| AegisName: Lapier | |
| Name: Rapier | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 10000 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1111 | |
| AegisName: Lapier_ | |
| Name: Rapier | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 10000 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1112 | |
| AegisName: Lapier__ | |
| Name: Rapier | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 10000 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1113 | |
| AegisName: Scimiter | |
| Name: Scimitar | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 17000 | |
| Weight: 700 | |
| Attack: 85 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1114 | |
| AegisName: Scimiter_ | |
| Name: Scimitar | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 17000 | |
| Weight: 700 | |
| Attack: 85 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1115 | |
| AegisName: Scimiter__ | |
| Name: Scimitar | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 17000 | |
| Weight: 700 | |
| Attack: 85 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1116 | |
| AegisName: Katana | |
| Name: Katana | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 2000 | |
| Weight: 1000 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1117 | |
| AegisName: Katana_ | |
| Name: Katana | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 2000 | |
| Weight: 1000 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1118 | |
| AegisName: Katana__ | |
| Name: Katana | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 2000 | |
| Weight: 1000 | |
| Attack: 60 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1119 | |
| AegisName: Tsurugi | |
| Name: Tsurugi | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 51000 | |
| Weight: 1200 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1120 | |
| AegisName: Tsurugi_ | |
| Name: Tsurugi | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 51000 | |
| Weight: 1200 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1121 | |
| AegisName: Tsurugi__ | |
| Name: Tsurugi | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 51000 | |
| Weight: 1200 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1122 | |
| AegisName: Ring_Pommel_Saber | |
| Name: Ring Pommel Saber | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 24000 | |
| Weight: 900 | |
| Attack: 100 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1123 | |
| AegisName: Haedonggum | |
| Name: Haedonggum | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 50000 | |
| Weight: 900 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| - Id: 1124 | |
| AegisName: Orcish_Sword | |
| Name: Orcish Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 5 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| - Id: 1125 | |
| AegisName: Ring_Pommel_Saber_ | |
| Name: Ring Pommel Saber | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 24000 | |
| Weight: 900 | |
| Attack: 100 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1126 | |
| AegisName: Saber | |
| Name: Saber | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 49000 | |
| Weight: 1000 | |
| Attack: 115 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1127 | |
| AegisName: Saber_ | |
| Name: Saber | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 49000 | |
| Weight: 1000 | |
| Attack: 115 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1128 | |
| AegisName: Hae_Dong_Gum_ | |
| Name: Haedonggum | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 50000 | |
| Weight: 900 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| - Id: 1129 | |
| AegisName: Flamberge | |
| Name: Flamberge | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 60000 | |
| Weight: 1500 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1130 | |
| AegisName: Nagan | |
| Name: Nagan | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| skill "TF_DOUBLE",5; | |
| bonus bDoubleRate,25; | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| - Id: 1131 | |
| AegisName: Ice_Falchon | |
| Name: Ice Falchion | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 100 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| bonus2 bAddEff,Eff_Freeze,500; | |
| bonus2 bAddEff2,Eff_Freeze,10; | |
| skill "MG_COLDBOLT",3; | |
| bonus3 bAutoSpell,"MG_COLDBOLT",3,100; | |
| - Id: 1132 | |
| AegisName: Edge | |
| Name: Edge | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Curse,30; | |
| bonus2 bComaClass,Class_Normal,10; | |
| - Id: 1133 | |
| AegisName: Fire_Brand | |
| Name: Fireblend | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 100 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| skill "MG_FIREBOLT",3; | |
| bonus3 bAutoSpell,"MG_FIREBOLT",3,100; | |
| - Id: 1134 | |
| AegisName: Scissores_Sword | |
| Name: Caesar's Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_Plant,25; | |
| bonus bIgnoreDefRace,RC_Plant; | |
| - Id: 1135 | |
| AegisName: Cutlas | |
| Name: Cutlus | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| skill "SM_BASH",5; | |
| bonus bStr,2; | |
| bonus bDef,1; | |
| - Id: 1136 | |
| AegisName: Solar_Sword | |
| Name: Solar Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 85 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus2 bHPDrainRate,1000,1; | |
| bonus2 bSPLossRate,15,10000; | |
| - Id: 1137 | |
| AegisName: Excalibur | |
| Name: Excalibur | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,5; | |
| bonus bLuk,10; | |
| bonus bDex,-1; | |
| bonus bAtkEle,Ele_Holy; | |
| - Id: 1138 | |
| AegisName: Mysteltainn_ | |
| Name: Mysteltainn | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 170 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddEle,Ele_Ghost,15; | |
| bonus3 bAutoSpell,"MG_STONECURSE",3,100; | |
| bonus2 bAddEff,Eff_Stone,10; | |
| bonus bDex,3; | |
| - Id: 1139 | |
| AegisName: Tale_Fing_ | |
| Name: Tirfing | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bHPLossRate,35,10000; | |
| - Id: 1140 | |
| AegisName: Byeorrun_Gum | |
| Name: Byeollungum | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubClass,Class_Normal,-10; | |
| bonus2 bAddClass,Class_Boss,50; | |
| bonus bAllStats,2; | |
| - Id: 1141 | |
| AegisName: Immaterial_Sword | |
| Name: Immaterial Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Ghost; | |
| bonus2 bSPVanishRate,30,30; | |
| bonus bSPDrainValue,-1; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1142 | |
| AegisName: Jewel_Sword | |
| Name: Jeweled Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 2200 | |
| Attack: 104 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 68 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; | |
| - Id: 1143 | |
| AegisName: Gaia_Sword | |
| Name: Gaia Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 74 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddMonsterDropItemGroup,IG_Ore,30; | |
| - Id: 1144 | |
| AegisName: Sasimi | |
| Name: Sashimi | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1400 | |
| Attack: 75 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus3 bAddMonsterDropItem,544,RC_Fish,4000; | |
| - Id: 1145 | |
| AegisName: Holy_Avenger | |
| Name: Holy Avenger | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 450000 | |
| Weight: 1350 | |
| Attack: 125 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bVit,2; | |
| - Id: 1146 | |
| AegisName: Town_Sword | |
| Name: Town Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 42000 | |
| Weight: 800 | |
| Attack: 100 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1147 | |
| AegisName: Town_Sword_ | |
| Name: Town Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 42000 | |
| Weight: 800 | |
| Attack: 100 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1148 | |
| AegisName: Star_Dust_Blade | |
| Name: Star Dust Blade | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Stun,500; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1149 | |
| AegisName: Flamberge_ | |
| Name: Flamberge | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 60000 | |
| Weight: 1500 | |
| Attack: 150 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1151 | |
| AegisName: Slayer | |
| Name: Slayer | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 15000 | |
| Weight: 1300 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1152 | |
| AegisName: Slayer_ | |
| Name: Slayer | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 15000 | |
| Weight: 1300 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1153 | |
| AegisName: Slayer__ | |
| Name: Slayer | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 15000 | |
| Weight: 1300 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1154 | |
| AegisName: Bastard_Sword | |
| Name: Bastard Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 22500 | |
| Weight: 1600 | |
| Attack: 115 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1155 | |
| AegisName: Bastard_Sword_ | |
| Name: Bastard Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 22500 | |
| Weight: 1600 | |
| Attack: 115 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1156 | |
| AegisName: Bastard_Sword__ | |
| Name: Bastard Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 22500 | |
| Weight: 1600 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1157 | |
| AegisName: Two_Hand_Sword | |
| Name: Two-Handed Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 60000 | |
| Weight: 2200 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1158 | |
| AegisName: Two_Hand_Sword_ | |
| Name: Two-Handed Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 60000 | |
| Weight: 2200 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1159 | |
| AegisName: Two_Hand_Sword__ | |
| Name: Two-Handed Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 60000 | |
| Weight: 2200 | |
| Attack: 160 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1160 | |
| AegisName: Broad_Sword | |
| Name: Broad Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 65000 | |
| Weight: 2000 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| Script: | | |
| bonus bDef,5; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1161 | |
| AegisName: Balmung | |
| Name: Balmung | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 250 | |
| Range: 1 | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus bAtkEle,Ele_Holy; | |
| - Id: 1162 | |
| AegisName: Broad_Sword_ | |
| Name: Broad Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 65000 | |
| Weight: 2000 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| Script: | | |
| bonus bDef,5; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1163 | |
| AegisName: Claymore | |
| Name: Claymore | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 74000 | |
| Weight: 2500 | |
| Attack: 180 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1164 | |
| AegisName: Muramasa | |
| Name: Muramasa | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 155 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,30; | |
| bonus bAspdRate,8; | |
| bonus2 bAddEff2,Eff_Curse,10; | |
| - Id: 1165 | |
| AegisName: Masamune | |
| Name: Masamune | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bFlee,30; | |
| bonus bStr,-5; | |
| bonus bAspd,2; | |
| bonus bDefRate,-67; | |
| bonus bDef2Rate,-67; | |
| - Id: 1166 | |
| AegisName: Dragon_Slayer | |
| Name: Dragon Slayer | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1300 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| bonus2 bAddRace,RC_Dragon,15; | |
| - Id: 1167 | |
| AegisName: Schweizersabel | |
| Name: Schweizersabel | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1600 | |
| Attack: 160 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bDef,1; | |
| bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; | |
| - Id: 1168 | |
| AegisName: Zweihander | |
| Name: Zweihander | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2200 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| - Id: 1169 | |
| AegisName: Executioner_ | |
| Name: Executioner | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2200 | |
| Attack: 155 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus2 bAddRace,RC_DemiHuman,20; | |
| bonus2 bAddRace,RC_Player_Human,20; | |
| bonus2 bSubRace,RC_DemiHuman,-10; | |
| bonus2 bSubRace,RC_Player_Human,-10; | |
| bonus bAtkEle,Ele_Dark; | |
| - Id: 1170 | |
| AegisName: Katzbalger | |
| Name: Katzbalger | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 175 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bVit,5; | |
| bonus bDef,10; | |
| - Id: 1171 | |
| AegisName: Zweihander_ | |
| Name: Zweihander | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2200 | |
| Attack: 200 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| - Id: 1172 | |
| AegisName: Claymore_ | |
| Name: Claymore | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 74000 | |
| Weight: 2500 | |
| Attack: 180 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1173 | |
| AegisName: Muramasa_C | |
| Name: Muramasa | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 1 | |
| Attack: 204 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bCritical,30; | |
| bonus bAspdRate,8; | |
| - Id: 1174 | |
| AegisName: Executioner_C | |
| Name: Executioner | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 2 | |
| Attack: 190 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus2 bAddRace,RC_DemiHuman,20; | |
| bonus2 bAddRace,RC_Player_Human,20; | |
| bonus2 bSubRace,RC_DemiHuman,-10; | |
| bonus2 bSubRace,RC_Player_Human,-10; | |
| bonus bAtkEle,Ele_Dark; | |
| - Id: 1175 | |
| AegisName: Altas_Weapon | |
| Name: Atlas Weapon | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 3500 | |
| Attack: 200 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,10; | |
| if (readparam(bStr)>=80) | |
| bonus bBreakArmorRate,500; | |
| - Id: 1176 | |
| AegisName: Muscle_Cutter | |
| Name: Muscle Cutter | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2200 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Bleeding,800; | |
| bonus3 bAutoSpell,"AL_DECAGI",1,30; | |
| - Id: 1177 | |
| AegisName: Muramash | |
| Name: Muramash | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1178 | |
| AegisName: Schweizersabel_ | |
| Name: Schweizersabel | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1600 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bDef,1; | |
| bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; | |
| - Id: 1179 | |
| AegisName: Executioner__ | |
| Name: Executioner | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2200 | |
| Attack: 155 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus2 bAddRace,RC_DemiHuman,20; | |
| bonus2 bAddRace,RC_Player_Human,20; | |
| bonus2 bSubRace,RC_DemiHuman,-10; | |
| bonus2 bSubRace,RC_Player_Human,-10; | |
| bonus bAtkEle,Ele_Dark; | |
| - Id: 1180 | |
| AegisName: Dragon_Slayer_ | |
| Name: Dragon Slayer | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1300 | |
| Attack: 150 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| bonus2 bAddRace,RC_Dragon,15; | |
| - Id: 1181 | |
| AegisName: Tae_Goo_Lyeon | |
| Name: Tae Goo Lyeon | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 250 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 90 | |
| Refineable: true | |
| Script: | | |
| bonus bFlee2,10; | |
| if (JobLevel>=70) | |
| autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| if (getrefine()>8) { | |
| bonus bCastrate,-20; | |
| bonus bDelayRate,-20; | |
| } | |
| - Id: 1182 | |
| AegisName: Bloody_Eater | |
| Name: Bloody Eater | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 200 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Ghost; | |
| autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; | |
| bonus bHPGainValue,100; | |
| - Id: 1183 | |
| AegisName: BF_Two_Handed_Sword1 | |
| Name: Brave Assaulter's Katzbalger | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1184 | |
| AegisName: BF_Two_Handed_Sword2 | |
| Name: Valorous Assaulter's Katzbalger | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bCritical,20; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus bCritAtkRate,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1185 | |
| AegisName: Violet_Fear | |
| Name: Violet Fear | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2200 | |
| Attack: 275 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpell,"WZ_METEOR",3,30; | |
| bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; | |
| autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; | |
| - Id: 1186 | |
| AegisName: Death_Guidance | |
| Name: Death Guidance | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 200 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,5; | |
| bonus bAgi,2; | |
| bonus bFlee2,20; | |
| bonus3 bAutoSpell,"NPC_HELLPOWER",1,10; | |
| bonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0; | |
| if (getrefine()>8) | |
| bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",2,20; | |
| else | |
| bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",1,20; | |
| - Id: 1187 | |
| AegisName: Krieger_Twohand_Sword1 | |
| Name: Glorious Claymore | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Attack: 220 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; | |
| bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; | |
| } | |
| - Id: 1188 | |
| AegisName: Veteran_Sword | |
| Name: Veteran Sword | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 10000 | |
| Weight: 2000 | |
| Attack: 180 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| if (getskilllv("SM_BASH") == 10) { | |
| bonus2 bSkillAtk,"SM_BASH",50; | |
| } | |
| if (getskilllv("KN_BOWLINGBASH") == 10) { | |
| bonus2 bSkillAtk,"KN_BOWLINGBASH",50; | |
| } | |
| bonus bStr,1; | |
| bonus bDex,1; | |
| - Id: 1189 | |
| AegisName: Krasnaya | |
| Name: Krasnaya | |
| Type: Weapon | |
| SubType: 2hSword | |
| Buy: 20 | |
| Weight: 3800 | |
| Attack: 200 | |
| Range: 2 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| if (readparam(bStr)>=95) { | |
| bonus bBaseAtk,20; | |
| } | |
| - Id: 1190 | |
| AegisName: Claymore_C | |
| Name: Claymore | |
| Type: Weapon | |
| SubType: 2hSword | |
| Attack: 220 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 1201 | |
| AegisName: Knife | |
| Name: Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 50 | |
| Weight: 400 | |
| Attack: 17 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1202 | |
| AegisName: Knife_ | |
| Name: Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 50 | |
| Weight: 400 | |
| Attack: 17 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1203 | |
| AegisName: Knife__ | |
| Name: Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 50 | |
| Weight: 400 | |
| Attack: 17 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1204 | |
| AegisName: Cutter | |
| Name: Cutter | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 1250 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1205 | |
| AegisName: Cutter_ | |
| Name: Cutter | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 1250 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1206 | |
| AegisName: Cutter__ | |
| Name: Cutter | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 1250 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1207 | |
| AegisName: Main_Gauche | |
| Name: Main Gauche | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 2400 | |
| Weight: 600 | |
| Attack: 43 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1208 | |
| AegisName: Main_Gauche_ | |
| Name: Main Gauche | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 2400 | |
| Weight: 600 | |
| Attack: 43 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1209 | |
| AegisName: Main_Gauche__ | |
| Name: Main Gauche | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 2400 | |
| Weight: 600 | |
| Attack: 43 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1210 | |
| AegisName: Dirk | |
| Name: Dirk | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 8500 | |
| Weight: 500 | |
| Attack: 59 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1211 | |
| AegisName: Dirk_ | |
| Name: Dirk | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 8500 | |
| Weight: 500 | |
| Attack: 59 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1212 | |
| AegisName: Dirk__ | |
| Name: Dirk | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 8500 | |
| Weight: 500 | |
| Attack: 59 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1213 | |
| AegisName: Dagger | |
| Name: Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 14000 | |
| Weight: 600 | |
| Attack: 73 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1214 | |
| AegisName: Dagger_ | |
| Name: Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 14000 | |
| Weight: 600 | |
| Attack: 73 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1215 | |
| AegisName: Dagger__ | |
| Name: Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 14000 | |
| Weight: 600 | |
| Attack: 73 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1216 | |
| AegisName: Stiletto | |
| Name: Stiletto | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 19500 | |
| Weight: 700 | |
| Attack: 87 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1217 | |
| AegisName: Stiletto_ | |
| Name: Stiletto | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 19500 | |
| Weight: 700 | |
| Attack: 87 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1218 | |
| AegisName: Stiletto__ | |
| Name: Stiletto | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 19500 | |
| Weight: 700 | |
| Attack: 87 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1219 | |
| AegisName: Gladius | |
| Name: Gladius | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 43000 | |
| Weight: 700 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| - Id: 1220 | |
| AegisName: Gladius_ | |
| Name: Gladius | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 43000 | |
| Weight: 700 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| - Id: 1221 | |
| AegisName: Gladius__ | |
| Name: Gladius | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 43000 | |
| Weight: 700 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| - Id: 1222 | |
| AegisName: Damascus | |
| Name: Damascus | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 49000 | |
| Weight: 800 | |
| Attack: 118 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| - Id: 1223 | |
| AegisName: Forturn_Sword | |
| Name: Fortune Sword | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bLuk,5; | |
| bonus bFlee2,20; | |
| - Id: 1224 | |
| AegisName: Sword_Breaker | |
| Name: Swordbreaker | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakWeaponRate,500; | |
| - Id: 1225 | |
| AegisName: Mail_Breaker | |
| Name: Mailbreaker | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakArmorRate,500; | |
| - Id: 1226 | |
| AegisName: Damascus_ | |
| Name: Damascus | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 49000 | |
| Weight: 800 | |
| Attack: 118 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| - Id: 1227 | |
| AegisName: Weeder_Knife | |
| Name: Weeder Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 400 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Plant; | |
| bonus2 bAddRace,RC_Plant,15; | |
| bonus2 bSubRace,RC_Plant,15; | |
| - Id: 1228 | |
| AegisName: Combat_Knife | |
| Name: Combat Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 400 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| bonus2 bSubRace,RC_Demon,-10; | |
| - Id: 1229 | |
| AegisName: Mama's_Knife | |
| Name: Kitchen Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 75 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,30; | |
| bonus3 bAddMonsterDropItem,517,RC_Brute,5000; | |
| - Id: 1230 | |
| AegisName: House_Auger | |
| Name: Ice Pick | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bDefRatioAtkClass,Class_All; | |
| - Id: 1231 | |
| AegisName: Bazerald | |
| Name: Bazerald | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus bInt,5; | |
| bonus bMatkRate,10; | |
| - Id: 1232 | |
| AegisName: Assasin_Dagger | |
| Name: Assassin Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHPrate,20; | |
| bonus bMaxSPrate,15; | |
| bonus bAspdRate,2; | |
| bonus bAtkEle,Ele_Dark; | |
| - Id: 1233 | |
| AegisName: Exercise | |
| Name: Exorciser | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Demon; | |
| bonus2 bSubRace,RC_Demon,5; | |
| bonus2 bSubRace,RC_DemiHuman,-10; | |
| bonus2 bSubRace,RC_Player_Human,-10; | |
| - Id: 1234 | |
| AegisName: Moonlight_Sword | |
| Name: Moonlight Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 50 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxSPrate,10; | |
| bonus bSPDrainValue,3; | |
| - Id: 1235 | |
| AegisName: Azoth | |
| Name: Azoth | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bClassChange,300; | |
| - Id: 1236 | |
| AegisName: Sucsamad | |
| Name: Sucsamad | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEle,Ele_Earth,10; | |
| bonus2 bAddEle,Ele_Wind,10; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1237 | |
| AegisName: Grimtooth_ | |
| Name: Grimtooth | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 180 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bFlee,10; | |
| bonus bFlee2,5; | |
| bonus bDefRate,-50; | |
| bonus bDef2Rate,-50; | |
| - Id: 1238 | |
| AegisName: Zeny_Knife | |
| Name: Zeny Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 64 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus2 bGetZenyNum,100,40; | |
| - Id: 1239 | |
| AegisName: Poison_Knife | |
| Name: Poison Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 64 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Poison; | |
| bonus2 bAddEff,Eff_Poison,3000; | |
| - Id: 1240 | |
| AegisName: Princess_Knife | |
| Name: Princess Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 400 | |
| Attack: 84 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAllStats,1; | |
| - Id: 1241 | |
| AegisName: Cursed_Dagger | |
| Name: Cursed Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 80000 | |
| Weight: 400 | |
| Attack: 55 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Curse,5000; | |
| - Id: 1242 | |
| AegisName: Counter_Dagger | |
| Name: Dagger of Counter | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 120000 | |
| Weight: 550 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,90; | |
| - Id: 1243 | |
| AegisName: Novice_Knife | |
| Name: Novice Main-Gauche | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 1 | |
| Weight: 1 | |
| Attack: 45 | |
| Range: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| - Id: 1244 | |
| AegisName: Holy_Dagger | |
| Name: Holy Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 100 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bDex,1; | |
| - Id: 1245 | |
| AegisName: Cinquedea | |
| Name: Cinquedea | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 40000 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1246 | |
| AegisName: Cinquedea_ | |
| Name: Cinquedea | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 40000 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1247 | |
| AegisName: Kindling_Dagger | |
| Name: Kindle Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 10000 | |
| Weight: 600 | |
| Attack: 39 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| - Id: 1248 | |
| AegisName: Obsidian_Dagger | |
| Name: Obsidian Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 10000 | |
| Weight: 600 | |
| Attack: 39 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| - Id: 1249 | |
| AegisName: Fisherman's_Dagger | |
| Name: Fisherman's Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 10000 | |
| Weight: 600 | |
| Attack: 39 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| - Id: 1250 | |
| AegisName: Jur | |
| Name: Jur | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 19500 | |
| Weight: 800 | |
| Attack: 125 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1251 | |
| AegisName: Jur_ | |
| Name: Jur | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 19500 | |
| Weight: 800 | |
| Attack: 125 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1252 | |
| AegisName: Katar | |
| Name: Katar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 41000 | |
| Weight: 1200 | |
| Attack: 148 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 1253 | |
| AegisName: Katar_ | |
| Name: Katar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 41000 | |
| Weight: 1200 | |
| Attack: 148 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 1254 | |
| AegisName: Jamadhar | |
| Name: Jamadhar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 37200 | |
| Weight: 1500 | |
| Attack: 165 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1255 | |
| AegisName: Jamadhar_ | |
| Name: Jamadhar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 37200 | |
| Weight: 1500 | |
| Attack: 165 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1256 | |
| AegisName: Katar_Of_Cold_Icicle | |
| Name: Katar of Frozen Icicle | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| bonus2 bAddEff,Eff_Freeze,500; | |
| - Id: 1257 | |
| AegisName: Katar_Of_Thornbush | |
| Name: Katar of Quaking | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| bonus2 bAddEff,Eff_Blind,500; | |
| - Id: 1258 | |
| AegisName: Katar_Of_Raging_Blaze | |
| Name: Katar of Raging Blaze | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus2 bAddEff,Eff_Silence,500; | |
| - Id: 1259 | |
| AegisName: Katar_Of_Piercing_Wind | |
| Name: Katar of Piercing Wind | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus2 bAddEff,Eff_Sleep,500; | |
| - Id: 1260 | |
| AegisName: Ghoul_Leg | |
| Name: Sharpened Legbone of Ghoul | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 52500 | |
| Weight: 1700 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Undead; | |
| - Id: 1261 | |
| AegisName: Infiltrator | |
| Name: Infiltrator | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 57000 | |
| Weight: 1500 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,50; | |
| bonus2 bAddRace,RC_Player_Human,50; | |
| bonus bDef,3; | |
| bonus bFlee,5; | |
| bonus bFlee2,2; | |
| - Id: 1262 | |
| AegisName: Nail_Of_Loki | |
| Name: Loki's Nail | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Bleeding,300; | |
| - Id: 1263 | |
| AegisName: Unholy_Touch | |
| Name: Unholy Touch | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1250 | |
| Attack: 151 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddEff,Eff_Curse,200; | |
| bonus bCritical,-1; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1264 | |
| AegisName: Various_Jur | |
| Name: Specialty Jur | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff2,Eff_Bleeding,10; | |
| - Id: 1265 | |
| AegisName: Bloody_Roar | |
| Name: Bloody Roar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus bFlee,-(readparam(bAgi)+BaseLevel); | |
| bonus bHPrecovRate,-100; | |
| bonus bSPrecovRate,-100; | |
| - Id: 1266 | |
| AegisName: Infiltrator_ | |
| Name: Infiltrator | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 57000 | |
| Weight: 1500 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,50; | |
| bonus2 bAddRace,RC_Player_Human,50; | |
| bonus bDef,3; | |
| bonus bFlee,5; | |
| bonus bFlee2,2; | |
| - Id: 1267 | |
| AegisName: Infiltrator_C | |
| Name: Infiltrator | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 1 | |
| Attack: 189 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus bDef,3; | |
| bonus bFlee,5; | |
| bonus bFlee2,2; | |
| bonus bAspdRate,5; | |
| - Id: 1268 | |
| AegisName: Wild_Beast_Claw | |
| Name: Wild Beast Claw | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1450 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| if (getrefine()>=9) | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; | |
| else | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; | |
| - Id: 1269 | |
| AegisName: Inverse_Scale | |
| Name: Inverse Scale | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; | |
| - Id: 1270 | |
| AegisName: Drill_Katar | |
| Name: Drill Katar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1400 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,30; | |
| bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; | |
| - Id: 1271 | |
| AegisName: Blood_Tears | |
| Name: Blood Tears | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1700 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| if (getrefine()>=9) | |
| bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; | |
| else | |
| bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30; | |
| - Id: 1272 | |
| AegisName: Scratcher | |
| Name: Scratcher | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1273 | |
| AegisName: Bloody_Roar_C | |
| Name: Refined Bloody Roar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 1 | |
| Attack: 148 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus2 bHPRegenRate,3,5000; | |
| - Id: 1274 | |
| AegisName: Unholy_Touch_C | |
| Name: Refined Unholy Touch | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 1 | |
| Attack: 179 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddEff,Eff_Curse,5000; | |
| bonus bCritical,-1; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1275 | |
| AegisName: Katar_Of_Cold_Icicle_ | |
| Name: Katar of Frozen Icicle | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| bonus2 bAddEff,Eff_Freeze,500; | |
| - Id: 1276 | |
| AegisName: Katar_Of_Thornbush_ | |
| Name: Katar of Quaking | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| bonus2 bAddEff,Eff_Blind,500; | |
| - Id: 1277 | |
| AegisName: Katar_Of_Raging_Blaze_ | |
| Name: Katar of Raging Blaze | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus2 bAddEff,Eff_Silence,500; | |
| - Id: 1278 | |
| AegisName: Katar_Of_Piercing_Wind_ | |
| Name: Katar of Piercing Wind | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 45000 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus2 bAddEff,Eff_Sleep,500; | |
| - Id: 1279 | |
| AegisName: BF_Katar1 | |
| Name: Brave Carnage Katar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bDex,1; | |
| bonus bLuk,1; | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1280 | |
| AegisName: BF_Katar2 | |
| Name: Valorous Carnage Katar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bDex,1; | |
| bonus bLuk,1; | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus bCritAtkRate,20; | |
| bonus bAspdRate,5; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1281 | |
| AegisName: Krieger_Katar1 | |
| Name: Glorious Bloody Roar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) | |
| autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| - Id: 1282 | |
| AegisName: Krieger_Katar2 | |
| Name: Glorious Jamadhar | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bCriticalAddRace,RC_DemiHuman,5; | |
| bonus2 bCriticalAddRace,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) | |
| autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| - Id: 1283 | |
| AegisName: Katar_Of_Speed | |
| Name: Katar Of Speed | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Attack: 175 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSkillAtk,"AS_SONICBLOW",25; | |
| bonus bAspdRate,3; | |
| - Id: 1284 | |
| AegisName: Krishna | |
| Name: Krishna | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"AS_GRIMTOOTH",10; | |
| if (getskilllv("AS_SONICBLOW")) { | |
| bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5; | |
| } | |
| else { | |
| bonus3 bAutoSpell,"AS_SONICBLOW",1,5; | |
| } | |
| - Id: 1285 | |
| AegisName: Cakram | |
| Name: Chakram | |
| Type: Weapon | |
| SubType: Katar | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| if (getskilllv("AS_KATAR") == 10) { | |
| bonus bHit,10; | |
| } | |
| bonus2 bSkillAtk,"ASC_METEORASSAULT",20; | |
| - Id: 1286 | |
| AegisName: Jamadhar_C | |
| Name: Jamadhar | |
| Type: Weapon | |
| SubType: Katar | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 1301 | |
| AegisName: Axe | |
| Name: Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 500 | |
| Weight: 800 | |
| Attack: 38 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1302 | |
| AegisName: Axe_ | |
| Name: Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 500 | |
| Weight: 800 | |
| Attack: 38 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1303 | |
| AegisName: Axe__ | |
| Name: Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 500 | |
| Weight: 800 | |
| Attack: 38 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1304 | |
| AegisName: Orcish_Axe | |
| Name: Orcish Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 75 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1305 | |
| AegisName: Cleaver | |
| Name: Cleaver | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus3 bAddMonsterDropItem,517,RC_Brute,3000; | |
| - Id: 1306 | |
| AegisName: War_Axe | |
| Name: War Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 20 | |
| Weight: 4200 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 76 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bLuk,2; | |
| - Id: 1307 | |
| AegisName: Windhawk | |
| Name: Windhawk | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 18000 | |
| Weight: 1500 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bAspdRate,5; | |
| - Id: 1308 | |
| AegisName: Golden_Axe | |
| Name: Golden Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 20 | |
| Weight: 3000 | |
| Attack: 170 | |
| Range: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| - Id: 1309 | |
| AegisName: Orcish_Axe_ | |
| Name: Orcish Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 75 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1310 | |
| AegisName: Krieger_Onehand_Axe1 | |
| Name: Glorious Cleaver | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| bonus bAspdRate,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus bAspdRate,5; | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; | |
| bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; | |
| } | |
| - Id: 1311 | |
| AegisName: Vecer_Axe | |
| Name: Vecer Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| if (readparam(bLuk)>=90) { | |
| bonus bBaseAtk,20; | |
| } | |
| if (readparam(bDex)>=90) { | |
| bonus bCritical,5; | |
| } | |
| if (readparam(bDex)>=90 || readparam(bLuk)>=90) { | |
| bonus2 bSkillAtk,"MC_MAMMONITE",15; | |
| } | |
| - Id: 1312 | |
| AegisName: Orcish_Axe_C | |
| Name: Orcish Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,70; | |
| - Id: 1313 | |
| AegisName: Tourist_Axe | |
| Name: Tourist Axe | |
| Type: Weapon | |
| SubType: 1hAxe | |
| Weight: 500 | |
| Attack: 77 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 1314 | |
| AegisName: F_Tomahawk_C | |
| Name: Tomahawk | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 2 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| - Id: 1315 | |
| AegisName: F_Right_Epsilon_C | |
| Name: Light Epsilon | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 1 | |
| Attack: 229 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bStr,10; | |
| - Id: 1351 | |
| AegisName: Battle_Axe | |
| Name: Battle Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 5400 | |
| Weight: 1500 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1352 | |
| AegisName: Battle_Axe_ | |
| Name: Battle Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 5400 | |
| Weight: 1500 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1353 | |
| AegisName: Battle_Axe__ | |
| Name: Battle Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 5400 | |
| Weight: 1500 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1354 | |
| AegisName: Hammer | |
| Name: Hammer | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 15500 | |
| Weight: 2000 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 16 | |
| Refineable: true | |
| - Id: 1355 | |
| AegisName: Hammer_ | |
| Name: Hammer | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 15500 | |
| Weight: 2000 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 16 | |
| Refineable: true | |
| - Id: 1356 | |
| AegisName: Hammer__ | |
| Name: Hammer | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 15500 | |
| Weight: 2000 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 16 | |
| Refineable: true | |
| - Id: 1357 | |
| AegisName: Buster | |
| Name: Buster | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 34000 | |
| Weight: 2200 | |
| Attack: 155 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1358 | |
| AegisName: Buster_ | |
| Name: Buster | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 34000 | |
| Weight: 2200 | |
| Attack: 155 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1359 | |
| AegisName: Buster__ | |
| Name: Buster | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 34000 | |
| Weight: 2200 | |
| Attack: 155 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1360 | |
| AegisName: Two_Handed_Axe | |
| Name: Two-Handed Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 55000 | |
| Weight: 2500 | |
| Attack: 185 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1361 | |
| AegisName: Two_Handed_Axe_ | |
| Name: Two-Handed Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 55000 | |
| Weight: 2500 | |
| Attack: 185 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1362 | |
| AegisName: Two_Handed_Axe__ | |
| Name: Two-Handed Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 55000 | |
| Weight: 2500 | |
| Attack: 185 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1363 | |
| AegisName: Brood_Axe | |
| Name: Bloody Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 4000 | |
| Attack: 170 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,10; | |
| bonus bSpeedRate,25; | |
| - Id: 1364 | |
| AegisName: Great_Axe | |
| Name: Great Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 1800 | |
| Attack: 187 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddSkillBlow,"MC_MAMMONITE",5; | |
| bonus2 bAddEff,Eff_Stun,1500; | |
| - Id: 1365 | |
| AegisName: Sabbath | |
| Name: Sabbath | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 2300 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bComaRace,RC_Demon,50; | |
| bonus2 bCriticalAddRace,RC_Undead,50; | |
| - Id: 1366 | |
| AegisName: Right_Epsilon | |
| Name: Light Epsilon | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 2300 | |
| Attack: 180 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| skill "AL_HEAL",3; | |
| bonus2 bAddRace,RC_Demon,3; | |
| - Id: 1367 | |
| AegisName: Slaughter | |
| Name: Slaughter | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| bonus bIgnoreDefRace,RC_Brute; | |
| bonus2 bComaRace,RC_Brute,40; | |
| bonus bIgnoreDefRace,RC_Player_Doram; | |
| bonus2 bComaRace,RC_Player_Doram,40; | |
| - Id: 1368 | |
| AegisName: Tomahawk | |
| Name: Tomahawk | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 165 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| skill "ITM_TOMAHAWK",1; | |
| - Id: 1369 | |
| AegisName: Guillotine | |
| Name: Guillotine | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 3000 | |
| Attack: 215 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus2 bComaRace,RC_DemiHuman,30; | |
| bonus2 bComaRace,RC_Player_Human,30; | |
| bonus2 bSPDrainValueRace,RC_DemiHuman,2; | |
| bonus2 bSPDrainValueRace,RC_Player_Human,2; | |
| bonus2 bSPGainRace,RC_DemiHuman,20; | |
| bonus2 bSPGainRace,RC_Player_Human,20; | |
| - Id: 1370 | |
| AegisName: Doom_Slayer | |
| Name: Doom Slayer | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 6000 | |
| Attack: 10 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,-40; | |
| bonus bUseSPrate,100; | |
| if (readparam(bStr)>=95) { | |
| bonus bBaseAtk,340; | |
| bonus2 bAddEff,Eff_Stun,3000; | |
| bonus bBreakArmorRate,500; | |
| } | |
| - Id: 1371 | |
| AegisName: Doom_Slayer_ | |
| Name: Doom Slayer | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 6000 | |
| Attack: 10 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,-40; | |
| bonus bUseSPrate,100; | |
| if (readparam(bStr)>=95) { | |
| bonus bBaseAtk,340; | |
| bonus2 bAddEff,Eff_Stun,3000; | |
| bonus bBreakArmorRate,500; | |
| } | |
| - Id: 1372 | |
| AegisName: Right_Epsilon_C | |
| Name: Light Epsilon | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 1 | |
| Attack: 229 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| skill "AL_HEAL",3; | |
| bonus2 bAddRace,RC_Demon,3; | |
| bonus bStr,10; | |
| bonus bSpeedRate,25; | |
| - Id: 1373 | |
| AegisName: Brood_Axe_C | |
| Name: Refined Bloody Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 2 | |
| Attack: 205 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bStr,20; | |
| bonus bSpeedRate,25; | |
| bonus bAspdRate,5; | |
| - Id: 1374 | |
| AegisName: Tomahawk_C | |
| Name: Tomahawk | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 2 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| skill "ITM_TOMAHAWK",1; | |
| - Id: 1375 | |
| AegisName: Berdysz | |
| Name: Berdysz | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 200 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubSize,Size_Medium,13; | |
| bonus2 bSubSize,Size_Large,15; | |
| - Id: 1376 | |
| AegisName: Heart_Breaker | |
| Name: Heart Breaker | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 175 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,20+getrefine(); | |
| bonus bAspdRate,5; | |
| if (Class == Job_Whitesmith || Class == Job_Creator) | |
| bonus3 bAutoSpell,"BS_HAMMERFALL",3,30; | |
| - Id: 1377 | |
| AegisName: Hurricane_Fury | |
| Name: Hurricane's Fury | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 3500 | |
| Attack: 332 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubSize,Size_Medium,10+getrefine(); | |
| bonus bAspdRate,getrefine(); | |
| bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; | |
| - Id: 1378 | |
| AegisName: Great_Axe_C | |
| Name: Refined Great Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 1 | |
| Attack: 215 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bStr,5; | |
| bonus bHit,20; | |
| bonus2 bAddSkillBlow,"MC_MAMMONITE",5; | |
| bonus2 bAddEff,Eff_Stun,2000; | |
| - Id: 1379 | |
| AegisName: BF_Two_Handed_Axe1 | |
| Name: Valorous Insane Battle Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,3; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1380 | |
| AegisName: BF_Two_Handed_Axe2 | |
| Name: Brave Insane Battle Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,3; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1381 | |
| AegisName: N_Battle_Axe | |
| Name: Novice Battle Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Attack: 100 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 1382 | |
| AegisName: Krieger_Twohand_Axe1 | |
| Name: Glorious Two-Handed Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Attack: 220 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; | |
| } | |
| if (getrefine()>8) { | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; | |
| bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; | |
| bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; | |
| } | |
| - Id: 1383 | |
| AegisName: Holy_Celestial_Axe | |
| Name: Celestial Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bVit,10; | |
| bonus2 bAddRace,RC_Undead,10; | |
| bonus3 bAutoSpell,"AL_BLESSING",5,50; | |
| - Id: 1384 | |
| AegisName: Veteran_Axe | |
| Name: Veteran Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 10000 | |
| Weight: 3000 | |
| Attack: 250 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| if (getskilllv("BS_DAGGER") == 3) { | |
| bonus bBaseAtk,10; | |
| } | |
| if (getskilllv("BS_SWORD") == 3) { | |
| bonus bBaseAtk,10; | |
| } | |
| if (getskilllv("BS_TWOHANDSWORD") == 3) { | |
| bonus bBaseAtk,10; | |
| } | |
| if (getskilllv("BS_KNUCKLE") == 3) { | |
| bonus bBaseAtk,10; | |
| } | |
| if (getskilllv("BS_SPEAR") == 3) { | |
| bonus bBaseAtk,10; | |
| } | |
| if (getskilllv("BS_AXE") == 3) { | |
| bonus bBaseAtk,10; | |
| } | |
| if (getskilllv("BS_MACE") == 3) { | |
| bonus bBaseAtk,10; | |
| } | |
| bonus bVit,2; | |
| - Id: 1385 | |
| AegisName: Bradium_Stonehammer | |
| Name: Bradium Stone Hammer | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 2700 | |
| Attack: 210 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); | |
| - Id: 1386 | |
| AegisName: Doom_Slayer_I | |
| Name: Doom Slayer | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Attack: 20 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| if (readparam(bStr)>=95) { | |
| bonus bBaseAtk,400; | |
| bonus2 bAddEff,Eff_Stun,3000; | |
| bonus bAspdRate,-25; | |
| bonus bUseSPrate,100; | |
| bonus bBreakArmorRate,500; | |
| } | |
| - Id: 1387 | |
| AegisName: Giant_Axe | |
| Name: Giant Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 20 | |
| Weight: 4000 | |
| Attack: 330 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"WS_CARTTERMINATION",15; | |
| if (readparam(bStr)>=95) { | |
| bonus bHit,10; | |
| bonus bAspdRate,3; | |
| } | |
| - Id: 1388 | |
| AegisName: Two_Handed_Axe_C | |
| Name: Two-Handed Axe | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Attack: 220 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 1389 | |
| AegisName: E_Tomahawk_C | |
| Name: Tomahawk | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 2 | |
| Attack: 200 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| - Id: 1390 | |
| AegisName: E_Right_Epsilon_C | |
| Name: Light Epsilon | |
| Type: Weapon | |
| SubType: 2hAxe | |
| Buy: 1 | |
| Attack: 229 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bStr,10; | |
| - Id: 1401 | |
| AegisName: Javelin | |
| Name: Javelin | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 150 | |
| Weight: 700 | |
| Attack: 28 | |
| Range: 3 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1402 | |
| AegisName: Javelin_ | |
| Name: Javelin | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 150 | |
| Weight: 700 | |
| Attack: 28 | |
| Range: 3 | |
| Slots: 4 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1403 | |
| AegisName: Javelin__ | |
| Name: Javelin | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 150 | |
| Weight: 700 | |
| Attack: 28 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1404 | |
| AegisName: Spear | |
| Name: Spear | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 1700 | |
| Weight: 850 | |
| Attack: 44 | |
| Range: 3 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1405 | |
| AegisName: Spear_ | |
| Name: Spear | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 1700 | |
| Weight: 850 | |
| Attack: 44 | |
| Range: 3 | |
| Slots: 4 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1406 | |
| AegisName: Spear__ | |
| Name: Spear | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 1700 | |
| Weight: 850 | |
| Attack: 44 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1407 | |
| AegisName: Pike | |
| Name: Pike | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 3450 | |
| Weight: 1000 | |
| Attack: 60 | |
| Range: 3 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1408 | |
| AegisName: Pike_ | |
| Name: Pike | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 3450 | |
| Weight: 1000 | |
| Attack: 60 | |
| Range: 3 | |
| Slots: 4 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1409 | |
| AegisName: Pike__ | |
| Name: Pike | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 3450 | |
| Weight: 1000 | |
| Attack: 60 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1410 | |
| AegisName: Lance | |
| Name: Lance | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 60000 | |
| Weight: 2500 | |
| Attack: 185 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1411 | |
| AegisName: Lance_ | |
| Name: Lance | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 60000 | |
| Weight: 2500 | |
| Attack: 185 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1412 | |
| AegisName: Lance__ | |
| Name: Lance | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 60000 | |
| Weight: 2500 | |
| Attack: 185 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1413 | |
| AegisName: Gungnir | |
| Name: Gungnir | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 120 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bPerfectHitRate,25; | |
| bonus bHit,30; | |
| - Id: 1414 | |
| AegisName: Gelerdria | |
| Name: Gelerdria | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 145 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| bonus bMaxHP,800; | |
| bonus bMaxSP,-50; | |
| - Id: 1415 | |
| AegisName: Skewer | |
| Name: Brocca | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 850 | |
| Attack: 100 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefClass,Class_Normal; | |
| bonus2 bAddEle,Ele_Neutral,25; | |
| - Id: 1416 | |
| AegisName: Tjungkuletti | |
| Name: Tjungkuletti | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 95 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bSPDrainValue,1; | |
| bonus bSPGainValue,5; | |
| - Id: 1417 | |
| AegisName: Pole_Axe | |
| Name: Pole Axe | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 3800 | |
| Attack: 160 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 71 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| - Id: 1418 | |
| AegisName: Gungnir_ | |
| Name: Gungnir | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 120 | |
| Range: 3 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bPerfectHitRate,25; | |
| bonus bHit,30; | |
| - Id: 1419 | |
| AegisName: Pole_Axe_C | |
| Name: Pole Axe | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 1 | |
| Weight: 4800 | |
| Attack: 159 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| - Id: 1420 | |
| AegisName: Long_Horn | |
| Name: Long Horn | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 150 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus2 bAddEff,Eff_Bleeding,500; | |
| skill "TF_DETOXIFY",1; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1421 | |
| AegisName: Battle_Hook | |
| Name: Battle Hook | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 140 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Stun,500; | |
| bonus2 bAddRace,RC_DemiHuman,20; | |
| bonus2 bAddRace,RC_Player_Human,20; | |
| skill "KN_PIERCE",3; | |
| - Id: 1422 | |
| AegisName: Hunting_Spear | |
| Name: Hunting Spear | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 4200 | |
| Attack: 180 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Brute; | |
| bonus bIgnoreDefRace,RC_Player_Doram; | |
| bonus3 bAddMonsterDropItem,517,RC_Brute,1000; | |
| bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; | |
| - Id: 1423 | |
| AegisName: Pole_XO | |
| Name: Pole XO | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1424 | |
| AegisName: Skewer_C | |
| Name: Refined Brocca | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 1 | |
| Attack: 149 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bIgnoreDefClass,Class_Normal; | |
| bonus2 bAddSize,Size_Medium,20; | |
| - Id: 1425 | |
| AegisName: BF_Spear1 | |
| Name: Assaulter Spear | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Attack: 60 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (BaseJob == Job_Crusader) | |
| bonus bAspdRate,20; | |
| - Id: 1426 | |
| AegisName: Krieger_Onehand_Spear1 | |
| Name: Glorious Spear | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| bonus bAspdRate,10; | |
| } | |
| if (getrefine()>8) { | |
| if (BaseJob == Job_Knight) | |
| bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; | |
| else if (BaseJob == Job_Crusader) | |
| bonus3 bAutoSpell,"PA_PRESSURE",5,100; | |
| } | |
| - Id: 1427 | |
| AegisName: Spear_Of_Excellent | |
| Name: Spear Of Excellent | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Attack: 160 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSkillAtk,"SM_MAGNUM",25; | |
| bonus bStr,2; | |
| - Id: 1428 | |
| AegisName: Long_Horn_M | |
| Name: Long Horn | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 150 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus2 bAddEff,Eff_Bleeding,500; | |
| skill "TF_DETOXIFY",1; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1429 | |
| AegisName: Hunting_Spear_M | |
| Name: Hunting Spear | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 20 | |
| Weight: 4200 | |
| Attack: 180 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Brute; | |
| bonus bIgnoreDefRace,RC_Player_Doram; | |
| bonus3 bAddMonsterDropItem,517,RC_Brute,1000; | |
| bonus3 bAutoSpell,"LK_JOINTBEAT",3,500; | |
| - Id: 1430 | |
| AegisName: Pike_C | |
| Name: Pike | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Attack: 74 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,70; | |
| - Id: 1431 | |
| AegisName: F_Pole_Axe_C | |
| Name: Pole Axe | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 1 | |
| Weight: 4800 | |
| Attack: 195 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| - Id: 1432 | |
| AegisName: E_Pole_Axe_C | |
| Name: Pole Axe | |
| Type: Weapon | |
| SubType: 1hSpear | |
| Buy: 1 | |
| Weight: 4800 | |
| Attack: 195 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| - Id: 1451 | |
| AegisName: Guisarme | |
| Name: Guisarme | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 13000 | |
| Weight: 1000 | |
| Attack: 84 | |
| Range: 3 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1452 | |
| AegisName: Guisarme_ | |
| Name: Guisarme | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 13000 | |
| Weight: 1000 | |
| Attack: 84 | |
| Range: 3 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1453 | |
| AegisName: Guisarme__ | |
| Name: Guisarme | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 13000 | |
| Weight: 1000 | |
| Attack: 84 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1454 | |
| AegisName: Glaive | |
| Name: Glaive | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20000 | |
| Weight: 1200 | |
| Attack: 104 | |
| Range: 3 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1455 | |
| AegisName: Glaive_ | |
| Name: Glaive | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20000 | |
| Weight: 1200 | |
| Attack: 104 | |
| Range: 3 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1456 | |
| AegisName: Glaive__ | |
| Name: Glaive | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20000 | |
| Weight: 1200 | |
| Attack: 104 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1457 | |
| AegisName: Partizan | |
| Name: Partizan | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 27000 | |
| Weight: 2000 | |
| Attack: 124 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1458 | |
| AegisName: Partizan_ | |
| Name: Partizan | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 27000 | |
| Weight: 2000 | |
| Attack: 124 | |
| Range: 3 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1459 | |
| AegisName: Partizan__ | |
| Name: Partizan | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 27000 | |
| Weight: 2000 | |
| Attack: 124 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1460 | |
| AegisName: Trident | |
| Name: Trident | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 51000 | |
| Weight: 1200 | |
| Attack: 150 | |
| Range: 3 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1461 | |
| AegisName: Trident_ | |
| Name: Trident | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 51000 | |
| Weight: 1200 | |
| Attack: 150 | |
| Range: 3 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1462 | |
| AegisName: Trident__ | |
| Name: Trident | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 51000 | |
| Weight: 1200 | |
| Attack: 150 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1463 | |
| AegisName: Halberd | |
| Name: Halberd | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 54000 | |
| Weight: 2500 | |
| Attack: 165 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1464 | |
| AegisName: Halberd_ | |
| Name: Halberd | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 54000 | |
| Weight: 2500 | |
| Attack: 165 | |
| Range: 3 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1465 | |
| AegisName: Halberd__ | |
| Name: Halberd | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 54000 | |
| Weight: 2500 | |
| Attack: 165 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1466 | |
| AegisName: Crescent_Scythe | |
| Name: Crescent Scythe | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 180 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,30; | |
| bonus bHit,10; | |
| - Id: 1467 | |
| AegisName: Bill_Guisarme | |
| Name: Bill Guisarme | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 183 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_Brute,10; | |
| bonus2 bAddRace,RC_Player_Doram,10; | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| - Id: 1468 | |
| AegisName: Zephyrus | |
| Name: Zephyrus | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 170 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus2 bAddEff,Eff_Silence,200; | |
| bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; | |
| - Id: 1469 | |
| AegisName: Longinus's_Spear | |
| Name: Longinus's Spear | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 180 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddRace,RC_DemiHuman,10; | |
| bonus2 bAddRace,RC_Player_Human,10; | |
| bonus2 bAddRace,RC_Angel,10; | |
| - Id: 1470 | |
| AegisName: Brionac | |
| Name: Brionac | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 3000 | |
| Attack: 190 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| skill "AL_HEAL",5; | |
| bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; | |
| bonus2 bAddClass,Class_Boss,5; | |
| - Id: 1471 | |
| AegisName: Hell_Fire | |
| Name: Hellfire | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 3500 | |
| Attack: 200 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus3 bAutoSpell,"MG_FIREBALL",3,100; | |
| bonus bStr,3; | |
| - Id: 1472 | |
| AegisName: Staff_Of_Soul | |
| Name: Soul Staff | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 1400 | |
| Attack: 25 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 73 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,5; | |
| bonus bAgi,2; | |
| bonus bMatkRate,15; | |
| - Id: 1473 | |
| AegisName: Wizardy_Staff | |
| Name: Wizardry Staff | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 2400 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 90 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,6; | |
| bonus bDex,2; | |
| bonus bMatkRate,15; | |
| - Id: 1474 | |
| AegisName: Gae_Bolg | |
| Name: Gae Bolg | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 160 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| bonus2 bAddClass,Class_Boss,10; | |
| - Id: 1475 | |
| AegisName: Horseback_Lance | |
| Name: Equestrian's Spear | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 3700 | |
| Attack: 200 | |
| Range: 4 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| - Id: 1476 | |
| AegisName: Crescent_Scythe_ | |
| Name: Crescent Scythe | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 180 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,30; | |
| bonus bHit,10; | |
| - Id: 1477 | |
| AegisName: Spectral_Spear | |
| Name: Spectral Spear | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 170 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEle,Ele_Dark,20; | |
| bonus2 bAddRace,RC_Demon,20; | |
| bonus2 bAddRace,RC_Undead,20; | |
| bonus2 bSubEle,Ele_Dark,10; | |
| bonus2 bSubRace,RC_Demon,10; | |
| bonus2 bSubRace,RC_Undead,10; | |
| bonus2 bAddEff2,Eff_Confusion,1000; | |
| bonus bHPGainValue,50; | |
| - Id: 1478 | |
| AegisName: Ahlspiess | |
| Name: Ahlspiess | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 120 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefClass,Class_Normal; | |
| bonus bIgnoreDefClass,Class_Boss; | |
| bonus2 bAddRace,RC_DemiHuman,10; | |
| bonus2 bAddRace,RC_Player_Human,10; | |
| bonus3 bAutoSpell,"KN_PIERCE",5,30; | |
| - Id: 1479 | |
| AegisName: Spectral_Spear_ | |
| Name: Spectral Spear | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 170 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEle,Ele_Dark,20; | |
| bonus2 bAddRace,RC_Demon,20; | |
| bonus2 bAddRace,RC_Undead,20; | |
| bonus2 bSubEle,Ele_Dark,10; | |
| bonus2 bSubRace,RC_Demon,10; | |
| bonus2 bSubRace,RC_Undead,10; | |
| bonus2 bAddEff2,Eff_Confusion,1000; | |
| bonus bHPGainValue,50; | |
| - Id: 1480 | |
| AegisName: Gae_Bolg_ | |
| Name: Gae Bolg | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 160 | |
| Range: 3 | |
| Slots: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| bonus2 bAddClass,Class_Boss,10; | |
| - Id: 1481 | |
| AegisName: Zephyrus_ | |
| Name: Zephyrus | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 170 | |
| Range: 3 | |
| Slots: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus2 bAddEff,Eff_Silence,200; | |
| bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; | |
| - Id: 1482 | |
| AegisName: BF_Lance1 | |
| Name: Assaulter Lance | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Attack: 160 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus2 bAddRace,RC_DemiHuman,25; | |
| bonus2 bAddRace,RC_Player_Human,25; | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1483 | |
| AegisName: Ivory_Lance | |
| Name: Ivory Lance | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 160 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bAspdRate,3; | |
| bonus2 bAddEff,Eff_Bleeding,300; | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; | |
| skill "KN_SPEARSTAB",5; | |
| - Id: 1484 | |
| AegisName: Cardo | |
| Name: Cardo | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 5600 | |
| Attack: 150 | |
| Range: 3 | |
| Slots: 1 | |
| Jobs: | |
| Knight: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,-10; | |
| bonus bDef,getrefine()/2; | |
| - Id: 1485 | |
| AegisName: Battle_Fork | |
| Name: Battle Fork | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 112 | |
| Range: 3 | |
| Slots: 4 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| - Id: 1486 | |
| AegisName: Krieger_Twohand_Spear1 | |
| Name: Glorious Lance | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Attack: 220 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,70; | |
| bonus2 bAddRace,RC_Player_Human,70; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| if (BaseJob == Job_Knight) | |
| bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; | |
| else if (BaseJob == Job_Crusader) | |
| bonus3 bAutoSpell,"PA_PRESSURE",5,200; | |
| } | |
| - Id: 1487 | |
| AegisName: Lance_C | |
| Name: Lance | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Attack: 220 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,50; | |
| - Id: 1488 | |
| AegisName: Ahlspiess_C | |
| Name: Ahlspiess | |
| Type: Weapon | |
| SubType: 2hSpear | |
| Buy: 20 | |
| Attack: 135 | |
| Range: 3 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefClass,Class_Normal; | |
| bonus bIgnoreDefClass,Class_Boss; | |
| bonus2 bAddRace,RC_DemiHuman,10; | |
| bonus2 bAddRace,RC_Player_Human,10; | |
| bonus3 bAutoSpell,"KN_PIERCE",5,30; | |
| - Id: 1501 | |
| AegisName: Club | |
| Name: Club | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 120 | |
| Weight: 700 | |
| Attack: 23 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1502 | |
| AegisName: Club_ | |
| Name: Club | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 120 | |
| Weight: 700 | |
| Attack: 23 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1503 | |
| AegisName: Club__ | |
| Name: Club | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 120 | |
| Weight: 700 | |
| Attack: 23 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1504 | |
| AegisName: Mace | |
| Name: Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 1600 | |
| Weight: 800 | |
| Attack: 37 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1505 | |
| AegisName: Mace_ | |
| Name: Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 1600 | |
| Weight: 800 | |
| Attack: 37 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1506 | |
| AegisName: Mace__ | |
| Name: Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 1600 | |
| Weight: 800 | |
| Attack: 37 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1507 | |
| AegisName: Smasher | |
| Name: Smasher | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 9000 | |
| Weight: 1000 | |
| Attack: 54 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1508 | |
| AegisName: Smasher_ | |
| Name: Smasher | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 9000 | |
| Weight: 1000 | |
| Attack: 54 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1509 | |
| AegisName: Smasher__ | |
| Name: Smasher | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 9000 | |
| Weight: 1000 | |
| Attack: 54 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1510 | |
| AegisName: Flail | |
| Name: Flail | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 16000 | |
| Weight: 900 | |
| Attack: 69 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1511 | |
| AegisName: Flail_ | |
| Name: Flail | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 16000 | |
| Weight: 900 | |
| Attack: 69 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1512 | |
| AegisName: Flail__ | |
| Name: Flail | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 16000 | |
| Weight: 900 | |
| Attack: 69 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1513 | |
| AegisName: Morning_Star | |
| Name: Morning Star | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 41000 | |
| Weight: 1500 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1514 | |
| AegisName: Morning_Star_ | |
| Name: Morning Star | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 41000 | |
| Weight: 1500 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1515 | |
| AegisName: Morning_Star__ | |
| Name: Morning Star | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 41000 | |
| Weight: 1500 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1516 | |
| AegisName: Sword_Mace | |
| Name: Sword Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 50000 | |
| Weight: 1200 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1517 | |
| AegisName: Sword_Mace_ | |
| Name: Sword Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 50000 | |
| Weight: 1200 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1518 | |
| AegisName: Sword_Mace__ | |
| Name: Sword Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 50000 | |
| Weight: 1200 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1519 | |
| AegisName: Chain | |
| Name: Chain | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 23000 | |
| Weight: 800 | |
| Attack: 84 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1520 | |
| AegisName: Chain_ | |
| Name: Chain | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 23000 | |
| Weight: 800 | |
| Attack: 84 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1521 | |
| AegisName: Chain__ | |
| Name: Chain | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 23000 | |
| Weight: 800 | |
| Attack: 84 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1522 | |
| AegisName: Stunner | |
| Name: Stunner | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 60000 | |
| Weight: 2000 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Stun,1000; | |
| - Id: 1523 | |
| AegisName: Spike | |
| Name: Spike | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 85 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,40; | |
| bonus bDefRate,-67; | |
| bonus bDef2Rate,-67; | |
| - Id: 1524 | |
| AegisName: Golden_Mace | |
| Name: Golden Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_Undead,10; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1525 | |
| AegisName: Long_Mace | |
| Name: Long Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 135 | |
| Range: 3 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bLongAtkDef,10; | |
| - Id: 1526 | |
| AegisName: Slash | |
| Name: Slash | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 145 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_Undead,15; | |
| bonus2 bComaRace,RC_Undead,10; | |
| bonus2 bExpAddRace,RC_Undead,5; | |
| - Id: 1527 | |
| AegisName: Quadrille | |
| Name: Quadrille | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 165 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_Undead,10; | |
| bonus2 bAddRace,RC_DemiHuman,10; | |
| bonus2 bAddRace,RC_Player_Human,10; | |
| bonus2 bAddEle,Ele_Earth,10; | |
| - Id: 1528 | |
| AegisName: Grand_Cross | |
| Name: Grand Cross | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| skill "PR_TURNUNDEAD",3; | |
| bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; | |
| bonus2 bSPDrainValueRace,RC_Undead,1; | |
| bonus2 bSPGainRace,RC_Undead,3; | |
| - Id: 1529 | |
| AegisName: Iron_Driver | |
| Name: Iron Driver | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 3000 | |
| Attack: 155 | |
| Range: 2 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 78 | |
| Refineable: true | |
| - Id: 1530 | |
| AegisName: Mjolnir | |
| Name: Mjolnir | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 6000 | |
| Attack: 250 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 95 | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bDex,40; | |
| bonus bStr,15; | |
| bonus bAspdRate,10; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1531 | |
| AegisName: Spanner | |
| Name: Wrench | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Blind,100; | |
| bonus2 bAddEff,Eff_Stun,100; | |
| bonus2 bAddEff,Eff_Poison,100; | |
| bonus2 bAddEff,Eff_Freeze,100; | |
| - Id: 1532 | |
| AegisName: Stunner_ | |
| Name: Stunner | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 60000 | |
| Weight: 2000 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Stun,1000; | |
| - Id: 1533 | |
| AegisName: Warrior_Balmung | |
| Name: Warrior's Balmung | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 170 | |
| Range: 1 | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,5; | |
| - Id: 1534 | |
| AegisName: Spanner_C | |
| Name: Wrench | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 2 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| Script: | | |
| bonus2 bAddEff,Eff_Blind,100; | |
| bonus2 bAddEff,Eff_Stun,100; | |
| bonus2 bAddEff,Eff_Poison,100; | |
| bonus2 bAddEff,Eff_Freeze,100; | |
| - Id: 1535 | |
| AegisName: Hollgrehenn_Hammer | |
| Name: Hollgrehenn's Hammer | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 4444 | |
| Weight: 44 | |
| Attack: 4 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakArmorRate,100; | |
| bonus bBreakWeaponRate,100; | |
| if (readparam(bStr)>=44) { | |
| bonus bBaseAtk,44; | |
| } | |
| - Id: 1536 | |
| AegisName: Good_Morning_Star | |
| Name: Good Morning Star | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1537 | |
| AegisName: Quadrille_C | |
| Name: Refined Quadrille | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 1 | |
| Attack: 193 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,30; | |
| bonus2 bAddRace,RC_Player_Human,30; | |
| bonus2 bAddRace,RC_Demon,40; | |
| bonus2 bAddRace,RC_Undead,40; | |
| - Id: 1538 | |
| AegisName: Spike_ | |
| Name: Spike | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 85 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,40; | |
| bonus bDefRate,-67; | |
| bonus bDef2Rate,-67; | |
| - Id: 1539 | |
| AegisName: Golden_Mace_ | |
| Name: Golden Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddRace,RC_Undead,10; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1540 | |
| AegisName: Grand_Cross_ | |
| Name: Grand Cross | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| skill "PR_TURNUNDEAD",3; | |
| bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; | |
| bonus2 bSPDrainValueRace,RC_Undead,1; | |
| bonus2 bSPGainRace,RC_Undead,3; | |
| - Id: 1541 | |
| AegisName: Nemesis | |
| Name: Nemesis | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus2 bAddRace,RC_Undead,10; | |
| bonus2 bAddRace,RC_Demon,10; | |
| bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; | |
| autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }"; | |
| - Id: 1542 | |
| AegisName: BF_Morning_Star1 | |
| Name: Valorous Battlefield Morning Star | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bDex,1; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1543 | |
| AegisName: BF_Morning_Star2 | |
| Name: Brave Battlefield Morning Star | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bDex,1; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus bUnbreakableWeapon; | |
| autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| - Id: 1544 | |
| AegisName: Lunakaligo | |
| Name: Lunakaligo | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| if (readparam(bStr)>=77) { | |
| bonus bAspdRate,4; | |
| bonus2 bAddEff,Eff_Stun,1500; | |
| bonus3 bAddMonsterDropItem,12065,RC_Plant,500; | |
| bonus3 bAddMonsterDropItem,12043,RC_Brute,500; | |
| bonus3 bAddMonsterDropItem,12069,RC_Fish,500; | |
| } | |
| - Id: 1545 | |
| AegisName: N_Mace | |
| Name: Novice Mace | |
| Type: Weapon | |
| SubType: Mace | |
| Attack: 57 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 1546 | |
| AegisName: Krieger_Onehand_Mace1 | |
| Name: Glorious Morning Star | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| SuperNovice: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| bonus bAspdRate,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus2 bAddEff,Eff_Stun,2000; | |
| bonus bAspdRate,5; | |
| } | |
| - Id: 1547 | |
| AegisName: Mace_Of_Madness | |
| Name: Mace Of Madness | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; | |
| bonus bStr,2; | |
| - Id: 1548 | |
| AegisName: Veteran_Hammer | |
| Name: Veteran Hammer | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 10000 | |
| Weight: 1800 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| bonus bHealPower,getskilllv("AL_DP"); | |
| bonus bCritical,getskilllv("PR_MACEMASTERY")*2; | |
| bonus bInt,1; | |
| bonus bLuk,1; | |
| - Id: 1549 | |
| AegisName: Pilebuncker | |
| Name: Pile Bunker | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 10000 | |
| Weight: 3500 | |
| Attack: 450 | |
| Range: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 99 | |
| Refineable: true | |
| - Id: 1550 | |
| AegisName: Book | |
| Name: Book | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 30000 | |
| Weight: 600 | |
| Attack: 85 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1551 | |
| AegisName: Bible | |
| Name: Bible | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 60000 | |
| Weight: 1000 | |
| Attack: 115 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 1552 | |
| AegisName: Tablet | |
| Name: Tablet | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 51000 | |
| Weight: 800 | |
| Attack: 125 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1553 | |
| AegisName: Book_Of_Billows | |
| Name: Book of Billows | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| - Id: 1554 | |
| AegisName: Book_Of_Mother_Earth | |
| Name: Book of Mother Earth | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| - Id: 1555 | |
| AegisName: Book_Of_Blazing_Sun | |
| Name: Book of the Blazing Sun | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| - Id: 1556 | |
| AegisName: Book_Of_Gust_Of_Wind | |
| Name: Book of Gust of Wind | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| - Id: 1557 | |
| AegisName: Book_Of_The_Apocalypse | |
| Name: Book of the Apocalypse | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 60000 | |
| Weight: 800 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddEle,Ele_Holy,5; | |
| bonus2 bAddEle,Ele_Water,7; | |
| bonus2 bAddEle,Ele_Earth,7; | |
| bonus2 bAddEle,Ele_Fire,7; | |
| bonus2 bAddEle,Ele_Wind,7; | |
| - Id: 1558 | |
| AegisName: Girl's_Diary | |
| Name: Girl's Diary | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 1500 | |
| Weight: 300 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddDamageClass,1188,150; | |
| - Id: 1559 | |
| AegisName: Legacy_Of_Dragon | |
| Name: Legacy of Dragon | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| bonus2 bSPGainRace,RC_Dragon,10; | |
| - Id: 1560 | |
| AegisName: Diary_Of_Great_Sage | |
| Name: Sage's Diary | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 1100 | |
| Attack: 100 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| if (readparam(bStr)>=50) | |
| bonus bAspdRate,5; | |
| if (readparam(bInt)>=70) | |
| bonus bMatkRate,5; | |
| - Id: 1561 | |
| AegisName: Hardback | |
| Name: Hardcover Book | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,3; | |
| bonus bDex,2; | |
| - Id: 1562 | |
| AegisName: Bible_Of_Battlefield | |
| Name: Battlefield Textbook | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Script: | | |
| bonus bInt,3; | |
| bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; | |
| - Id: 1563 | |
| AegisName: Diary_Of_Great_Sage_C | |
| Name: Sage's Diary | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 1 | |
| Attack: 135 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,20; | |
| bonus bAspdRate,5; | |
| - Id: 1564 | |
| AegisName: Encyclopedia | |
| Name: Encyclopedia | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bInt,3; | |
| bonus bDex,2; | |
| bonus bCritical,20+((readparam(bLuk)*2)/10); | |
| - Id: 1565 | |
| AegisName: Death_Note | |
| Name: Ledger of Death | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 137 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bStr,3; | |
| bonus bInt,3; | |
| bonus bLuk,-20; | |
| bonus2 bComaRace,RC_DemiHuman,10; | |
| bonus2 bComaRace,RC_Player_Human,10; | |
| bonus bAspdRate,getrefine(); | |
| if (BaseJob == Job_Sage) | |
| bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; | |
| - Id: 1566 | |
| AegisName: Diary_Of_Great_Basil | |
| Name: Diary Of Great Basil | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1567 | |
| AegisName: Hardback_C | |
| Name: Refined Hardcover Book | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 1 | |
| Attack: 168 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bStr,5; | |
| bonus bDex,2; | |
| bonus bMatkRate,20; | |
| - Id: 1568 | |
| AegisName: Book_Of_Billows_ | |
| Name: Book of Billows | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| - Id: 1569 | |
| AegisName: Book_Of_Mother_Earth_ | |
| Name: Book of Mother Earth | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| - Id: 1570 | |
| AegisName: Book_Of_Blazing_Sun_ | |
| Name: Book of Blazing Sun | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| - Id: 1571 | |
| AegisName: Book_Of_Gust_Of_Wind_ | |
| Name: Book of Gust of Wind | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 35000 | |
| Weight: 750 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| - Id: 1572 | |
| AegisName: Principles_Of_Magic | |
| Name: Principles of Magic | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 300 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,20; | |
| bonus bInt,3; | |
| bonus bSPrecovRate,5; | |
| - Id: 1573 | |
| AegisName: Ancient_Magic | |
| Name: Ancient Magic | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| - Id: 1574 | |
| AegisName: BF_Book1 | |
| Name: Brave Battle Strategy Book | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bInt,1; | |
| bonus bMatkRate,15; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1575 | |
| AegisName: BF_Book2 | |
| Name: Valorous Battle Strategy Book | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bInt,1; | |
| bonus bMatkRate,15; | |
| bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1576 | |
| AegisName: Krieger_Book1 | |
| Name: Glorious Tablet | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus2 bAddRace,RC_DemiHuman,80; | |
| bonus2 bAddRace,RC_Player_Human,80; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) | |
| autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; | |
| - Id: 1577 | |
| AegisName: Krieger_Book2 | |
| Name: Glorious Apocalypse | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Attack: 90 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus2 bAddRace,RC_DemiHuman,80; | |
| bonus2 bAddRace,RC_Player_Human,80; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| if (getrefine()>8) { | |
| bonus bMatkRate,5; | |
| bonus bCastrate,-5; | |
| bonus bDelayRate,-5; | |
| } | |
| - Id: 1578 | |
| AegisName: Book_Of_Prayer | |
| Name: Book Of Prayer | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Attack: 140 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bVit,2; | |
| bonus bMdef,2; | |
| bonus bMaxSPrate,10; | |
| - Id: 1579 | |
| AegisName: Death_Note_M | |
| Name: Book of the Dead | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 137 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bStr,3; | |
| bonus bInt,3; | |
| bonus bLuk,-20; | |
| bonus2 bComaRace,RC_DemiHuman,10; | |
| bonus2 bComaRace,RC_Player_Human,10; | |
| bonus bAspdRate,getrefine(); | |
| if (BaseJob == Job_Sage) | |
| bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; | |
| - Id: 1580 | |
| AegisName: Encyclopedia_C | |
| Name: Giant Encyclopedia | |
| Type: Weapon | |
| SubType: Book | |
| Attack: 145 | |
| Range: 1 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bInt,3; | |
| bonus bDex,2; | |
| bonus bCritical,20+((readparam(bLuk)*2)/10); | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 1581 | |
| AegisName: F_Diary_Of_Great_Sage_C | |
| Name: Diary Of Great Sage | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 1 | |
| Attack: 135 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| - Id: 1582 | |
| AegisName: E_Diary_Of_Great_Sage_C | |
| Name: Diary Of Great Sage | |
| Type: Weapon | |
| SubType: Book | |
| Buy: 1 | |
| Attack: 135 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Priest: true | |
| Sage: true | |
| StarGladiator: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| - Id: 1599 | |
| AegisName: Angra_Manyu | |
| Name: Angra Manyu | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 1 | |
| Weight: 10 | |
| Attack: 200 | |
| Range: 2 | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAllStats,50; | |
| bonus bBaseAtk,3800; | |
| bonus bMatkRate,200; | |
| bonus2 bHPDrainRate,1000,100; | |
| bonus2 bSPDrainRate,1000,20; | |
| bonus bHealPower,200; | |
| bonus2 bAddClass,Class_All,100; | |
| skill "WZ_STORMGUST",10; | |
| Skill "WZ_METEOR",10; | |
| Skill "WZ_VERMILION",10; | |
| skill "GM_SANDMAN",1; | |
| - Id: 1601 | |
| AegisName: Rod | |
| Name: Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 50 | |
| Weight: 400 | |
| Attack: 15 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| - Id: 1602 | |
| AegisName: Rod_ | |
| Name: Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 50 | |
| Weight: 400 | |
| Attack: 15 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| - Id: 1603 | |
| AegisName: Rod__ | |
| Name: Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 50 | |
| Weight: 400 | |
| Attack: 15 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| - Id: 1604 | |
| AegisName: Wand | |
| Name: Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 2500 | |
| Weight: 400 | |
| Attack: 25 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMatkRate,15; | |
| - Id: 1605 | |
| AegisName: Wand_ | |
| Name: Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 2500 | |
| Weight: 400 | |
| Attack: 25 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMatkRate,15; | |
| - Id: 1606 | |
| AegisName: Wand__ | |
| Name: Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 2500 | |
| Weight: 400 | |
| Attack: 25 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMatkRate,15; | |
| - Id: 1607 | |
| AegisName: Staff | |
| Name: Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 9500 | |
| Weight: 400 | |
| Attack: 40 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMatkRate,15; | |
| - Id: 1608 | |
| AegisName: Staff_ | |
| Name: Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 9500 | |
| Weight: 400 | |
| Attack: 40 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMatkRate,15; | |
| - Id: 1609 | |
| AegisName: Staff__ | |
| Name: Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 9500 | |
| Weight: 400 | |
| Attack: 40 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMatkRate,15; | |
| - Id: 1610 | |
| AegisName: Arc_Wand | |
| Name: Arc Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 45000 | |
| Weight: 400 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bMatkRate,15; | |
| - Id: 1611 | |
| AegisName: Arc_Wand_ | |
| Name: Arc Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 45000 | |
| Weight: 400 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bMatkRate,15; | |
| - Id: 1612 | |
| AegisName: Arc_Wand__ | |
| Name: Arc Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 45000 | |
| Weight: 400 | |
| Attack: 60 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bMatkRate,15; | |
| - Id: 1613 | |
| AegisName: Mighty_Staff | |
| Name: Mighty Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,10; | |
| bonus bMatkRate,15; | |
| bonus bSPDrainValue,-2; | |
| - Id: 1614 | |
| AegisName: Blessed_Wand | |
| Name: Wand of Occult | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 75 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bMatkRate,15; | |
| - Id: 1615 | |
| AegisName: Bone_Wand | |
| Name: Evil Bone Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 40 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,4; | |
| bonus bAtkEle,Ele_Undead; | |
| bonus bMatkRate,15; | |
| - Id: 1616 | |
| AegisName: Staff_Of_Wing | |
| Name: Wing Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 60 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bCastrate,-5; | |
| - Id: 1617 | |
| AegisName: Survival_Rod | |
| Name: Survivor's Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 85000 | |
| Weight: 1000 | |
| Attack: 50 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bMatkRate,15; | |
| bonus bMaxHP,300; | |
| - Id: 1618 | |
| AegisName: Survival_Rod_ | |
| Name: Survivor's Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 85000 | |
| Weight: 1000 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,3; | |
| bonus bMatkRate,15; | |
| bonus bMaxHP,400; | |
| - Id: 1619 | |
| AegisName: Survival_Rod2 | |
| Name: Survivor's Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 85000 | |
| Weight: 1000 | |
| Attack: 50 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMatkRate,15; | |
| bonus bMaxHP,300; | |
| - Id: 1620 | |
| AegisName: Survival_Rod2_ | |
| Name: Survivor's Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 85000 | |
| Weight: 1000 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bMatkRate,15; | |
| bonus bMaxHP,400; | |
| - Id: 1621 | |
| AegisName: Hypnotist's_Staff | |
| Name: Hypnotist's Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 43000 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMatkRate,25; | |
| - Id: 1622 | |
| AegisName: Hypnotist's_Staff_ | |
| Name: Hypnotist's Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMatkRate,25; | |
| - Id: 1623 | |
| AegisName: Mighty_Staff_C | |
| Name: Mighty Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 1 | |
| Attack: 165 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,10; | |
| bonus bInt,4; | |
| bonus bMatkRate,20; | |
| bonus bSPDrainValue,-1; | |
| - Id: 1624 | |
| AegisName: Lich_Bone_Wand | |
| Name: Lich's Bone Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| bonus bAtkEle,Ele_Undead; | |
| bonus bMatkRate,20; | |
| bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); | |
| if (getrefine()>=9) { | |
| bonus bMatkRate,3; | |
| bonus bMaxSP,300; | |
| } | |
| - Id: 1625 | |
| AegisName: Healing_Staff | |
| Name: Healing Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 400 | |
| Attack: 10 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bMatkRate,15; | |
| bonus bHealPower,(getrefine()*3/2); | |
| - Id: 1626 | |
| AegisName: Piercing_Staff | |
| Name: Piercing Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,4; | |
| bonus bMatkRate,15; | |
| bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); | |
| bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); | |
| - Id: 1627 | |
| AegisName: Staffy | |
| Name: Staffy | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 40 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1628 | |
| AegisName: Survival_Rod_C | |
| Name: Refined Survivor's Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 1 | |
| Attack: 71 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| Script: | | |
| bonus bDex,4; | |
| bonus bMatkRate,20; | |
| bonus bMaxHP,500; | |
| - Id: 1629 | |
| AegisName: Walking_Stick | |
| Name: Gentleman's Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 40 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bDex,1; | |
| - Id: 1630 | |
| AegisName: Release_Of_Wish | |
| Name: Release of Wish | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bInt,3; | |
| bonus bHealPower,5; | |
| autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; | |
| - Id: 1631 | |
| AegisName: Holy_Stick | |
| Name: Holy Stick | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bMatkRate,15; | |
| bonus2 bCastrate,"AL_HOLYLIGHT",-25; | |
| bonus2 bCastrate,"PR_TURNUNDEAD",-25; | |
| bonus2 bCastrate,"PR_MAGNUS",-25; | |
| - Id: 1632 | |
| AegisName: BF_Staff1 | |
| Name: Warlock's Magic Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,4; | |
| bonus bDex,3; | |
| bonus bMatkRate,15; | |
| bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; | |
| bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1633 | |
| AegisName: BF_Staff2 | |
| Name: Warlock's Battle Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bDex,3; | |
| bonus bMatkRate,15; | |
| bonus2 bMagicAddRace,RC_DemiHuman,15; | |
| bonus2 bMagicAddRace,RC_Player_Human,15; | |
| bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1634 | |
| AegisName: BF_Staff3 | |
| Name: Strong Recovery Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bHealPower,14; | |
| bonus2 bSPRegenRate,5,10000; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1635 | |
| AegisName: BF_Staff4 | |
| Name: Speedy Recovery Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bDex,2; | |
| bonus bMatkRate,15; | |
| bonus bDelayRate,-15; | |
| bonus2 bSPRegenRate,5,10000; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1636 | |
| AegisName: Thorn_Staff | |
| Name: Thorn Staff of Darkness | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 60 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,3; | |
| bonus bDex,3; | |
| bonus bMatkRate,20; | |
| bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); | |
| bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); | |
| bonus bDelayRate,-(getrefine()*3/2); | |
| - Id: 1637 | |
| AegisName: Eraser | |
| Name: Eraser | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,20; | |
| bonus bInt,3; | |
| bonus bDex,2; | |
| bonus bSPrecovRate,8; | |
| if (getrefine()>9 ) | |
| bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",3,5,BF_MAGIC,0; | |
| else | |
| bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",1,5,BF_MAGIC,0; | |
| - Id: 1638 | |
| AegisName: Healing_Staff_C | |
| Name: Staff Of Healing | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 10 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bMatkRate,15; | |
| bonus bHealPower,(getrefine()*3/2); | |
| - Id: 1639 | |
| AegisName: N_Rod | |
| Name: Novice Rod | |
| Type: Weapon | |
| SubType: Staff | |
| Attack: 15 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Novice: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,16; | |
| - Id: 1640 | |
| AegisName: Krieger_Onehand_Staff1 | |
| Name: Glorious Arc Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bMagicAddRace,RC_DemiHuman,15; | |
| bonus2 bMagicAddRace,RC_Player_Human,15; | |
| bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); | |
| bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0); | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>8) { | |
| bonus bCastrate,-5; | |
| bonus bDelayRate,-5; | |
| bonus bMatkRate,5; | |
| } | |
| - Id: 1641 | |
| AegisName: Krieger_Onehand_Staff2 | |
| Name: Glorious Cure Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bHealPower,14; | |
| bonus bDelayRate,-10; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; | |
| bonus bHealPower,5+(getrefine()-5)*2; | |
| } | |
| if (getrefine()>8) | |
| bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; | |
| if (getrefine()>9) { | |
| bonus bHealPower,10; | |
| } | |
| - Id: 1642 | |
| AegisName: Staff_Of_Darkness | |
| Name: Staff Of Darkness | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Attack: 100 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bCastrate,-5; | |
| bonus bMatkRate,15; | |
| bonus bInt,2; | |
| - Id: 1643 | |
| AegisName: Dead_Tree_Cane | |
| Name: Dead Tree Cane | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 100 | |
| Attack: 100 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMatk,15; | |
| bonus bInt,4; | |
| if (getrefine()>5) { | |
| bonus bInt,getrefine()-5; | |
| bonus bMaxHP,-200; | |
| bonus bMaxSP,-100; | |
| } | |
| - Id: 1644 | |
| AegisName: Piercing_Staff_M | |
| Name: Staff of Piercing | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,4; | |
| bonus bMatkRate,15; | |
| bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); | |
| bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); | |
| - Id: 1645 | |
| AegisName: Lich_Bone_Wand_M | |
| Name: Lich's Bone Wand | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 60 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| bonus bAtkEle,Ele_Undead; | |
| bonus bMatkRate,20; | |
| bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); | |
| if (getrefine()>=9) { | |
| bonus bMatkRate,3; | |
| bonus bMaxSP,300; | |
| } | |
| - Id: 1646 | |
| AegisName: La'cryma_Stick | |
| Name: La'cryma Stick | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,4; | |
| bonus bMatkRate,15; | |
| bonus bMdef,getrefine(); | |
| bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); | |
| if (getrefine()>9) | |
| bonus2 bCastrate,"WZ_STORMGUST",-8; | |
| - Id: 1647 | |
| AegisName: Croce_Staff | |
| Name: Croce Staff | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bMatkRate,15; | |
| bonus bInt,4; | |
| bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; | |
| - Id: 1648 | |
| AegisName: Staff_Of_Bordeaux | |
| Name: Staff Of Bordeaux | |
| Type: Weapon | |
| SubType: Staff | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| if (getskilllv("SA_DRAGONOLOGY") == 5) { | |
| bonus bUseSPrate,-15; | |
| bonus bInt,3; | |
| } | |
| - Id: 1701 | |
| AegisName: Bow | |
| Name: Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 1000 | |
| Weight: 500 | |
| Attack: 15 | |
| Range: 5 | |
| Slots: 3 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1702 | |
| AegisName: Bow_ | |
| Name: Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 1000 | |
| Weight: 500 | |
| Attack: 15 | |
| Range: 5 | |
| Slots: 4 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1703 | |
| AegisName: Bow__ | |
| Name: Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 1000 | |
| Attack: 15 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddDamageClass,1002,500; | |
| bonus2 bAddDamageClass,1113,500; | |
| bonus2 bAddDamageClass,1031,500; | |
| bonus2 bAddDamageClass,1242,500; | |
| - Id: 1704 | |
| AegisName: Composite_Bow | |
| Name: Composite Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 2500 | |
| Weight: 600 | |
| Attack: 29 | |
| Range: 5 | |
| Slots: 3 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1705 | |
| AegisName: Composite_Bow_ | |
| Name: Composite Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 2500 | |
| Weight: 600 | |
| Attack: 29 | |
| Range: 5 | |
| Slots: 4 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1706 | |
| AegisName: Composite_Bow__ | |
| Name: Composite Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 2500 | |
| Weight: 600 | |
| Attack: 29 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Refineable: true | |
| - Id: 1707 | |
| AegisName: Great_Bow | |
| Name: Great Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 10000 | |
| Weight: 1000 | |
| Attack: 50 | |
| Range: 5 | |
| Slots: 2 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1708 | |
| AegisName: Great_Bow_ | |
| Name: Great Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 10000 | |
| Weight: 1000 | |
| Attack: 50 | |
| Range: 5 | |
| Slots: 3 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1709 | |
| AegisName: Great_Bow__ | |
| Name: Great Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 10000 | |
| Weight: 1000 | |
| Attack: 50 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1710 | |
| AegisName: CrossBow | |
| Name: Crossbow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 17000 | |
| Weight: 900 | |
| Attack: 65 | |
| Range: 5 | |
| Slots: 2 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1711 | |
| AegisName: CrossBow_ | |
| Name: Crossbow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 17000 | |
| Weight: 900 | |
| Attack: 65 | |
| Range: 5 | |
| Slots: 3 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1712 | |
| AegisName: CrossBow__ | |
| Name: Crossbow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 17000 | |
| Weight: 900 | |
| Attack: 65 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| - Id: 1713 | |
| AegisName: Arbalest | |
| Name: Arbalest | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 48000 | |
| Weight: 1000 | |
| Attack: 90 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,2; | |
| - Id: 1714 | |
| AegisName: Kakkung | |
| Name: Gakkung Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 42000 | |
| Weight: 1100 | |
| Attack: 100 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1715 | |
| AegisName: Arbalest_ | |
| Name: Arbalest | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 48000 | |
| Weight: 1000 | |
| Attack: 90 | |
| Range: 5 | |
| Slots: 2 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,2; | |
| - Id: 1716 | |
| AegisName: Kakkung_ | |
| Name: Gakkung Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 42000 | |
| Weight: 1100 | |
| Attack: 100 | |
| Range: 5 | |
| Slots: 2 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1718 | |
| AegisName: Hunter_Bow | |
| Name: Hunter Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 64000 | |
| Weight: 1500 | |
| Attack: 125 | |
| Range: 5 | |
| Jobs: | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1719 | |
| AegisName: Bow_Of_Roguemaster | |
| Name: Roguemaster's Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 75 | |
| Range: 11 | |
| Jobs: | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| - Id: 1720 | |
| AegisName: Bow_Of_Rudra | |
| Name: Rudra Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 150 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bInt,5; | |
| skill "AL_CURE",1; | |
| skill "AL_HEAL",1; | |
| bonus2 bResEff,Eff_Poison,5000; | |
| bonus2 bResEff,Eff_Curse,5000; | |
| bonus2 bResEff,Eff_Silence,5000; | |
| bonus2 bResEff,Eff_Confusion,5000; | |
| bonus2 bResEff,Eff_Blind,5000; | |
| - Id: 1721 | |
| AegisName: Repeting_CrossBow | |
| Name: Repeating Crossbow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 89000 | |
| Weight: 2000 | |
| Attack: 95 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| - Id: 1722 | |
| AegisName: Balistar | |
| Name: Ballista | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 124000 | |
| Weight: 3500 | |
| Attack: 145 | |
| Range: 5 | |
| Jobs: | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 77 | |
| Refineable: true | |
| - Id: 1723 | |
| AegisName: Luna_Bow | |
| Name: Luna Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 100 | |
| Range: 5 | |
| Slots: 2 | |
| Jobs: | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bDef,2+3*(getrefine()>5)+2*(getrefine()>8); | |
| - Id: 1724 | |
| AegisName: Dragon_Wing | |
| Name: Dragon Wing | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 100 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| - Id: 1725 | |
| AegisName: Bow_Of_Minstrel | |
| Name: Minstrel Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1700 | |
| Attack: 120 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bSPrecovRate,10; | |
| - Id: 1726 | |
| AegisName: Hunter_Bow_ | |
| Name: Hunter Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 64000 | |
| Weight: 1500 | |
| Attack: 125 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| - Id: 1727 | |
| AegisName: Balistar_ | |
| Name: Ballista | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 124000 | |
| Weight: 3500 | |
| Attack: 145 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 77 | |
| Refineable: true | |
| - Id: 1728 | |
| AegisName: Balistar_C | |
| Name: Ballista | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 1 | |
| Attack: 194 | |
| Range: 5 | |
| Jobs: | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLongAtkRate,20; | |
| - Id: 1729 | |
| AegisName: Bow_Of_Rudra_C | |
| Name: Rudra Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 2 | |
| Attack: 185 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bInt,5; | |
| skill "AL_CURE",1; | |
| skill "AL_HEAL",1; | |
| - Id: 1730 | |
| AegisName: Burning_Bow | |
| Name: Burning Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1400 | |
| Attack: 95 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Fire,10; | |
| - Id: 1731 | |
| AegisName: Frozen_Bow | |
| Name: Frozen Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1400 | |
| Attack: 100 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Freeze,1000; | |
| - Id: 1732 | |
| AegisName: Earth_Bow | |
| Name: Earth Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1400 | |
| Attack: 105 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| - Id: 1733 | |
| AegisName: Gust_Bow | |
| Name: Gust Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1400 | |
| Attack: 95 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| - Id: 1734 | |
| AegisName: Orc_Archer_Bow | |
| Name: Orc Archer Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1600 | |
| Attack: 120 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddMonsterDropItem,1753,200; | |
| - Id: 1735 | |
| AegisName: Kkakkung | |
| Name: Kkakkung | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1736 | |
| AegisName: Double_Bound | |
| Name: Double Bound | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 70 | |
| Range: 5 | |
| Slots: 3 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10; | |
| - Id: 1737 | |
| AegisName: Ixion_Wing | |
| Name: Ixion Wings | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 300 | |
| Attack: 135 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; | |
| bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; | |
| - Id: 1738 | |
| AegisName: BF_Bow1 | |
| Name: Valorous Battle CrossBow | |
| Type: Weapon | |
| SubType: Bow | |
| Attack: 100 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1739 | |
| AegisName: BF_Bow2 | |
| Name: Brave Battle CrossBow | |
| Type: Weapon | |
| SubType: Bow | |
| Attack: 100 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bInt,10; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1740 | |
| AegisName: Nepenthes_Bow | |
| Name: Nepenthes Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 105 | |
| Range: 5 | |
| Slots: 2 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20; | |
| - Id: 1741 | |
| AegisName: Cursed_Lyre | |
| Name: Cursed Lyre | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Weight: 1250 | |
| Attack: 125 | |
| Range: 5 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| bonus bLuk,-2; | |
| bonus2 bAddEff,Eff_Curse,400; | |
| - Id: 1742 | |
| AegisName: N_Composite_Bow | |
| Name: Novice Composite Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 1 | |
| Attack: 49 | |
| Range: 5 | |
| Slots: 3 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 1743 | |
| AegisName: Krieger_Bow1 | |
| Name: Glorious Hunter Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Attack: 100 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bCritAtkRate,getrefine() * 2; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) | |
| bonus2 bSkillAtk,"AC_DOUBLE",20; | |
| - Id: 1744 | |
| AegisName: Bow_Of_Evil | |
| Name: Bow Of Evil | |
| Type: Weapon | |
| SubType: Bow | |
| Attack: 170 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSkillAtk,"AC_DOUBLE",25; | |
| bonus bDex,2; | |
| - Id: 1745 | |
| AegisName: Falken_Blitz | |
| Name: Falken Blitz | |
| Type: Weapon | |
| SubType: Bow | |
| Weight: 1000 | |
| Attack: 100 | |
| Range: 5 | |
| Slots: 2 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; | |
| bonus2 bSkillAtk,"AC_DOUBLE",10; | |
| bonus2 bSkillAtk,"AC_CHARGEARROW",10; | |
| - Id: 1801 | |
| AegisName: Waghnakh | |
| Name: Waghnak | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 8000 | |
| Weight: 400 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1802 | |
| AegisName: Waghnakh_ | |
| Name: Waghnak | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 8000 | |
| Weight: 400 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 1803 | |
| AegisName: Knuckle_Duster | |
| Name: Knuckle Dusters | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 25000 | |
| Weight: 450 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1804 | |
| AegisName: Knuckle_Duster_ | |
| Name: Knuckle Dusters | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 25000 | |
| Weight: 450 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1805 | |
| AegisName: Hora | |
| Name: Studded Knuckles | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 32000 | |
| Weight: 450 | |
| Attack: 65 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1806 | |
| AegisName: Hora_ | |
| Name: Studded Knuckles | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 32000 | |
| Weight: 450 | |
| Attack: 65 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| - Id: 1807 | |
| AegisName: Fist | |
| Name: Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 53000 | |
| Weight: 650 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| - Id: 1808 | |
| AegisName: Fist_ | |
| Name: Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 53000 | |
| Weight: 650 | |
| Attack: 115 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| - Id: 1809 | |
| AegisName: Claw | |
| Name: Claw | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 67000 | |
| Weight: 500 | |
| Attack: 86 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 1810 | |
| AegisName: Claw_ | |
| Name: Claw | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 67000 | |
| Weight: 500 | |
| Attack: 86 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 1811 | |
| AegisName: Finger | |
| Name: Finger | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 58000 | |
| Weight: 500 | |
| Attack: 97 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| - Id: 1812 | |
| AegisName: Finger_ | |
| Name: Finger | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 58000 | |
| Weight: 500 | |
| Attack: 97 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| - Id: 1813 | |
| AegisName: Kaiser_Knuckle | |
| Name: Kaiser Knuckle | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 450 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus2 bAddRace,RC_Undead,5; | |
| bonus2 bAddEle,Ele_Water,10; | |
| bonus2 bAddEle,Ele_Earth,10; | |
| bonus2 bAddEle,Ele_Fire,10; | |
| bonus2 bAddEle,Ele_Wind,10; | |
| - Id: 1814 | |
| AegisName: Berserk | |
| Name: Berserk | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,12; | |
| - Id: 1815 | |
| AegisName: Claw_Of_Garm | |
| Name: Hatii Claw | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 550 | |
| Attack: 152 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus bMaxHPrate,-2; | |
| bonus2 bAddEff,Eff_Bleeding,200; | |
| - Id: 1816 | |
| AegisName: Berserk_ | |
| Name: Berserk | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,12; | |
| - Id: 1817 | |
| AegisName: Kaiser_Knuckle_C | |
| Name: Kaiser Knuckle | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 1 | |
| Attack: 159 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus2 bAddRace,RC_Undead,5; | |
| bonus2 bAddEle,Ele_Water,10; | |
| bonus2 bAddEle,Ele_Earth,10; | |
| bonus2 bAddEle,Ele_Fire,10; | |
| bonus2 bAddEle,Ele_Wind,10; | |
| bonus bAspdRate,5; | |
| - Id: 1818 | |
| AegisName: Magma_Fist | |
| Name: Magma Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 650 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10; | |
| - Id: 1819 | |
| AegisName: Icicle_Fist | |
| Name: Icicle Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 650 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10; | |
| - Id: 1820 | |
| AegisName: Electric_Fist | |
| Name: Electric Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 650 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10; | |
| - Id: 1821 | |
| AegisName: Seismic_Fist | |
| Name: Seismic Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 650 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10; | |
| - Id: 1822 | |
| AegisName: Combo_Battle_Glove | |
| Name: Combo Battle Glove | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; | |
| bonus2 bSkillAtk,"MO_CHAINCOMBO",15; | |
| bonus2 bSkillAtk,"MO_COMBOFINISH",20; | |
| - Id: 1823 | |
| AegisName: BF_Knuckle1 | |
| Name: Valorous Battle Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bAgi,1; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1824 | |
| AegisName: BF_Knuckle2 | |
| Name: Brave Battle Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bInt,1; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bCastrate,"MO_EXTREMITYFIST",-25; | |
| autobonus "{ bonus2 bCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1825 | |
| AegisName: Horn_Of_Hilthrion | |
| Name: Horn of Hillslion | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 95 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Monk: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; | |
| bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; | |
| bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; | |
| - Id: 1826 | |
| AegisName: Krieger_Knuckle1 | |
| Name: Glorious Claw | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); | |
| bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); | |
| } | |
| - Id: 1827 | |
| AegisName: Krieger_Knuckle2 | |
| Name: Glorious Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus2 bCastrate,"MO_EXTREMITYFIST",-100; | |
| bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; | |
| } | |
| - Id: 1828 | |
| AegisName: Monk_Knuckle | |
| Name: Monk Knuckle | |
| Type: Weapon | |
| SubType: Knuckle | |
| Buy: 20 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; | |
| - Id: 1829 | |
| AegisName: Fist_C | |
| Name: Fist | |
| Type: Weapon | |
| SubType: Knuckle | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 1901 | |
| AegisName: Violin | |
| Name: Violin | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 4000 | |
| Weight: 700 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1902 | |
| AegisName: Violin_ | |
| Name: Violin | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 4000 | |
| Weight: 700 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Refineable: true | |
| - Id: 1903 | |
| AegisName: Mandolin | |
| Name: Mandolin | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 18000 | |
| Weight: 400 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1904 | |
| AegisName: Mandolin_ | |
| Name: Mandolin | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 18000 | |
| Weight: 400 | |
| Attack: 90 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1905 | |
| AegisName: Lute | |
| Name: Lute | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 24500 | |
| Weight: 500 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1906 | |
| AegisName: Lute_ | |
| Name: Lute | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 24500 | |
| Weight: 500 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| - Id: 1907 | |
| AegisName: Guitar | |
| Name: Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 47000 | |
| Weight: 900 | |
| Attack: 142 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1908 | |
| AegisName: Guitar_ | |
| Name: Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 47000 | |
| Weight: 900 | |
| Attack: 142 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1909 | |
| AegisName: Harp | |
| Name: Harp | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 62000 | |
| Weight: 900 | |
| Attack: 114 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 1910 | |
| AegisName: Harp_ | |
| Name: Harp | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 62000 | |
| Weight: 900 | |
| Attack: 114 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 1911 | |
| AegisName: Guh_Moon_Goh | |
| Name: Gumoongoh | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 54000 | |
| Weight: 1300 | |
| Attack: 126 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1912 | |
| AegisName: Guh_Moon_Goh_ | |
| Name: Gumoongoh | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 54000 | |
| Weight: 1300 | |
| Attack: 126 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| - Id: 1913 | |
| AegisName: Electronic_Guitar | |
| Name: Electric Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 1800 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| skill "WZ_JUPITEL",1; | |
| bonus3 bAutoSpell,"WZ_JUPITEL",1,100; | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bInt,2; | |
| bonus bAgi,1; | |
| - Id: 1914 | |
| AegisName: Guitar_Of_Passion | |
| Name: Burning Passion Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| - Id: 1915 | |
| AegisName: Guitar_Of_Blue_Solo | |
| Name: Loner's Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| - Id: 1916 | |
| AegisName: Guitar_Of_Vast_Land | |
| Name: Green Acre Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| - Id: 1917 | |
| AegisName: Guitar_Of_Gentle_Breeze | |
| Name: Gentle Breeze Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 27 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| - Id: 1918 | |
| AegisName: Oriental_Lute | |
| Name: Oriental Lute | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"CG_ARROWVULCAN",10; | |
| bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; | |
| - Id: 1919 | |
| AegisName: Base_Guitar | |
| Name: Bass Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bSPGainValue,3; | |
| bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; | |
| bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; | |
| - Id: 1920 | |
| AegisName: Berserk_Guitar | |
| Name: Berserk Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 1800 | |
| Attack: 10 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,100; | |
| bonus bHPrecovRate,-100; | |
| bonus2 bHPLossRate,50,5000; | |
| bonus bDex,-readparam(bDex); | |
| - Id: 1921 | |
| AegisName: Guh_Moon_Gom | |
| Name: Gun Moon Gom | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1922 | |
| AegisName: Oriental_Lute_ | |
| Name: Oriental Lute | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 150 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"CG_ARROWVULCAN",10; | |
| bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; | |
| - Id: 1923 | |
| AegisName: BF_Instrument1 | |
| Name: Valorous Battlefield Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Attack: 50 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1924 | |
| AegisName: BF_Instrument2 | |
| Name: Brave Battlefield Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Attack: 50 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bSkillAtk,"CG_ARROWVULCAN",20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1925 | |
| AegisName: Cello | |
| Name: Cello | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bDex,3; | |
| bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; | |
| bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; | |
| - Id: 1926 | |
| AegisName: Harp_Of_Nepenthes | |
| Name: Harp of Nepenthes | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| if (getrefine()>9 ) { | |
| bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000; | |
| } | |
| else { | |
| bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000; | |
| } | |
| - Id: 1927 | |
| AegisName: Krieger_Instrument1 | |
| Name: Glorious Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Buy: 20 | |
| Attack: 50 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) | |
| bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; | |
| - Id: 1928 | |
| AegisName: Berserk_Guitar_I | |
| Name: Spirited Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Attack: 40 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAspdRate,100; | |
| bonus bHPrecovRate,-100; | |
| bonus2 bHPLossRate,50,5000; | |
| bonus bDex,-readparam(bDex); | |
| - Id: 1929 | |
| AegisName: Guitar_C | |
| Name: Guitar | |
| Type: Weapon | |
| SubType: Musical | |
| Attack: 177 | |
| Range: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Male | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 1950 | |
| AegisName: Rope | |
| Name: Rope | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 2500 | |
| Weight: 400 | |
| Attack: 45 | |
| Range: 2 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1951 | |
| AegisName: Rope_ | |
| Name: Rope | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 2500 | |
| Weight: 400 | |
| Attack: 45 | |
| Range: 2 | |
| Slots: 4 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 3 | |
| Refineable: true | |
| - Id: 1952 | |
| AegisName: Line | |
| Name: Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 12000 | |
| Weight: 300 | |
| Attack: 80 | |
| Range: 2 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 16 | |
| Refineable: true | |
| - Id: 1953 | |
| AegisName: Line_ | |
| Name: Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 12000 | |
| Weight: 300 | |
| Attack: 80 | |
| Range: 2 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 16 | |
| Refineable: true | |
| - Id: 1954 | |
| AegisName: Wire | |
| Name: Wire Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 17500 | |
| Weight: 1000 | |
| Attack: 95 | |
| Range: 2 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 16 | |
| Refineable: true | |
| - Id: 1955 | |
| AegisName: Wire_ | |
| Name: Wire Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 17500 | |
| Weight: 1000 | |
| Attack: 95 | |
| Range: 2 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 16 | |
| Refineable: true | |
| - Id: 1956 | |
| AegisName: Rante | |
| Name: Rante Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 32000 | |
| Weight: 900 | |
| Attack: 135 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1957 | |
| AegisName: Rante_ | |
| Name: Rante Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 32000 | |
| Weight: 900 | |
| Attack: 135 | |
| Range: 2 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1958 | |
| AegisName: Tail | |
| Name: Tail Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 41000 | |
| Weight: 700 | |
| Attack: 105 | |
| Range: 2 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bLuk,3; | |
| - Id: 1959 | |
| AegisName: Tail_ | |
| Name: Tail Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 41000 | |
| Weight: 700 | |
| Attack: 105 | |
| Range: 2 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bLuk,3; | |
| - Id: 1960 | |
| AegisName: Whip | |
| Name: Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 38000 | |
| Weight: 700 | |
| Attack: 120 | |
| Range: 2 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1961 | |
| AegisName: Whip_ | |
| Name: Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 38000 | |
| Weight: 700 | |
| Attack: 120 | |
| Range: 2 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 1962 | |
| AegisName: Lariat | |
| Name: Lariat Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 400 | |
| Attack: 100 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,5; | |
| bonus bAgi,1; | |
| - Id: 1963 | |
| AegisName: Rapture_Rose | |
| Name: Rapture Rose | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 300 | |
| Attack: 115 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Poison; | |
| bonus2 bAddEff,Eff_Poison,5000; | |
| - Id: 1964 | |
| AegisName: Chemeti | |
| Name: Chemeti Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 135 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 44 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,5; | |
| bonus bFlee,10; | |
| bonus bFlee2,2; | |
| - Id: 1965 | |
| AegisName: Whip_Of_Red_Flame | |
| Name: Red Flame Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| - Id: 1966 | |
| AegisName: Whip_Of_Ice_Piece | |
| Name: Icicle Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| - Id: 1967 | |
| AegisName: Whip_Of_Earth | |
| Name: Gaia Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Earth; | |
| - Id: 1968 | |
| AegisName: Jump_Rope | |
| Name: Skipping Rope | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 400 | |
| Attack: 120 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,20; | |
| - Id: 1969 | |
| AegisName: Bladed_Whip | |
| Name: Blade Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 140 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Bleeding,300; | |
| - Id: 1970 | |
| AegisName: Queen's_Whip | |
| Name: Queen's Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 1100 | |
| Attack: 150 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"CG_ARROWVULCAN",10; | |
| bonus2 bSkillAtk,"DC_THROWARROW",10; | |
| - Id: 1971 | |
| AegisName: Electric_Wire | |
| Name: Electric Wire | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| - Id: 1972 | |
| AegisName: Electric_Eel | |
| Name: Electric Eel | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 2000 | |
| Attack: 100 | |
| Range: 2 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bInt,2; | |
| bonus bAgi,2; | |
| bonus3 bAutoSpell,"WZ_JUPITEL",3,20; | |
| if (getrefine()>0) | |
| bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50; | |
| - Id: 1973 | |
| AegisName: Sea_Witch_Foot | |
| Name: Sea Witch's Foot | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 110 | |
| Range: 2 | |
| Slots: 1 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bSPGainValue,5; | |
| bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; | |
| bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; | |
| - Id: 1974 | |
| AegisName: Carrot_Whip | |
| Name: Carrot Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 1300 | |
| Attack: 185 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| if (getrefine()>0) | |
| bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10; | |
| - Id: 1975 | |
| AegisName: Queen_Is_Whip | |
| Name: Queen Is Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 1976 | |
| AegisName: Queen's_Whip_ | |
| Name: Queen's Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 1100 | |
| Attack: 150 | |
| Range: 2 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"CG_ARROWVULCAN",10; | |
| bonus2 bSkillAtk,"DC_THROWARROW",10; | |
| - Id: 1977 | |
| AegisName: BF_Whip1 | |
| Name: Valorous Battle Lariat | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Attack: 50 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1978 | |
| AegisName: BF_Whip2 | |
| Name: Brave Battle Lariat | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Attack: 50 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bSkillAtk,"CG_ARROWVULCAN",20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 1979 | |
| AegisName: Stem_Of_Nepenthes | |
| Name: Stem of Nepenthes | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 120 | |
| Range: 2 | |
| Slots: 2 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| if (getrefine()>=9 ) { | |
| bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000; | |
| } | |
| else { | |
| bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000; | |
| } | |
| - Id: 1980 | |
| AegisName: Whip_Of_Balance | |
| Name: Whip of Balance | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 110 | |
| Range: 2 | |
| Slots: 3 | |
| Jobs: | |
| BardDancer: true | |
| Classes: | |
| Upper: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bDex,3; | |
| bonus2 bAddSkillBlow,"DC_THROWARROW",2; | |
| bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; | |
| - Id: 1981 | |
| AegisName: Krieger_Whip1 | |
| Name: Glorious Lariat | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Attack: 50 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) | |
| bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; | |
| - Id: 1982 | |
| AegisName: Phenomena_Whip | |
| Name: Phenomena Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Buy: 20 | |
| Attack: 160 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bSkillAtk,"DC_THROWARROW",25; | |
| - Id: 1983 | |
| AegisName: Rante_C | |
| Name: Rante Whip | |
| Type: Weapon | |
| SubType: Whip | |
| Attack: 170 | |
| Range: 2 | |
| Jobs: | |
| BardDancer: true | |
| Gender: Female | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 2000 | |
| AegisName: Destruction_Rod | |
| Name: Staff of Destruction | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,25+getrefine()/2; | |
| bonus bInt,3; | |
| bonus bAgi,10; | |
| bonus bUseSPrate,(getrefine()*2); | |
| bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); | |
| bonus2 bCastrate,"HW_MAGICPOWER",-50; | |
| - Id: 2001 | |
| AegisName: Divine_Cross | |
| Name: Divine Cross | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bMatkRate,15; | |
| bonus bDex,4; | |
| bonus2 bSubRace,RC_Demon,15; | |
| bonus2 bSubRace,RC_Undead,15; | |
| - Id: 2002 | |
| AegisName: Krieger_Twohand_Staff1 | |
| Name: Glorious Destruction Staff | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,getrefine(); | |
| bonus2 bMagicAddRace,RC_DemiHuman,15; | |
| bonus2 bMagicAddRace,RC_Player_Human,15; | |
| bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; | |
| bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; | |
| bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2; | |
| bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; | |
| bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2; | |
| } | |
| if (getrefine()>8) { | |
| bonus5 bAutoSpellOnSkill,"WZ_STORMGUST","MG_SAFETYWALL",10,200,1; | |
| bonus5 bAutoSpellOnSkill,"WZ_METEOR","MG_SAFETYWALL",10,200,1; | |
| bonus5 bAutoSpellOnSkill,"WZ_VERMILION","MG_SAFETYWALL",10,200,1; | |
| } | |
| - Id: 2003 | |
| AegisName: Destruction_Rod_M | |
| Name: Staff of Destruction | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 2500 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,25+getrefine()/2; | |
| bonus bInt,3; | |
| bonus bAgi,10; | |
| bonus bUseSPrate,(getrefine()*2); | |
| bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); | |
| bonus2 bCastrate,"HW_MAGICPOWER",-50; | |
| - Id: 2004 | |
| AegisName: Kronos | |
| Name: Kronos | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 30 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,20; | |
| bonus bInt,3+(getrefine()/2); | |
| bonus bMaxHP,300+(50*getrefine()/2); | |
| autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; | |
| - Id: 2005 | |
| AegisName: Dea_Staff | |
| Name: Dea Staff | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 30 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bMatkRate,15+getrefine()/2; | |
| bonus bInt,6; | |
| bonus bVit,2; | |
| autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }"; | |
| - Id: 2006 | |
| AegisName: G_Staff_Of_Light | |
| Name: Staff Of Light | |
| Type: Weapon | |
| SubType: 2hStaff | |
| Buy: 20 | |
| Weight: 1900 | |
| Attack: 80 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| /* bonus bMatk,150; | |
| */ bonus bAtkEle,Ele_Holy; | |
| bonus bInt,6; | |
| - Id: 2101 | |
| AegisName: Guard | |
| Name: Guard | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 1 | |
| - Id: 2102 | |
| AegisName: Guard_ | |
| Name: Guard | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 1 | |
| - Id: 2103 | |
| AegisName: Buckler | |
| Name: Buckler | |
| Type: Armor | |
| Buy: 14000 | |
| Weight: 600 | |
| Defense: 4 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 2 | |
| - Id: 2104 | |
| AegisName: Buckler_ | |
| Name: Buckler | |
| Type: Armor | |
| Buy: 14000 | |
| Weight: 600 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 2 | |
| - Id: 2105 | |
| AegisName: Shield | |
| Name: Shield | |
| Type: Armor | |
| Buy: 56000 | |
| Weight: 1300 | |
| Defense: 6 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 3 | |
| - Id: 2106 | |
| AegisName: Shield_ | |
| Name: Shield | |
| Type: Armor | |
| Buy: 56000 | |
| Weight: 1300 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 3 | |
| - Id: 2107 | |
| AegisName: Mirror_Shield | |
| Name: Mirror Shield | |
| Type: Armor | |
| Buy: 60000 | |
| Weight: 1000 | |
| Defense: 4 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| StarGladiator: true | |
| Swordman: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2108 | |
| AegisName: Mirror_Shield_ | |
| Name: Mirror Shield | |
| Type: Armor | |
| Buy: 60000 | |
| Weight: 1000 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| StarGladiator: true | |
| Swordman: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2109 | |
| AegisName: Memorize_Book | |
| Name: Memory Book | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 3 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 5 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,2; | |
| - Id: 2110 | |
| AegisName: Holy_Guard | |
| Name: Holy Guard | |
| Type: Armor | |
| Buy: 85000 | |
| Weight: 1400 | |
| Defense: 5 | |
| Jobs: | |
| Crusader: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 68 | |
| View: 4 | |
| Script: | | |
| bonus bVit,2; | |
| bonus bMdef,2; | |
| - Id: 2111 | |
| AegisName: Herald_Of_GOD | |
| Name: Sacred Mission | |
| Type: Armor | |
| Buy: 128000 | |
| Weight: 1600 | |
| Defense: 5 | |
| Jobs: | |
| Crusader: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 83 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bVit,3; | |
| bonus bInt,2; | |
| bonus bMdef,3; | |
| bonus bUnbreakableShield; | |
| - Id: 2112 | |
| AegisName: Novice_Guard | |
| Name: Novice Guard | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 1 | |
| Defense: 3 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| View: 1 | |
| - Id: 2113 | |
| AegisName: Novice_Shield | |
| Name: Novice Shield | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 1000 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 3 | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,20; | |
| bonus2 bSubEle,Ele_Earth,20; | |
| bonus2 bSubEle,Ele_Fire,20; | |
| bonus2 bSubEle,Ele_Wind,20; | |
| bonus2 bSubEle,Ele_Poison,20; | |
| bonus2 bSubEle,Ele_Ghost,20; | |
| bonus2 bSubEle,Ele_Undead,20; | |
| - Id: 2114 | |
| AegisName: Stone_Buckler | |
| Name: Stone Buckler | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 1500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 2 | |
| Script: | | |
| bonus2 bSubSize,Size_Large,5; | |
| - Id: 2115 | |
| AegisName: Valkyrja's_Shield | |
| Name: Valkyrja's Shield | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,20; | |
| bonus2 bSubEle,Ele_Fire,20; | |
| bonus2 bSubEle,Ele_Dark,20; | |
| bonus2 bSubEle,Ele_Undead,20; | |
| bonus bMdef,5; | |
| - Id: 2116 | |
| AegisName: Angel's_Safeguard | |
| Name: Angelic Guard | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 400 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 1 | |
| Script: | | |
| bonus2 bSubRace,RC_Demon,5; | |
| - Id: 2117 | |
| AegisName: Arm_Guard | |
| Name: Arm Guard | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 150 | |
| Defense: 5 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 1 | |
| - Id: 2118 | |
| AegisName: Arm_Guard_ | |
| Name: Arm Guard | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 150 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 1 | |
| - Id: 2119 | |
| AegisName: Improved_Arm_Guard | |
| Name: Advanced Arm Guard | |
| Type: Armor | |
| Buy: 40000 | |
| Weight: 150 | |
| Defense: 4 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 1 | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2120 | |
| AegisName: Improved_Arm_Guard_ | |
| Name: Advanced Arm Guard | |
| Type: Armor | |
| Buy: 40000 | |
| Weight: 150 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 1 | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2121 | |
| AegisName: Memorize_Book_ | |
| Name: Memory Book | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 5 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,2; | |
| - Id: 2122 | |
| AegisName: Platinum_Shield | |
| Name: Platinum Shield | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1200 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 68 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bMdef,5; | |
| bonus2 bSubSize,Size_Medium,15; | |
| bonus2 bSubSize,Size_Large,15; | |
| bonus2 bSubRace,RC_Undead,10; | |
| bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; | |
| - Id: 2123 | |
| AegisName: Orleans_Server | |
| Name: Orleans's Server | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bMagicDamageReturn,5; | |
| - Id: 2124 | |
| AegisName: Thorny_Buckler | |
| Name: Thorny Buckler | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 2 | |
| Script: | | |
| bonus bMdef,2; | |
| - Id: 2125 | |
| AegisName: Strong_Shield | |
| Name: Strong Shield | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bNoKnockback; | |
| bonus2 bSubEle,Ele_Neutral,-20; | |
| bonus2 bSubEle,Ele_Fire,-20; | |
| bonus2 bSubEle,Ele_Water,-20; | |
| bonus2 bSubEle,Ele_Wind,-20; | |
| bonus2 bSubEle,Ele_Earth,-20; | |
| bonus2 bSubEle,Ele_Dark,-20; | |
| bonus2 bSubEle,Ele_Holy,-20; | |
| bonus2 bSubEle,Ele_Ghost,-20; | |
| - Id: 2126 | |
| AegisName: Guyak_Shield | |
| Name: Guyak Shield | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 2 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2127 | |
| AegisName: Secular_Mission | |
| Name: Secular Mission | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 10 | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| View: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubClass,Class_All,25; | |
| - Id: 2128 | |
| AegisName: Herald_Of_GOD_ | |
| Name: Sacred Mission | |
| Type: Armor | |
| Buy: 128000 | |
| Weight: 1600 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 83 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bVit,3; | |
| bonus bInt,2; | |
| bonus bMdef,3; | |
| bonus bUnbreakableShield; | |
| - Id: 2129 | |
| AegisName: Exorcism_Bible | |
| Name: Exorcism Bible | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 5 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 5 | |
| Script: | | |
| bonus bHPrecovRate,3; | |
| bonus bSPrecovRate,3; | |
| bonus bInt,1; | |
| - Id: 2130 | |
| AegisName: Cross_Shield | |
| Name: Cross Shield | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2000 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus bStr,1; | |
| bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; | |
| bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; | |
| bonus bUseSPrate,10; | |
| - Id: 2131 | |
| AegisName: Magic_Study_Vol1 | |
| Name: Magic Bible Vol1 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 5 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bInt,2; | |
| bonus2 bAddEffWhenHit,Eff_Stun,1000; | |
| - Id: 2132 | |
| AegisName: Shelter_Resistance | |
| Name: Shell Of Resistance | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 9 | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| View: 2 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubEle,Ele_All,20; | |
| bonus bShortWeaponDamageReturn,1; | |
| if (vip_status(VIP_STATUS_ACTIVE)) { | |
| bonus bAllStats,1; | |
| } | |
| - Id: 2133 | |
| AegisName: Tournament_Shield | |
| Name: Tournament Shield | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 4 | |
| Script: | | |
| bonus2 bAddClass,Class_All,1; | |
| if (Class == Job_Lord_Knight) | |
| bonus bAspdRate,-5; | |
| - Id: 2134 | |
| AegisName: Shield_Of_Naga | |
| Name: Shield of Naga | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 2 | |
| Script: | | |
| bonus bMdef,3; | |
| autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; | |
| - Id: 2135 | |
| AegisName: Shadow_Guard | |
| Name: Shadow Guard | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Rogue: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 2 | |
| - Id: 2136 | |
| AegisName: Cracked_Buckler | |
| Name: Cracked Buckler | |
| Type: Armor | |
| Defense: 5 | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| View: 2 | |
| Script: | | |
| bonus bAgi,2; | |
| bonus2 bAddEle,Ele_Neutral,-10; | |
| bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; | |
| bonus bMdef,1; | |
| - Id: 2137 | |
| AegisName: Valkyrja's_Shield_C | |
| Name: Neo Valkyrja's Shield | |
| Type: Armor | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 95 | |
| View: 4 | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,20; | |
| bonus2 bSubEle,Ele_Fire,20; | |
| bonus2 bSubEle,Ele_Dark,20; | |
| bonus2 bSubEle,Ele_Undead,20; | |
| bonus bMdef,5; | |
| - Id: 2138 | |
| AegisName: Bradium_Shield | |
| Name: Bradium Shield | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1800 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 3 | |
| Script: | | |
| bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; | |
| bonus bAgi,-1; | |
| bonus bMaxHP,500; | |
| - Id: 2139 | |
| AegisName: Flame_Thrower | |
| Name: Flame Thrower | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 2000 | |
| Defense: 60 | |
| Jobs: | |
| Blacksmith: true | |
| Classes: | |
| Normal: true | |
| Upper: true | |
| Baby: true | |
| Third: true | |
| Third_Upper: true | |
| Third_Baby: true | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| View: 1 | |
| - Id: 2199 | |
| AegisName: Ahura_Mazda | |
| Name: Ahura Mazdah | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 10 | |
| Defense: 100 | |
| Locations: | |
| Left_Hand: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 1 | |
| Script: | | |
| bonus bAllStats,50; | |
| bonus bMdef,99; | |
| bonus bShortWeaponDamageReturn,100; | |
| bonus2 bSubRace,RC_DemiHuman,95; | |
| bonus2 bSubRace,RC_Player_Human,95; | |
| skill "CR_FULLPROTECTION",5; | |
| Skill "WZ_ESTIMATION",1; | |
| Skill "ST_FULLSTRIP",5; | |
| Skill "HW_MAGICPOWER",10; | |
| bonus bMaxHPRate,200; | |
| bonus bNoGemStone; | |
| bonus bSpeedRate,25; | |
| bonus bNoWalkDelay; | |
| - Id: 2201 | |
| AegisName: Sunglasses | |
| Name: Sunglasses | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 12 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,500; | |
| - Id: 2202 | |
| AegisName: Sunglasses_ | |
| Name: Sunglasses | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 12 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,500; | |
| - Id: 2203 | |
| AegisName: Glasses | |
| Name: Glasses | |
| Type: Armor | |
| Buy: 4000 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 3 | |
| - Id: 2204 | |
| AegisName: Glasses_ | |
| Name: Glasses | |
| Type: Armor | |
| Buy: 4000 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 3 | |
| - Id: 2205 | |
| AegisName: Diver's_Goggles | |
| Name: Diver Goggles | |
| Type: Armor | |
| Buy: 3500 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 10 | |
| - Id: 2206 | |
| AegisName: Wedding_Veil | |
| Name: Wedding Veil | |
| Type: Armor | |
| Buy: 23000 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 44 | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2207 | |
| AegisName: Fancy_Flower | |
| Name: Fancy Flower | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 4 | |
| Script: | | |
| bonus2 bSubRace,RC_Plant,10; | |
| - Id: 2208 | |
| AegisName: Ribbon | |
| Name: Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 17 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2209 | |
| AegisName: Ribbon_ | |
| Name: Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 17 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2210 | |
| AegisName: Hair_Band | |
| Name: Hair Band | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 9 | |
| - Id: 2211 | |
| AegisName: Bandana | |
| Name: Bandana | |
| Type: Armor | |
| Buy: 400 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 6 | |
| - Id: 2212 | |
| AegisName: Eye_Bandage | |
| Name: Eye Patch | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 13 | |
| - Id: 2213 | |
| AegisName: Cat_Hairband | |
| Name: Kitty Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 2 | |
| - Id: 2214 | |
| AegisName: Bunny_Band | |
| Name: Bunny Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 15 | |
| Script: | | |
| bonus bLuk,2; | |
| - Id: 2215 | |
| AegisName: Flower_Hairband | |
| Name: Flower Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 5 | |
| - Id: 2216 | |
| AegisName: Biretta | |
| Name: Biretta | |
| Type: Armor | |
| Buy: 9000 | |
| Weight: 100 | |
| Defense: 4 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 11 | |
| - Id: 2217 | |
| AegisName: Biretta_ | |
| Name: Biretta | |
| Type: Armor | |
| Buy: 9000 | |
| Weight: 100 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 11 | |
| - Id: 2218 | |
| AegisName: Flu_Mask | |
| Name: Flu Mask | |
| Type: Armor | |
| Buy: 300 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 8 | |
| Script: | | |
| bonus2 bResEff,Eff_Silence,1000; | |
| - Id: 2219 | |
| AegisName: Flu_Mask_ | |
| Name: Flu Mask | |
| Type: Armor | |
| Buy: 300 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 8 | |
| Script: | | |
| bonus2 bResEff,Eff_Silence,1000; | |
| - Id: 2220 | |
| AegisName: Hat | |
| Name: Hat | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 16 | |
| - Id: 2221 | |
| AegisName: Hat_ | |
| Name: Hat | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 16 | |
| - Id: 2222 | |
| AegisName: Turban | |
| Name: Turban | |
| Type: Armor | |
| Buy: 4500 | |
| Weight: 300 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 7 | |
| - Id: 2223 | |
| AegisName: Turban_ | |
| Name: Turban | |
| Type: Armor | |
| Buy: 4500 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 7 | |
| - Id: 2224 | |
| AegisName: Goggle | |
| Name: Goggles | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 1 | |
| - Id: 2225 | |
| AegisName: Goggle_ | |
| Name: Goggles | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 1 | |
| - Id: 2226 | |
| AegisName: Cap | |
| Name: Cap | |
| Type: Armor | |
| Buy: 12000 | |
| Weight: 400 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 14 | |
| - Id: 2227 | |
| AegisName: Cap_ | |
| Name: Cap | |
| Type: Armor | |
| Buy: 12000 | |
| Weight: 400 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 14 | |
| - Id: 2228 | |
| AegisName: Helm | |
| Name: Helm | |
| Type: Armor | |
| Buy: 44000 | |
| Weight: 600 | |
| Defense: 6 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 40 | |
| - Id: 2229 | |
| AegisName: Helm_ | |
| Name: Helm | |
| Type: Armor | |
| Buy: 44000 | |
| Weight: 600 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 40 | |
| - Id: 2230 | |
| AegisName: Gemmed_Sallet | |
| Name: Gemmed Sallet | |
| Type: Armor | |
| Buy: 50000 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2231 | |
| AegisName: Gemmed_Sallet_ | |
| Name: Gemmed Sallet | |
| Type: Armor | |
| Buy: 50000 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2232 | |
| AegisName: Circlet | |
| Name: Circlet | |
| Type: Armor | |
| Buy: 7500 | |
| Weight: 300 | |
| Defense: 3 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 18 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2233 | |
| AegisName: Circlet_ | |
| Name: Circlet | |
| Type: Armor | |
| Buy: 7500 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 18 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2234 | |
| AegisName: Tiara | |
| Name: Tiara | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 19 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 2235 | |
| AegisName: Crown | |
| Name: Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 45 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 2236 | |
| AegisName: Santa's_Hat | |
| Name: Santa Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 20 | |
| Script: | | |
| bonus bMdef,1; | |
| bonus bLuk,1; | |
| - Id: 2237 | |
| AegisName: Weird_Goatee | |
| Name: Bandit Beard | |
| Type: Armor | |
| Buy: 2 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 21 | |
| - Id: 2239 | |
| AegisName: One_Eyed_Glass | |
| Name: Monocle | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 23 | |
| - Id: 2240 | |
| AegisName: Beard | |
| Name: Beard | |
| Type: Armor | |
| Buy: 2 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 24 | |
| - Id: 2241 | |
| AegisName: Granpa_Beard | |
| Name: Grampa Beard | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 25 | |
| - Id: 2242 | |
| AegisName: Luxury_Sunglasses | |
| Name: Purple Glasses | |
| Type: Armor | |
| Buy: 24000 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 26 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,1000; | |
| - Id: 2243 | |
| AegisName: Spinning_Eyes | |
| Name: Geek Glasses | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 27 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,1500; | |
| - Id: 2244 | |
| AegisName: Big_Sis'_Ribbon | |
| Name: Big Ribbon | |
| Type: Armor | |
| Buy: 15000 | |
| Weight: 200 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 28 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2245 | |
| AegisName: Sweet_Gents | |
| Name: Sweet Gent | |
| Type: Armor | |
| Buy: 15000 | |
| Weight: 400 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 29 | |
| - Id: 2246 | |
| AegisName: Golden_Gear | |
| Name: Golden Gear | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 900 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 30 | |
| Script: | | |
| bonus bUnbreakableHelm; | |
| - Id: 2247 | |
| AegisName: Oldman's_Romance | |
| Name: Romantic Gent | |
| Type: Armor | |
| Buy: 15000 | |
| Weight: 400 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 31 | |
| - Id: 2248 | |
| AegisName: Western_Grace | |
| Name: Western Grace | |
| Type: Armor | |
| Buy: 15000 | |
| Weight: 400 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 32 | |
| - Id: 2249 | |
| AegisName: Coronet | |
| Name: Coronet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 33 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 2250 | |
| AegisName: Fillet | |
| Name: Cute Ribbon | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 34 | |
| Script: | | |
| bonus bMaxSP,20; | |
| - Id: 2251 | |
| AegisName: Holy_Bonnet | |
| Name: Monk Hat | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Defense: 5 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 35 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2252 | |
| AegisName: Star_Sparkling | |
| Name: Wizard Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 36 | |
| Script: | | |
| bonus bMaxSP,100; | |
| - Id: 2253 | |
| AegisName: Sunflower | |
| Name: Sunflower | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 37 | |
| Script: | | |
| bonus2 bSubRace,RC_Insect,10; | |
| - Id: 2254 | |
| AegisName: Angelic_Chain | |
| Name: Angel Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 38 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bAgi,1; | |
| bonus bLuk,1; | |
| bonus2 bSubRace,RC_Demon,3; | |
| - Id: 2255 | |
| AegisName: Satanic_Chain | |
| Name: Evil Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 39 | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bStr,1; | |
| bonus2 bSubRace,RC_Angel,3; | |
| - Id: 2256 | |
| AegisName: Magestic_Goat | |
| Name: Majestic Goat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 5 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 41 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 2257 | |
| AegisName: Snowy_Horn | |
| Name: Unicorn Horn | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 42 | |
| - Id: 2258 | |
| AegisName: Sharp_Gear | |
| Name: Spiky Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 6 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 43 | |
| - Id: 2259 | |
| AegisName: Mini_Propeller | |
| Name: Mini Propeller | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 46 | |
| - Id: 2260 | |
| AegisName: Mini_Glasses | |
| Name: Mini Glasses | |
| Type: Armor | |
| Buy: 28000 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 47 | |
| - Id: 2261 | |
| AegisName: Prontera_Army_Cap | |
| Name: Army Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 48 | |
| - Id: 2262 | |
| AegisName: Pierrot_Nose | |
| Name: Clown Nose | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 49 | |
| - Id: 2263 | |
| AegisName: Gangster_Patch | |
| Name: Zorro Masque | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 50 | |
| - Id: 2264 | |
| AegisName: Munak_Turban | |
| Name: Munak Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 51 | |
| Script: | | |
| bonus2 bSubRace,RC_Undead,10; | |
| - Id: 2265 | |
| AegisName: Ganster_Mask | |
| Name: Gangster Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 52 | |
| Script: | | |
| bonus2 bResEff,Eff_Silence,1500; | |
| - Id: 2266 | |
| AegisName: Iron_Cane | |
| Name: Iron Cain | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 53 | |
| - Id: 2267 | |
| AegisName: Cigar | |
| Name: Cigarette | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 54 | |
| Script: | | |
| bonus2 bSubRace,RC_Insect,3; | |
| - Id: 2268 | |
| AegisName: Smoking_Pipe | |
| Name: Pipe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 55 | |
| Script: | | |
| bonus2 bSubRace,RC_Insect,3; | |
| - Id: 2269 | |
| AegisName: Centimental_Flower | |
| Name: Romantic Flower | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 56 | |
| Script: | | |
| bonus2 bSubRace,RC_Plant,3; | |
| - Id: 2270 | |
| AegisName: Centimental_Leaf | |
| Name: Romantic Leaf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 57 | |
| Script: | | |
| bonus2 bSubRace,RC_Plant,3; | |
| - Id: 2271 | |
| AegisName: Jack_A_Dandy | |
| Name: Jack be Dandy | |
| Type: Armor | |
| Buy: 45000 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 58 | |
| - Id: 2272 | |
| AegisName: Stop_Post | |
| Name: Stop Post | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 59 | |
| - Id: 2273 | |
| AegisName: Doctor_Cap | |
| Name: Doctor Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 60 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 2274 | |
| AegisName: Ghost_Bandana | |
| Name: Ghost Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 61 | |
| Script: | | |
| bonus bAgi,2; | |
| bonus2 bSubEle,Ele_Ghost,10; | |
| - Id: 2275 | |
| AegisName: Red_Bandana | |
| Name: Red Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 62 | |
| - Id: 2276 | |
| AegisName: Eagle_Eyes | |
| Name: Angled Glasses | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 63 | |
| - Id: 2277 | |
| AegisName: Nurse_Cap | |
| Name: Nurse Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 64 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 2278 | |
| AegisName: Mr_Smile | |
| Name: Mr. Smile | |
| Type: Armor | |
| Buy: 60 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 65 | |
| - Id: 2279 | |
| AegisName: Bomb_Wick | |
| Name: Bomb Wick | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 66 | |
| - Id: 2280 | |
| AegisName: Sahkkat | |
| Name: Sakkat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 67 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2281 | |
| AegisName: Phantom_Of_Opera | |
| Name: Opera Masque | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 68 | |
| - Id: 2282 | |
| AegisName: Spirit_Chain | |
| Name: Halo | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 69 | |
| Script: | | |
| bonus2 bSubEle,Ele_Holy,15; | |
| - Id: 2283 | |
| AegisName: Ear_Mufs | |
| Name: Ear Muffs | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 70 | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,1000; | |
| - Id: 2284 | |
| AegisName: Antler | |
| Name: Antlers | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 71 | |
| - Id: 2285 | |
| AegisName: Apple_Of_Archer | |
| Name: Apple of Archer | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 72 | |
| Script: | | |
| bonus bDex,3; | |
| - Id: 2286 | |
| AegisName: Elven_Ears | |
| Name: Elven Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 73 | |
| - Id: 2287 | |
| AegisName: Pirate_Bandana | |
| Name: Pirate Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 74 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 2288 | |
| AegisName: Mr_Scream | |
| Name: Mr. Scream | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 75 | |
| - Id: 2289 | |
| AegisName: Poo_Poo_Hat | |
| Name: Poo Poo Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 76 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| - Id: 2290 | |
| AegisName: Funeral_Costume | |
| Name: Funeral Hat | |
| Type: Armor | |
| Buy: 3000 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 77 | |
| - Id: 2291 | |
| AegisName: Masquerade | |
| Name: Masquerade | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 78 | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,3; | |
| bonus2 bAddRace,RC_Player_Human,3; | |
| - Id: 2292 | |
| AegisName: Welding_Mask | |
| Name: Welding Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 79 | |
| Script: | | |
| bonus2 bSubEle,Ele_Fire,10; | |
| - Id: 2293 | |
| AegisName: Pretend_Murdered | |
| Name: Pretend Murdered | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 80 | |
| - Id: 2294 | |
| AegisName: Star_Dust | |
| Name: Stellar | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 81 | |
| - Id: 2295 | |
| AegisName: Blinker | |
| Name: Blinker | |
| Type: Armor | |
| Buy: 1500 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 82 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,10000; | |
| - Id: 2296 | |
| AegisName: Binoculars | |
| Name: Binoculars | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 83 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2297 | |
| AegisName: Goblini_Mask | |
| Name: Goblin Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 84 | |
| - Id: 2298 | |
| AegisName: Green_Feeler | |
| Name: Green Feeler | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 85 | |
| - Id: 2299 | |
| AegisName: Viking_Helm | |
| Name: Orc Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 5 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 86 | |
| - Id: 2301 | |
| AegisName: Cotton_Shirt | |
| Name: Cotton Shirt | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2302 | |
| AegisName: Cotton_Shirt_ | |
| Name: Cotton Shirt | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2303 | |
| AegisName: Leather_Jacket | |
| Name: Jacket | |
| Type: Armor | |
| Buy: 200 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2304 | |
| AegisName: Leather_Jacket_ | |
| Name: Jacket | |
| Type: Armor | |
| Buy: 200 | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2305 | |
| AegisName: Adventure_Suit | |
| Name: Adventurer's Suit | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2306 | |
| AegisName: Adventurere's_Suit_ | |
| Name: Adventurer's Suit | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2307 | |
| AegisName: Mantle | |
| Name: Mantle | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 600 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2308 | |
| AegisName: Mantle_ | |
| Name: Mantle | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 600 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2309 | |
| AegisName: Coat | |
| Name: Coat | |
| Type: Armor | |
| Buy: 22000 | |
| Weight: 1200 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2310 | |
| AegisName: Coat_ | |
| Name: Coat | |
| Type: Armor | |
| Buy: 22000 | |
| Weight: 1200 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2311 | |
| AegisName: Mink_Coat | |
| Name: Mink Coat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2300 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| - Id: 2312 | |
| AegisName: Padded_Armor | |
| Name: Padded Armor | |
| Type: Armor | |
| Buy: 48000 | |
| Weight: 2800 | |
| Defense: 7 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2313 | |
| AegisName: Padded_Armor_ | |
| Name: Padded Armor | |
| Type: Armor | |
| Buy: 48000 | |
| Weight: 2800 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2314 | |
| AegisName: Chain_Mail | |
| Name: Chain Mail | |
| Type: Armor | |
| Buy: 65000 | |
| Weight: 3300 | |
| Defense: 8 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2315 | |
| AegisName: Chain_Mail_ | |
| Name: Chain Mail | |
| Type: Armor | |
| Buy: 65000 | |
| Weight: 3300 | |
| Defense: 8 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2316 | |
| AegisName: Plate_Armor | |
| Name: Full Plate | |
| Type: Armor | |
| Buy: 80000 | |
| Weight: 4500 | |
| Defense: 10 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| - Id: 2317 | |
| AegisName: Plate_Armor_ | |
| Name: Full Plate | |
| Type: Armor | |
| Buy: 80000 | |
| Weight: 4500 | |
| Defense: 10 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| - Id: 2318 | |
| AegisName: Clothes_Of_The_Lord | |
| Name: Lord's Clothes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2500 | |
| Defense: 8 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bInt,1; | |
| - Id: 2319 | |
| AegisName: Glittering_Clothes | |
| Name: Glittering Jacket | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2500 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus2 bAddEff,Eff_Blind,300; | |
| - Id: 2320 | |
| AegisName: Formal_Suit | |
| Name: Formal Suit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2321 | |
| AegisName: Silk_Robe | |
| Name: Silk Robe | |
| Type: Armor | |
| Buy: 8000 | |
| Weight: 400 | |
| Defense: 3 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,10; | |
| - Id: 2322 | |
| AegisName: Silk_Robe_ | |
| Name: Silk Robe | |
| Type: Armor | |
| Buy: 8000 | |
| Weight: 400 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,10; | |
| - Id: 2323 | |
| AegisName: Scapulare | |
| Name: Scapulare | |
| Type: Armor | |
| Buy: 6500 | |
| Weight: 400 | |
| Defense: 4 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2324 | |
| AegisName: Scapulare_ | |
| Name: Scapulare | |
| Type: Armor | |
| Buy: 6500 | |
| Weight: 400 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2325 | |
| AegisName: Saint_Robe | |
| Name: Saint's Robe | |
| Type: Armor | |
| Buy: 54000 | |
| Weight: 600 | |
| Defense: 6 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2326 | |
| AegisName: Saint_Robe_ | |
| Name: Saint's Robe | |
| Type: Armor | |
| Buy: 54000 | |
| Weight: 600 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2327 | |
| AegisName: Holy_Robe | |
| Name: Holy Robe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1700 | |
| Defense: 7 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus2 bSubRace,RC_Demon,15; | |
| bonus2 bSubEle,Ele_Dark,10; | |
| - Id: 2328 | |
| AegisName: Wooden_Mail | |
| Name: Wooden Mail | |
| Type: Armor | |
| Buy: 5500 | |
| Weight: 1000 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2329 | |
| AegisName: Wooden_Mail_ | |
| Name: Wooden Mail | |
| Type: Armor | |
| Buy: 5500 | |
| Weight: 1000 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2330 | |
| AegisName: Tights | |
| Name: Tights | |
| Type: Armor | |
| Buy: 71000 | |
| Weight: 500 | |
| Defense: 6 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2331 | |
| AegisName: Tights_ | |
| Name: Tights | |
| Type: Armor | |
| Buy: 71000 | |
| Weight: 500 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2332 | |
| AegisName: Silver_Robe | |
| Name: Silver Robe | |
| Type: Armor | |
| Buy: 7000 | |
| Weight: 700 | |
| Defense: 4 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2333 | |
| AegisName: Silver_Robe_ | |
| Name: Silver Robe | |
| Type: Armor | |
| Buy: 7000 | |
| Weight: 700 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2334 | |
| AegisName: Mage_Coat | |
| Name: Mage Coat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 5 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bInt,1; | |
| - Id: 2335 | |
| AegisName: Thief_Clothes | |
| Name: Thief Clothes | |
| Type: Armor | |
| Buy: 74000 | |
| Weight: 100 | |
| Defense: 6 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2336 | |
| AegisName: Thief_Clothes_ | |
| Name: Thief Clothes | |
| Type: Armor | |
| Buy: 74000 | |
| Weight: 100 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2337 | |
| AegisName: Ninja_Suit | |
| Name: Ninja Suit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1500 | |
| Defense: 7 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bMdef,3; | |
| - Id: 2338 | |
| AegisName: Wedding_Dress | |
| Name: Wedding Dress | |
| Type: Armor | |
| Buy: 43000 | |
| Weight: 500 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,15; | |
| - Id: 2339 | |
| AegisName: G_Strings | |
| Name: Pantie | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 100 | |
| Defense: 4 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2340 | |
| AegisName: Novice_Breast | |
| Name: Novice Breastplate | |
| Type: Armor | |
| Buy: 89000 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| - Id: 2341 | |
| AegisName: Full_Plate_Armor | |
| Name: Legion Plate Armor | |
| Type: Armor | |
| Buy: 94000 | |
| Weight: 5500 | |
| Defense: 11 | |
| Jobs: | |
| Crusader: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| - Id: 2342 | |
| AegisName: Full_Plate_Armor_ | |
| Name: Legion Plate Armor | |
| Type: Armor | |
| Buy: 102500 | |
| Weight: 5500 | |
| Defense: 11 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| - Id: 2343 | |
| AegisName: Robe_Of_Casting | |
| Name: Robe of Cast | |
| Type: Armor | |
| Buy: 124800 | |
| Weight: 1100 | |
| Defense: 5 | |
| Jobs: | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bCastrate,-3; | |
| bonus bMdef,4; | |
| - Id: 2344 | |
| AegisName: Flame_Sprits_Armor | |
| Name: Lucius's Fierce Armor of Volcano | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Fire; | |
| - Id: 2345 | |
| AegisName: Flame_Sprits_Armor_ | |
| Name: Lucius's Fierce Armor of Volcano | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Fire; | |
| - Id: 2346 | |
| AegisName: Water_Sprits_Armor | |
| Name: Saphien's Armor of Ocean | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Water; | |
| - Id: 2347 | |
| AegisName: Water_Sprits_Armor_ | |
| Name: Saphien's Armor of Ocean | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Water; | |
| - Id: 2348 | |
| AegisName: Wind_Sprits_Armor | |
| Name: Aebecee's Raging Typhoon Armor | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Wind; | |
| - Id: 2349 | |
| AegisName: Wind_Sprits_Armor_ | |
| Name: Aebecee's Raging Typhoon Armor | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Wind; | |
| - Id: 2350 | |
| AegisName: Earth_Sprits_Armor | |
| Name: Claytos Cracking Earth Armor | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Earth; | |
| - Id: 2351 | |
| AegisName: Earth_Sprits_Armor_ | |
| Name: Claytos Cracking Earth Armor | |
| Type: Armor | |
| Buy: 136000 | |
| Weight: 2200 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| Script: | | |
| bonus bDefEle,Ele_Earth; | |
| - Id: 2352 | |
| AegisName: Novice_Plate | |
| Name: Tattered Novice Ninja Suit | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 1 | |
| Defense: 4 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| - Id: 2353 | |
| AegisName: Odin's_Blessing | |
| Name: Odin's Blessing | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 2500 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| - Id: 2354 | |
| AegisName: Goibne's_Armor | |
| Name: Goibne's Armor | |
| Type: Armor | |
| Buy: 50000 | |
| Weight: 3500 | |
| Defense: 7 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 54 | |
| Refineable: true | |
| Script: | | |
| bonus bVit,2; | |
| bonus bMaxHPrate,10; | |
| - Id: 2355 | |
| AegisName: Angel's_Protection | |
| Name: Angelic Protection | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 600 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,20; | |
| - Id: 2356 | |
| AegisName: Vestment_Of_Grace | |
| Name: Blessed Holy Robe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2500 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus2 bResEff,Eff_Blind,8000; | |
| - Id: 2357 | |
| AegisName: Valkyrie_Armor | |
| Name: Valkyrian Armor | |
| Type: Armor | |
| Weight: 2800 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAllStats,1; | |
| bonus bUnbreakableArmor; | |
| if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) | |
| bonus2 bResEff,Eff_Silence,5000; | |
| else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) | |
| bonus2 bResEff,Eff_Stun,5000; | |
| - Id: 2358 | |
| AegisName: Dress_Of_Angel | |
| Name: Angel's Dress | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,4; | |
| - Id: 2359 | |
| AegisName: Ninja_Suit_ | |
| Name: Ninja Suit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1500 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bMdef,3; | |
| - Id: 2360 | |
| AegisName: Robe_Of_Casting_ | |
| Name: Robe of Cast | |
| Type: Armor | |
| Buy: 124800 | |
| Weight: 1100 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bCastrate,-3; | |
| bonus bMdef,4; | |
| - Id: 2364 | |
| AegisName: Meteo_Plate_Armor | |
| Name: Meteo Plate Armor | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 3000 | |
| Defense: 10 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bResEff,Eff_Stun,3000; | |
| bonus2 bResEff,Eff_Freeze,3000; | |
| - Id: 2365 | |
| AegisName: Orleans_Gown | |
| Name: Orleans's Gown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bCastrate,15; | |
| bonus bNoCastCancel; | |
| - Id: 2366 | |
| AegisName: Divine_Cloth | |
| Name: Divine Cloth | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1500 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,500; | |
| bonus2 bResEff,Eff_Silence,500; | |
| bonus2 bResEff,Eff_Stun,500; | |
| bonus2 bResEff,Eff_Stone,500; | |
| bonus2 bResEff,Eff_Sleep,500; | |
| - Id: 2367 | |
| AegisName: Sniping_Suit | |
| Name: Sniping Suit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 750 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bCritical,6+(readparam(bLuk)/10); | |
| bonus bDelayRate,-23; | |
| - Id: 2368 | |
| AegisName: Golden_Armor | |
| Name: Golden Armor | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2000 | |
| Defense: 4 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,4; | |
| - Id: 2369 | |
| AegisName: Freyja_Overcoat | |
| Name: Freyja Overcoat | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 12 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bUnbreakableArmor; | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| - Id: 2370 | |
| AegisName: Used_Mage_Coat | |
| Name: Used Mage Coat | |
| Type: Armor | |
| Defense: 15 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,300; | |
| bonus bMaxSP,30; | |
| bonus bBaseAtk,10; | |
| bonus bAGI,1; | |
| - Id: 2371 | |
| AegisName: G_Strings_ | |
| Name: Pantie | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 100 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2372 | |
| AegisName: Mage_Coat_ | |
| Name: Mage Coat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bInt,1; | |
| - Id: 2373 | |
| AegisName: Holy_Robe_ | |
| Name: Holy Robe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1700 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus2 bSubRace,RC_Demon,15; | |
| bonus2 bSubEle,Ele_Dark,10; | |
| - Id: 2374 | |
| AegisName: Diabolus_Robe | |
| Name: Diabolus Robe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxSP,150; | |
| bonus bMdef,5; | |
| bonus bHealPower,6; | |
| bonus bDelayRate,-10; | |
| - Id: 2375 | |
| AegisName: Diabolus_Armor | |
| Name: Diabolus Armor | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bDex,1; | |
| bonus bMaxHP,150; | |
| bonus2 bResEff,Eff_Stun,500; | |
| bonus2 bResEff,Eff_Stone,500; | |
| - Id: 2376 | |
| AegisName: Assaulter_Plate | |
| Name: Assaulter Plate | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,150; | |
| bonus bMdef,2; | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 2377 | |
| AegisName: Elite_Engineer_Armor | |
| Name: Elite Engineer Armor | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,150; | |
| bonus bMdef,2; | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 2378 | |
| AegisName: Assassin_Robe | |
| Name: Assassin Robe | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,150; | |
| bonus bMdef,2; | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 2379 | |
| AegisName: Warlock_Battle_Robe | |
| Name: Warlock's Battle Robe | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,150; | |
| bonus bMdef,2; | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 2380 | |
| AegisName: Medic_Robe | |
| Name: Medic's Robe | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,150; | |
| bonus bMdef,2; | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 2381 | |
| AegisName: Elite_Archer_Suit | |
| Name: Elite Archer Suit | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,150; | |
| bonus bMdef,2; | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 2382 | |
| AegisName: Elite_Shooter_Suit | |
| Name: Elite Shooter Suit | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,150; | |
| bonus bMdef,2; | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 2383 | |
| AegisName: Brynhild | |
| Name: Brynhild | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 10 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 94 | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bMaxHP,20*BaseLevel; | |
| bonus bMaxSP,5*BaseLevel; | |
| bonus2 bAddClass,Class_All,10; | |
| bonus bMatkRate,10; | |
| bonus bUnbreakableArmor; | |
| bonus bNoKnockback; | |
| - Id: 2384 | |
| AegisName: Spritual_Tunic | |
| Name: Spiritual Tunic | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 10 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,800; | |
| bonus2 bResEff,Eff_Freeze,10000; | |
| bonus2 bSubEle,Ele_Earth,20; | |
| bonus2 bSubEle,Ele_Fire,20; | |
| bonus2 bSubEle,Ele_Wind,20; | |
| bonus2 bSubEle,Ele_Poison,20; | |
| bonus2 bSubEle,Ele_Holy,20; | |
| bonus2 bSubEle,Ele_Dark,20; | |
| bonus2 bSubEle,Ele_Ghost,20; | |
| bonus2 bSubEle,Ele_Undead,20; | |
| - Id: 2385 | |
| AegisName: Recuperative_Armor | |
| Name: Recuperative Armor | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 12 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bNoRegen,1; | |
| bonus bNoRegen,2; | |
| bonus bHPGainValue,60; | |
| bonus bSPGainValue,6; | |
| bonus bMagicHPGainValue,60; | |
| bonus bMagicSPGainValue,6; | |
| UnEquipScript: | | |
| heal 0,-100; | |
| - Id: 2386 | |
| AegisName: Chameleon_Armor | |
| Name: Chameleon Armor | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1700 | |
| Defense: 5 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHP,(BaseLevel*7); | |
| bonus bMaxSP,(BaseLevel/2); | |
| autobonus2 "{ bonus bNoMagicDamage,100; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; }"; | |
| if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte ) | |
| bonus bMdef,5; | |
| else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief ) | |
| bonus bDef,3; | |
| - Id: 2387 | |
| AegisName: Sprint_Mail | |
| Name: Sprint Mail | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bVit,1; | |
| bonus bHPrecovRate,5; | |
| bonus bAddItemHealRate,3; | |
| bonus2 bSkillHeal,"AL_HEAL",3; | |
| - Id: 2388 | |
| AegisName: Kandura | |
| Name: Kandura | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bFlee,5; | |
| bonus bAspdRate,2; | |
| - Id: 2389 | |
| AegisName: Armor_Of_Naga | |
| Name: Armor of Naga | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,2; | |
| autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; | |
| - Id: 2390 | |
| AegisName: Improved_Tights | |
| Name: Improved Tights | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bFlee2,3; | |
| - Id: 2391 | |
| AegisName: Life_Link | |
| Name: Life Link | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 3500 | |
| Defense: 9 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 82 | |
| Refineable: true | |
| Script: | | |
| bonus bVit,2; | |
| bonus bMdef,5; | |
| bonus bHPrecovRate,50; | |
| - Id: 2392 | |
| AegisName: Old_Pant | |
| Name: Old Green Pantie | |
| Type: Armor | |
| Defense: 10 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bVit,2; | |
| bonus bMaxHP,200; | |
| bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; | |
| bonus bMdef,1; | |
| - Id: 2393 | |
| AegisName: N_Adventurer's_Suit | |
| Name: Novice Adventurer's Suit | |
| Type: Armor | |
| Defense: 8 | |
| Slots: 1 | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2394 | |
| AegisName: Krieger_Suit1 | |
| Name: Glorious Suit | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 81 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,20; | |
| bonus2 bSubRace,RC_DemiHuman,7; | |
| bonus2 bSubRace,RC_Player_Human,7; | |
| - Id: 2395 | |
| AegisName: Krieger_Suit2 | |
| Name: Glorious Popularized Suit | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 61 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,600; | |
| bonus bSPrecovRate,10; | |
| - Id: 2396 | |
| AegisName: Krieger_Suit3 | |
| Name: Glorious Mass-Production Suit | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,500; | |
| - Id: 2397 | |
| AegisName: Incredible_Coat | |
| Name: Incredible Event Resignation Coat | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 900 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2398 | |
| AegisName: Sniping_Suit_M | |
| Name: Sniping Suit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 750 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bCritical,6+(readparam(bLuk)/10); | |
| bonus bDelayRate,-23; | |
| - Id: 2399 | |
| AegisName: Dragon_Vest | |
| Name: Dragon Vest | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2401 | |
| AegisName: Sandals | |
| Name: Sandals | |
| Type: Armor | |
| Buy: 400 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2402 | |
| AegisName: Sandals_ | |
| Name: Sandals | |
| Type: Armor | |
| Buy: 400 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2403 | |
| AegisName: Shoes | |
| Name: Shoes | |
| Type: Armor | |
| Buy: 3500 | |
| Weight: 400 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2404 | |
| AegisName: Shoes_ | |
| Name: Shoes | |
| Type: Armor | |
| Buy: 3500 | |
| Weight: 400 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2405 | |
| AegisName: Boots | |
| Name: Boots | |
| Type: Armor | |
| Buy: 18000 | |
| Weight: 600 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Gunslinger: true | |
| Hunter: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2406 | |
| AegisName: Boots_ | |
| Name: Boots | |
| Type: Armor | |
| Buy: 18000 | |
| Weight: 600 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Gunslinger: true | |
| Hunter: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2407 | |
| AegisName: Chrystal_Pumps | |
| Name: Crystal Pumps | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bLuk,5; | |
| - Id: 2408 | |
| AegisName: Cuffs | |
| Name: Shackles | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 3000 | |
| Defense: 3 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2409 | |
| AegisName: Spiky_Heel | |
| Name: High Heels | |
| Type: Armor | |
| Buy: 8500 | |
| Weight: 600 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2410 | |
| AegisName: Sleipnir | |
| Name: Sleipnir | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 3500 | |
| Defense: 5 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 94 | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bMaxHPrate,20; | |
| bonus bMaxSPrate,20; | |
| bonus bSPrecovRate,15; | |
| bonus bSpeedRate,25; | |
| - Id: 2411 | |
| AegisName: Grave | |
| Name: Greaves | |
| Type: Armor | |
| Buy: 48000 | |
| Weight: 750 | |
| Defense: 5 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| - Id: 2412 | |
| AegisName: Grave_ | |
| Name: Greaves | |
| Type: Armor | |
| Buy: 54000 | |
| Weight: 750 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| - Id: 2413 | |
| AegisName: Safty_Boots | |
| Name: Safety Boots | |
| Type: Armor | |
| Buy: 34000 | |
| Weight: 350 | |
| Defense: 6 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| - Id: 2414 | |
| AegisName: Novice_Boots | |
| Name: Novice Slippers | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 1 | |
| Defense: 2 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| - Id: 2415 | |
| AegisName: Slipper | |
| Name: Bunny Slipper | |
| Type: Armor | |
| Buy: 34000 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| Script: | | |
| bonus bLuk,3; | |
| bonus bMdef,3; | |
| - Id: 2416 | |
| AegisName: Novice_Shoes | |
| Name: Novice Shoes | |
| Type: Armor | |
| Buy: 35000 | |
| Weight: 500 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHPrate,5; | |
| - Id: 2417 | |
| AegisName: Fricco_Shoes | |
| Name: Fricco's Shoes | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 500 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus2 bAddItemGroupHealRate,IG_Potion,20; | |
| - Id: 2418 | |
| AegisName: Vidar's_Boots | |
| Name: Vidar's Boots | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 650 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHPrate,9; | |
| bonus bMaxSPrate,9; | |
| - Id: 2419 | |
| AegisName: Goibne's_Combat_Boots | |
| Name: Goibne's Greaves | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 700 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 54 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bMaxHPrate,5; | |
| bonus bMaxSPrate,5; | |
| - Id: 2420 | |
| AegisName: Angel's_Arrival | |
| Name: Angel's Reincarnation | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 25 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHP,100; | |
| - Id: 2421 | |
| AegisName: Valkyrie_Shoes | |
| Name: Valkyrian Shoes | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableShoes; | |
| if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) | |
| bonus bMaxHP,(BaseLevel*5); | |
| else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) | |
| bonus bMaxSP,(JobLevel*2); | |
| - Id: 2422 | |
| AegisName: High_Fashion_Sandals | |
| Name: High Fashion Sandals | |
| Type: Armor | |
| Buy: 24000 | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,10; | |
| - Id: 2423 | |
| AegisName: Variant_Shoes | |
| Name: Variant Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHPRate,20-getrefine(); | |
| bonus bMaxSPRate,20-getrefine(); | |
| bonus bDef,getrefine()/2; | |
| - Id: 2424 | |
| AegisName: Tidal_Shoes | |
| Name: Tidal Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,5; | |
| - Id: 2425 | |
| AegisName: Black_Leather_Boots | |
| Name: Black Leather Boots | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| if (getrefine()>=9) | |
| bonus bAgi,2; | |
| - Id: 2426 | |
| AegisName: Shadow_Walk | |
| Name: Shadow Walk | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2000 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,10; | |
| if (getskilllv("AS_CLOAKING")<2) { | |
| bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0; | |
| } else | |
| bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0; | |
| - Id: 2427 | |
| AegisName: Golden_Shoes | |
| Name: Golden Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,4; | |
| - Id: 2428 | |
| AegisName: Freyja_Boots | |
| Name: Freyja Boots | |
| Type: Armor | |
| Weight: 300 | |
| Defense: 10 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| - Id: 2429 | |
| AegisName: Iron_Boots01 | |
| Name: Iron Boots | |
| Type: Armor | |
| Weight: 1500 | |
| Defense: 5 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2430 | |
| AegisName: Iron_Boots02 | |
| Name: Iron Boots | |
| Type: Armor | |
| Weight: 800 | |
| Defense: 5 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2431 | |
| AegisName: Valley_Shoes | |
| Name: Valley Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 10 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,7; | |
| bonus bMaxSPRate,7; | |
| - Id: 2432 | |
| AegisName: Spiky_Heel_ | |
| Name: High Heels | |
| Type: Armor | |
| Buy: 8500 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2433 | |
| AegisName: Diabolus_Boots | |
| Name: Diabolus Boots | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 250 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHP,(BaseLevel*10); | |
| - Id: 2434 | |
| AegisName: Black_Leather_Boots_ | |
| Name: Black Leather Boots | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| if (getrefine()>=9) | |
| bonus bAgi,2; | |
| - Id: 2435 | |
| AegisName: Battle_Greave | |
| Name: Battle Greaves | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,100; | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_DemiHuman,1; | |
| bonus2 bSubRace,RC_Player_Human,1; | |
| - Id: 2436 | |
| AegisName: Combat_Boots | |
| Name: Combat Boots | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,100; | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_DemiHuman,1; | |
| bonus2 bSubRace,RC_Player_Human,1; | |
| - Id: 2437 | |
| AegisName: Battle_Boots | |
| Name: Battle Boots | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,100; | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_DemiHuman,1; | |
| bonus2 bSubRace,RC_Player_Human,1; | |
| - Id: 2438 | |
| AegisName: Paw_Of_Cat | |
| Name: Paw Of Cat | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 300 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bFlee,5; | |
| bonus bAgi,1; | |
| - Id: 2439 | |
| AegisName: Refresh_Shoes | |
| Name: Refresh Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 9 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,17; | |
| bonus bMaxSPRate,8; | |
| bonus2 bHPRegenRate,20,10000; | |
| bonus2 bSPRegenRate,3,10000; | |
| - Id: 2440 | |
| AegisName: Sprint_Shoes | |
| Name: Sprint Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bSPrecovRate,5; | |
| - Id: 2441 | |
| AegisName: Beach_Sandal | |
| Name: Beach Sandals | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bAgi,1; | |
| bonus2 bSubEle,Ele_Fire,10; | |
| - Id: 2442 | |
| AegisName: Boots_Perforated | |
| Name: Red Stocking Boots | |
| Type: Armor | |
| Defense: 7 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bHPrecovRate,10; | |
| bonus bSPrecovRate,10; | |
| bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; | |
| bonus bMdef,1; | |
| - Id: 2443 | |
| AegisName: Fish_Shoes | |
| Name: Fisher's Boots | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 250 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| - Id: 2444 | |
| AegisName: Krieger_Shoes1 | |
| Name: Glorious Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 81 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,10; | |
| bonus2 bSubRace,RC_DemiHuman,4; | |
| bonus2 bSubRace,RC_Player_Human,4; | |
| bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10; | |
| - Id: 2445 | |
| AegisName: Krieger_Shoes2 | |
| Name: Glorious Popularized Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 61 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,5; | |
| bonus bMaxSPRate,5; | |
| - Id: 2446 | |
| AegisName: Krieger_Shoes3 | |
| Name: Glorious Mass-Production Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,5; | |
| - Id: 2447 | |
| AegisName: Military_Boots | |
| Name: Army Boots | |
| Type: Armor | |
| Weight: 1000 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2448 | |
| AegisName: Air_Boss | |
| Name: Air Boss | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2449 | |
| AegisName: Variant_Shoes_M | |
| Name: Variant Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,20-getrefine(); | |
| bonus bMaxSPRate,20-getrefine(); | |
| bonus bDef,getrefine()/2; | |
| - Id: 2450 | |
| AegisName: Vital_Tree_Shoes | |
| Name: Vital Tree Shoes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Shoes: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHPrate,10; | |
| bonus2 bHPRegenRate,30,10000; | |
| bonus bHealpower2,5; | |
| bonus bAddItemHealRate,5; | |
| bonus bMdef,3; | |
| bonus bVit,2; | |
| - Id: 2501 | |
| AegisName: Hood | |
| Name: Hood | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2502 | |
| AegisName: Hood_ | |
| Name: Hood | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2503 | |
| AegisName: Muffler | |
| Name: Muffler | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 400 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2504 | |
| AegisName: Muffler_ | |
| Name: Muffler | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 400 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2505 | |
| AegisName: Manteau | |
| Name: Manteau | |
| Type: Armor | |
| Buy: 32000 | |
| Weight: 600 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2506 | |
| AegisName: Manteau_ | |
| Name: Manteau | |
| Type: Armor | |
| Buy: 32000 | |
| Weight: 600 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2507 | |
| AegisName: Cape_Of_Ancient_Lord | |
| Name: Ancient Cape | |
| Type: Armor | |
| Buy: 82000 | |
| Weight: 600 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2508 | |
| AegisName: Ragamuffin_Cape | |
| Name: Ragamuffin Manteau | |
| Type: Armor | |
| Buy: 56000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableGarment; | |
| bonus bMdef,10; | |
| - Id: 2509 | |
| AegisName: Clack_Of_Servival | |
| Name: Survivor's Manteau | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 550 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bVit,10; | |
| - Id: 2510 | |
| AegisName: Novice_Hood | |
| Name: Somber Novice Hood | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 1 | |
| Defense: 2 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,20; | |
| - Id: 2511 | |
| AegisName: Skeleton's_Cape | |
| Name: Skeleton Manteau | |
| Type: Armor | |
| Buy: 5000 | |
| Weight: 700 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bInt,-3; | |
| bonus bDex,2; | |
| bonus bVit,-3; | |
| bonus bLuk,2; | |
| bonus bAgi,-4; | |
| - Id: 2512 | |
| AegisName: Novice_Manteau | |
| Name: Novice Manteau | |
| Type: Armor | |
| Buy: 50000 | |
| Weight: 500 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,10; | |
| - Id: 2513 | |
| AegisName: Celestial_Robe | |
| Name: Heavenly Maiden Robe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| - Id: 2514 | |
| AegisName: Pauldron | |
| Name: Pauldron | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| - Id: 2515 | |
| AegisName: Wing_Of_Eagle | |
| Name: Eagle Wing | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 300 | |
| Defense: 1 | |
| Slots: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| - Id: 2516 | |
| AegisName: Falcon_Robe | |
| Name: Falcon Muffler | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 400 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bFlee,15; | |
| bonus bFlee2,5; | |
| - Id: 2517 | |
| AegisName: Vali's_Manteau | |
| Name: Vali's Manteau | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 600 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,15; | |
| - Id: 2518 | |
| AegisName: Morpheus's_Shawl | |
| Name: Morpheus's Shawl | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 600 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxSPrate,10; | |
| bonus bMdef,3; | |
| - Id: 2519 | |
| AegisName: Morrigane's_Manteau | |
| Name: Morrigane's Manteau | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 600 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 61 | |
| Refineable: true | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bFlee2,8; | |
| - Id: 2520 | |
| AegisName: Goibne's_Shoulder_Arms | |
| Name: Goibne's Spaulders | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 700 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 54 | |
| Refineable: true | |
| Script: | | |
| bonus bLongAtkDef,10; | |
| bonus bMdef,2; | |
| bonus bVit,1; | |
| - Id: 2521 | |
| AegisName: Angel's_Warmth | |
| Name: Angelic Cardigan | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 400 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| Script: | | |
| bonus bHPrecovRate,5; | |
| - Id: 2522 | |
| AegisName: Undershirt | |
| Name: Undershirt | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 150 | |
| Defense: 2 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,1; | |
| - Id: 2523 | |
| AegisName: Undershirt_ | |
| Name: Undershirt | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 150 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,1; | |
| - Id: 2524 | |
| AegisName: Valkyrie_Manteau | |
| Name: Valkyrian Manteau | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableGarment; | |
| if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) | |
| bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2); | |
| else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) | |
| bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2); | |
| - Id: 2525 | |
| AegisName: Cape_Of_Ancient_Lord_ | |
| Name: Ancient Cape | |
| Type: Armor | |
| Buy: 82000 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2526 | |
| AegisName: Dragon_Scale_Coat | |
| Name: Coat of Dragon Scale | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 10 | |
| Defense: 4 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| - Id: 2527 | |
| AegisName: Dragon_Breath | |
| Name: Dragon Breath | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubRace,RC_Dragon,15; | |
| - Id: 2528 | |
| AegisName: Wool_Scarf | |
| Name: Wool Scarf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,4; | |
| - Id: 2529 | |
| AegisName: Rider_Insignia | |
| Name: Rider Insignia | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 2530 | |
| AegisName: Rider_Insignia_ | |
| Name: Rider Insignia | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 2531 | |
| AegisName: Ulfhedinn | |
| Name: Ulfhedinn | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20; | |
| - Id: 2532 | |
| AegisName: Mithril_Magic_Cape | |
| Name: Mithril Magic Cape | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; | |
| - Id: 2533 | |
| AegisName: Freyja_Cape | |
| Name: Freyja Cape | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 10 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,15; | |
| bonus2 bSubRace,RC_Player_Human,15; | |
| - Id: 2534 | |
| AegisName: Ruffler | |
| Name: Ruffler | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 10 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,17; | |
| bonus bFlee,17; | |
| - Id: 2535 | |
| AegisName: Cloak_Of_Survival_C | |
| Name: Cloak Of Survival | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 5 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bVit,10; | |
| bonus bMdef,10; | |
| - Id: 2536 | |
| AegisName: Skin_Of_Ventus | |
| Name: Skin of Ventus | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 250 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bMaxHP,200; | |
| bonus bFlee,10; | |
| - Id: 2537 | |
| AegisName: Diabolus_Manteau | |
| Name: Diabolus Manteau | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 250 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,5; | |
| bonus bMaxHP,100; | |
| bonus2 bAddDamageClass,1916,10; | |
| bonus2 bAddDamageClass,1917,10; | |
| - Id: 2538 | |
| AegisName: Commander_Manteau | |
| Name: Captain's Manteau | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,50; | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_DemiHuman,1; | |
| bonus2 bSubRace,RC_Player_Human,1; | |
| - Id: 2539 | |
| AegisName: Commander_Manteau_ | |
| Name: Commander's Manteau | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,50; | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_DemiHuman,1; | |
| bonus2 bSubRace,RC_Player_Human,1; | |
| - Id: 2540 | |
| AegisName: Sheriff_Manteau | |
| Name: Sheriff's Manteau | |
| Type: Armor | |
| Buy: 10 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,50; | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_DemiHuman,1; | |
| bonus2 bSubRace,RC_Player_Human,1; | |
| - Id: 2541 | |
| AegisName: Asprika | |
| Name: Asprika | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 5 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 94 | |
| Script: | | |
| bonus bMdef,5; | |
| bonus3 bSubEle,Ele_Neutral,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Water,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Earth,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Fire,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Wind,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Poison,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Holy,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Dark,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Ghost,30,BF_SHORT; | |
| bonus3 bSubEle,Ele_Undead,30,BF_SHORT; | |
| bonus bFlee,30; | |
| skill "AL_TELEPORT",1; | |
| bonus bUnbreakableGarment; | |
| - Id: 2542 | |
| AegisName: Flame_Manteau | |
| Name: Flame Manteau of Naght Sieger | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 70 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHPRate,5; | |
| bonus bMdef,2; | |
| bonus bMatkRate,1; | |
| bonus2 bAddEle,Ele_Fire,2; | |
| - Id: 2543 | |
| AegisName: Sylphid_Manteau | |
| Name: Sylphid Manteau | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 9 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bFlee,13; | |
| bonus2 bSubEle,Ele_Neutral,13; | |
| bonus bFlee2,1; | |
| - Id: 2544 | |
| AegisName: Leather_Of_Tendrilion | |
| Name: Leather of Tendrilion | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,5; | |
| bonus2 bSubEle,Ele_Earth,5; | |
| bonus2 bSubRace,RC_Plant,5; | |
| bonus2 bSubRace,RC_Brute,5; | |
| bonus2 bSubRace,RC_Player_Doram,5; | |
| - Id: 2545 | |
| AegisName: Musika | |
| Name: Musika | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; | |
| - Id: 2546 | |
| AegisName: Beach_Manteau | |
| Name: Beach Manteau | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Slots: 1 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus2 bSubEle,Ele_Fire,10; | |
| - Id: 2547 | |
| AegisName: Cheap_Running_Shirts | |
| Name: Cheap Undershirt | |
| Type: Armor | |
| Defense: 8 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bFlee,10; | |
| bonus2 bSubEle,Ele_Neutral,10; | |
| bonus bMdef,1; | |
| - Id: 2548 | |
| AegisName: Muffler_C | |
| Name: Neo Muffler | |
| Type: Armor | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 95 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| bonus bMaxHPrate,10; | |
| bonus2 bSubEle,Ele_Water,5; | |
| bonus2 bSubEle,Ele_Fire,5; | |
| bonus2 bSubEle,Ele_Holy,5; | |
| bonus2 bSubEle,Ele_Dark,5; | |
| - Id: 2549 | |
| AegisName: Krieger_Muffler1 | |
| Name: Glorious Muffler | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 81 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPRate,5; | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| - Id: 2550 | |
| AegisName: Fisher's_Muffler | |
| Name: Fisher's Muffler | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| - Id: 2551 | |
| AegisName: Rider_Insignia_M | |
| Name: Crest of the Rider | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 2552 | |
| AegisName: Mithril_Magic_Cape_M | |
| Name: Mithril Magic Manteau | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; | |
| - Id: 2553 | |
| AegisName: Dragon_Manteau | |
| Name: Dragon Manteau | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bMdef,5; | |
| - Id: 2554 | |
| AegisName: Piece_Of_Angent_Skin | |
| Name: Nydhorgg's Shadow Garb | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Garment: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,7; | |
| bonus2 bSubEle,Ele_Water,7; | |
| bonus2 bSubEle,Ele_Earth,7; | |
| bonus2 bSubEle,Ele_Fire,7; | |
| bonus2 bSubEle,Ele_Wind,7; | |
| bonus2 bSubEle,Ele_Poison,7; | |
| bonus2 bSubEle,Ele_Holy,7; | |
| bonus2 bSubEle,Ele_Dark,7; | |
| bonus2 bSubEle,Ele_Ghost,7; | |
| bonus2 bSubEle,Ele_Undead,7; | |
| bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); | |
| bonus2 bSPDrainRate,10,1; | |
| bonus bMdef,3; | |
| - Id: 2601 | |
| AegisName: Ring | |
| Name: Ring | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 2602 | |
| AegisName: Earring | |
| Name: Earring | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 2603 | |
| AegisName: Necklace | |
| Name: Necklace | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus bVit,2; | |
| - Id: 2604 | |
| AegisName: Glove | |
| Name: Glove | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus bDex,2; | |
| - Id: 2605 | |
| AegisName: Brooch | |
| Name: Brooch | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 2607 | |
| AegisName: Clip | |
| Name: Clip | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bMaxSP,10; | |
| - Id: 2608 | |
| AegisName: Rosary | |
| Name: Rosary | |
| Type: Armor | |
| Buy: 15000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bLuk,2; | |
| - Id: 2609 | |
| AegisName: Skul_Ring | |
| Name: Skull Ring | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2610 | |
| AegisName: Gold_Ring | |
| Name: Gold Ring | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2611 | |
| AegisName: Silver_Ring | |
| Name: Silver Ring | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2612 | |
| AegisName: Flower_Ring | |
| Name: Flower Ring | |
| Type: Armor | |
| Buy: 1500 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2613 | |
| AegisName: Diamond_Ring | |
| Name: Diamond Ring | |
| Type: Armor | |
| Buy: 45000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2614 | |
| AegisName: An_Eye_Of_Dullahan | |
| Name: Eye of Dullahan | |
| Type: Armor | |
| Buy: 90000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Script: | | |
| bonus2 bResEff,Eff_Poison,10000; | |
| bonus2 bSubRace,RC_Undead,4; | |
| bonus2 bSubRace,RC_Demon,4; | |
| - Id: 2615 | |
| AegisName: Safety_Ring | |
| Name: Safety Ring | |
| Type: Armor | |
| Buy: 75000 | |
| Weight: 100 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 2616 | |
| AegisName: Critical_Ring | |
| Name: Critical Ring | |
| Type: Armor | |
| Buy: 75000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Script: | | |
| bonus bCritical,5; | |
| - Id: 2617 | |
| AegisName: Mitten_Of_Presbyter | |
| Name: Celebrant's Mitten | |
| Type: Armor | |
| Buy: 2 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 35 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 2618 | |
| AegisName: Matyr's_Flea_Guard | |
| Name: Matyr's Leash | |
| Type: Armor | |
| Buy: 2 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 35 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2619 | |
| AegisName: Thimble_Of_Archer | |
| Name: Bow Thimble | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 100 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Script: | | |
| bonus bLongAtkRate,3; | |
| - Id: 2620 | |
| AegisName: Ring_Of_Rogue | |
| Name: Rogue's Treasure | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 100 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Script: | | |
| if (readparam(bStr)>=90) { | |
| bonus bHit,10; | |
| bonus bFlee,10; | |
| } | |
| if (readparam(bAgi)>=90) { | |
| bonus bBaseAtk,10; | |
| bonus bCritical,10; | |
| } | |
| - Id: 2621 | |
| AegisName: Ring_ | |
| Name: Ring | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 2622 | |
| AegisName: Earring_ | |
| Name: Earring | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 2623 | |
| AegisName: Necklace_ | |
| Name: Necklace | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 2624 | |
| AegisName: Glove_ | |
| Name: Glove | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2625 | |
| AegisName: Brooch_ | |
| Name: Brooch | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2626 | |
| AegisName: Rosary_ | |
| Name: Rosary | |
| Type: Armor | |
| Buy: 15000 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bLuk,1; | |
| - Id: 2627 | |
| AegisName: Belt | |
| Name: Belt | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 1200 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 25 | |
| - Id: 2628 | |
| AegisName: Novice_Armlet | |
| Name: Novice Armlet | |
| Type: Armor | |
| Buy: 400 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| - Id: 2629 | |
| AegisName: Magingiorde | |
| Name: Megingjard | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 8000 | |
| Defense: 2 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 94 | |
| Script: | | |
| bonus bStr,40; | |
| bonus bMdef,7; | |
| - Id: 2630 | |
| AegisName: Brysinggamen | |
| Name: Brisingamen | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1500 | |
| Defense: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 94 | |
| Script: | | |
| bonus bStr,6; | |
| bonus bAgi,6; | |
| bonus bVit,6; | |
| bonus bInt,6; | |
| bonus bLuk,10; | |
| bonus bMdef,5; | |
| - Id: 2631 | |
| AegisName: First_Age_Ring | |
| Name: Celebration Ring | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 10 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| - Id: 2634 | |
| AegisName: Bridegroom_Ring | |
| Name: Wedding Ring | |
| Type: Armor | |
| Gender: Male | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| skill "WE_MALE",1; | |
| skill "WE_FEMALE",1; | |
| skill "WE_CALLPARTNER",1; | |
| - Id: 2635 | |
| AegisName: Bride_Ring | |
| Name: Wedding Ring | |
| Type: Armor | |
| Gender: Female | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| skill "WE_MALE",1; | |
| skill "WE_FEMALE",1; | |
| skill "WE_CALLPARTNER",1; | |
| - Id: 2636 | |
| AegisName: Gold_Ring_ | |
| Name: Gold Christmas Ring | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 2637 | |
| AegisName: Silver_Ring_ | |
| Name: Silver Christmas Ring | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 2638 | |
| AegisName: Exorcize_Sachet | |
| Name: Sacred Incense | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bLuk,1; | |
| - Id: 2639 | |
| AegisName: Purification_Sachet | |
| Name: Occult Incense | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bAgi,1; | |
| - Id: 2640 | |
| AegisName: Kafra_Ring | |
| Name: Kafra Ring | |
| Type: Armor | |
| Buy: 40000 | |
| Weight: 200 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bAgi,1; | |
| bonus bLuk,1; | |
| bonus bMdef,1; | |
| - Id: 2641 | |
| AegisName: Fashionable_Sack | |
| Name: Fashion Hip Sack | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 2642 | |
| AegisName: Serin's_Gold_Ring | |
| Name: Serin's Gold Ring | |
| Type: Armor | |
| Buy: 20 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2643 | |
| AegisName: Serin's_Gold_Ring_ | |
| Name: Serin's Gold Ring | |
| Type: Armor | |
| Buy: 45000 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2644 | |
| AegisName: The_Sign_ | |
| Name: The Sign | |
| Type: Armor | |
| Buy: 2 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| - Id: 2645 | |
| AegisName: Moonlight_Ring | |
| Name: Moonlight Ring | |
| Type: Armor | |
| Buy: 40000 | |
| Weight: 200 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Script: | | |
| bonus bMdef,2; | |
| - Id: 2646 | |
| AegisName: Bunch_Of_Carnation | |
| Name: Bunch of Carnations | |
| Type: Armor | |
| Buy: 2 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bAllStats,3; | |
| - Id: 2647 | |
| AegisName: Nile_Rose | |
| Name: Nile Rose | |
| Type: Armor | |
| Buy: 2 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,10; | |
| - Id: 2648 | |
| AegisName: Morpheus's_Ring | |
| Name: Morpheus's Ring | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 33 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMaxSPrate,5; | |
| - Id: 2649 | |
| AegisName: Morpheus's_Armlet | |
| Name: Morpheus's Bracelet | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 33 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMaxSPrate,5; | |
| - Id: 2650 | |
| AegisName: Morrigane's_Belt | |
| Name: Morrigane's Belt | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 61 | |
| Script: | | |
| bonus bBaseAtk,5; | |
| bonus bCritical,3; | |
| - Id: 2651 | |
| AegisName: Morrigane's_Pendant | |
| Name: Morrigane's Pendant | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 61 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bCritical,3; | |
| - Id: 2652 | |
| AegisName: Cursed_Lucky_Brooch | |
| Name: Goddess of Fortune's Cursed Brooch | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Script: | | |
| bonus bCritical,6; | |
| bonus2 bAddEff2,Eff_Curse,50; | |
| - Id: 2653 | |
| AegisName: Sacrifice_Ring | |
| Name: Sacrifice Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| - Id: 2654 | |
| AegisName: Shinobi's_Sash | |
| Name: Shinobi Sash | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bAgi,1; | |
| bonus bMdef,1; | |
| - Id: 2655 | |
| AegisName: Bloody_Iron_Ball | |
| Name: Bloodied Shackle Ball | |
| Type: Armor | |
| Buy: 50000 | |
| Weight: 4000 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| - Id: 2656 | |
| AegisName: Hyper_Changer | |
| Name: Armor Charm | |
| Type: Armor | |
| Buy: 20000 | |
| Weight: 1000 | |
| Defense: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bMaxHP,50; | |
| - Id: 2657 | |
| AegisName: Lab_Passport | |
| Name: Laboratory Permit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| - Id: 2658 | |
| AegisName: Nile_Rose_ | |
| Name: Nile Rose | |
| Type: Armor | |
| Buy: 2 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bMaxHP,10; | |
| - Id: 2659 | |
| AegisName: Vesper_Core01 | |
| Name: Vesper Core 01 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bInt,2; | |
| bonus bMaxSPrate,5; | |
| - Id: 2660 | |
| AegisName: Vesper_Core02 | |
| Name: Vesper Core 02 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bStr,3; | |
| bonus bBaseAtk,10; | |
| - Id: 2661 | |
| AegisName: Vesper_Core03 | |
| Name: Vesper Core 03 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bAgi,3; | |
| bonus bFlee,5; | |
| - Id: 2662 | |
| AegisName: Vesper_Core04 | |
| Name: Vesper Core 04 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bDex,3; | |
| bonus bHit,10; | |
| - Id: 2663 | |
| AegisName: Gauntlet_Of_Accuracy | |
| Name: Gauntlet of Hit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 900 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Script: | | |
| bonus bHit,15; | |
| bonus bStr,1; | |
| - Id: 2664 | |
| AegisName: Scarf_Belt | |
| Name: Belcarf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Script: | | |
| bonus bDex,2; | |
| bonus bInt,1; | |
| - Id: 2665 | |
| AegisName: Ring_Of_Exorcism | |
| Name: Exorcising Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Script: | | |
| bonus bMdef,1; | |
| bonus2 bExpAddRace,RC_Undead,5; | |
| bonus2 bExpAddRace,RC_Demon,5; | |
| - Id: 2666 | |
| AegisName: Lamp_Of_Hope | |
| Name: Lantern of Hope | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bStr,2; | |
| bonus2 bResEff,Eff_Blind,1000; | |
| - Id: 2667 | |
| AegisName: Glove_Of_Archer | |
| Name: Renown Archer's Gloves | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Script: | | |
| bonus bHit,5; | |
| bonus bCritical,5; | |
| bonus bDex,1; | |
| - Id: 2668 | |
| AegisName: Women's_Glory | |
| Name: Woman Glory | |
| Type: Armor | |
| Weight: 500 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2669 | |
| AegisName: Golden_Necklace_ | |
| Name: RJC Necklace | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bMaxSP,10; | |
| - Id: 2670 | |
| AegisName: Ring_Of_Longing | |
| Name: Ring of Longing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bFlee,5; | |
| - Id: 2671 | |
| AegisName: Thimble_Of_Archer_ | |
| Name: Bow Thimble | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 100 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Script: | | |
| bonus bLongAtkRate,3; | |
| - Id: 2672 | |
| AegisName: Anniversary_Ring | |
| Name: 3rd Anniversary Celebration Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2673 | |
| AegisName: Shining_Ring | |
| Name: Warrior's Shining Ring | |
| Type: Armor | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 48 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bBaseAtk,10; | |
| bonus bSPrecovRate,3; | |
| - Id: 2674 | |
| AegisName: Honor_Ring | |
| Name: Ring of Honor | |
| Type: Armor | |
| Buy: 20 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2675 | |
| AegisName: Lord_Ring | |
| Name: Lord Ring | |
| Type: Armor | |
| Weight: 10 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bAllStats,3; | |
| - Id: 2676 | |
| AegisName: Hunter_Earring | |
| Name: Hunter's Earring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddMonsterDropItem,7618,100; | |
| - Id: 2677 | |
| AegisName: Spiritual_Ring | |
| Name: Spiritual Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| - Id: 2678 | |
| AegisName: Ring_Of_Flame_Lord | |
| Name: Ring Of Flame Lord | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bVit,1; | |
| bonus bBaseAtk,15; | |
| bonus2 bSubEle,Ele_Fire,10; | |
| bonus3 bAutoSpell,"CH_SOULCOLLECT",1,30; | |
| bonus3 bAutoSpell,"MO_EXPLOSIONSPIRITS",1,10; | |
| bonus3 bAutoSpell,"PA_PRESSURE",2,30; | |
| bonus3 bAutoSpell,"MG_FIREBALL",1,150; | |
| bonus3 bAutoSpell,"KN_BOWLINGBASH",5,20; | |
| - Id: 2679 | |
| AegisName: Ring_Of_Resonance | |
| Name: Ring Of Resonance | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bVit,1; | |
| bonus bMdef,2; | |
| bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; | |
| bonus3 bAutoSpellWhenHit,"AS_SPLASHER",10,20; | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",10,30; | |
| bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,20; | |
| bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",5,20; | |
| - Id: 2680 | |
| AegisName: Lesser_Elemental_Ring | |
| Name: Lesser Elemental Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bAllStats,1; | |
| bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; | |
| bonus3 bAutoSpell,"MC_IDENTIFY",1,50; | |
| bonus3 bAutoSpell,"TF_PICKSTONE",1,100; | |
| bonus3 bAutoSpell,"BS_GREED",1,10; | |
| bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; | |
| bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; | |
| bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; | |
| bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50; | |
| - Id: 2681 | |
| AegisName: Republic_Ring | |
| Name: Republic Anniversary Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bAllStats,3; | |
| - Id: 2682 | |
| AegisName: Ring_Of_Water | |
| Name: Ring of Water | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,5; | |
| - Id: 2683 | |
| AegisName: Ring_Of_Fire | |
| Name: Ring of Fire | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus2 bSubEle,Ele_Fire,5; | |
| - Id: 2684 | |
| AegisName: Ring_Of_Wind | |
| Name: Ring of Wind | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus2 bSubEle,Ele_Wind,5; | |
| - Id: 2685 | |
| AegisName: Ring_Of_Earth | |
| Name: Ring of Earth | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Script: | | |
| bonus2 bSubEle,Ele_Earth,5; | |
| - Id: 2686 | |
| AegisName: Elven_Ears_C | |
| Name: Elven Ears | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 73 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 2687 | |
| AegisName: Steel_Flower_C | |
| Name: Steel Flower | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 56 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubRace,RC_Plant,3; | |
| - Id: 2688 | |
| AegisName: Critical_Ring_C | |
| Name: Critical Ring | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bCritical,10; | |
| - Id: 2689 | |
| AegisName: Earring_C | |
| Name: Earring | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,3; | |
| - Id: 2690 | |
| AegisName: Ring_C | |
| Name: Ring | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,4; | |
| - Id: 2691 | |
| AegisName: Necklace_C | |
| Name: Necklace | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bVit,4; | |
| - Id: 2692 | |
| AegisName: Glove_C | |
| Name: Glove | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,4; | |
| - Id: 2693 | |
| AegisName: Brooch_C | |
| Name: Brooch | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAgi,4; | |
| - Id: 2694 | |
| AegisName: Rosary_C | |
| Name: Rosary | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bLuk,4; | |
| - Id: 2695 | |
| AegisName: Safety_Ring_C | |
| Name: Safety Ring | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 2696 | |
| AegisName: Vesper_Core01_C | |
| Name: Vesper Core 01 | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bInt,2; | |
| bonus bMaxSPrate,5; | |
| - Id: 2697 | |
| AegisName: Vesper_Core02_C | |
| Name: Vesper Core 02 | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bStr,3; | |
| bonus bBaseAtk,10; | |
| - Id: 2698 | |
| AegisName: Vesper_Core03_C | |
| Name: Vesper Core 03 | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bAgi,3; | |
| bonus bFlee,5; | |
| - Id: 2699 | |
| AegisName: Vesper_Core04_C | |
| Name: Vesper Core 04 | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bDex,3; | |
| bonus bHit,10; | |
| - Id: 2700 | |
| AegisName: Red_Silk_Seal | |
| Name: Red Silk Seal | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| - Id: 2701 | |
| AegisName: Orleans_Glove | |
| Name: Orleans's Glove | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bDex,2; | |
| bonus bMatkRate,3; | |
| - Id: 2702 | |
| AegisName: Bison_Horn | |
| Name: Bison Horn | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 2703 | |
| AegisName: Expert_Ring | |
| Name: Expert Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Script: | | |
| bonus bDelayRate,-5; | |
| bonus bUseSPrate,5; | |
| - Id: 2704 | |
| AegisName: Golden_Accessory | |
| Name: Golden Accessories | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 4 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,4; | |
| - Id: 2705 | |
| AegisName: Golden_Accessory2 | |
| Name: Golden Accessories | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 4 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddMonsterDropItem,12018,500; | |
| - Id: 2706 | |
| AegisName: Handcuff | |
| Name: Arrest Handcuffs | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2707 | |
| AegisName: Gusli | |
| Name: GUSLI | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2708 | |
| AegisName: Chinese_Handicraft | |
| Name: Chinese Handicraft | |
| Type: Armor | |
| Weight: 50 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus3 bAutoSpell,"MG_FIREBOLT",5,300; | |
| - Id: 2709 | |
| AegisName: 5_Anniversary_Coin | |
| Name: 5th Anniversary Coin | |
| Type: Armor | |
| Buy: 2 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bAtkRate,5; | |
| bonus bMatkRate,5; | |
| - Id: 2710 | |
| AegisName: Bloody_Iron_Ball_C | |
| Name: Bloody Iron Ball | |
| Type: Armor | |
| Buy: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bBaseAtk,30; | |
| - Id: 2711 | |
| AegisName: Spiritual_Ring_C | |
| Name: Spiritual Ring | |
| Type: Armor | |
| Buy: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bDex,2; | |
| - Id: 2712 | |
| AegisName: Ragnarok_Limited_Ed | |
| Name: Ragnarok Limited Edition | |
| Type: Armor | |
| Weight: 300 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Script: | | |
| bonus bVit,3; | |
| bonus bAgi,3; | |
| bonus bLuk,3; | |
| - Id: 2713 | |
| AegisName: Certificate_TW | |
| Name: Certificate | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2714 | |
| AegisName: Marvelous_Pandent | |
| Name: Marvelous Pendant | |
| Type: Armor | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2715 | |
| AegisName: Skul_Ring_ | |
| Name: Skull Ring | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus2 bSubRace,RC_Undead,1; | |
| - Id: 2716 | |
| AegisName: Librarian_Glove | |
| Name: Librarian Glove | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Jobs: | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Script: | | |
| bonus bMaxSP,20; | |
| - Id: 2717 | |
| AegisName: Pocket_Watch_ | |
| Name: Pocket Watch | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| - Id: 2718 | |
| AegisName: Lunatic_Brooch | |
| Name: Lunatic Brooch | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| - Id: 2719 | |
| AegisName: Iron_Wrist | |
| Name: Iron Wrist | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Script: | | |
| bonus2 bSkillAtk,"SM_BASH",6; | |
| bonus2 bSkillAtk,"MC_MAMMONITE",6; | |
| - Id: 2720 | |
| AegisName: Medal_Swordman | |
| Name: Medal of Honor | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| StarGladiator: true | |
| Swordman: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| bonus bHit,10; | |
| bonus bMaxHP,500; | |
| bonus bMaxSP,50; | |
| bonus3 bAddEff,Eff_Stun,100,ATF_SHORT; | |
| - Id: 2721 | |
| AegisName: Medal_Thief | |
| Name: Medal of Honor | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| bonus bFlee,10; | |
| bonus bMaxHP,300; | |
| bonus bMaxSP,80; | |
| bonus3 bAddEff,Eff_Poison,100,ATF_SHORT; | |
| - Id: 2722 | |
| AegisName: Medal_Acolyte | |
| Name: Medal of Honor | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| bonus bMdef,6; | |
| bonus bMaxHP,600; | |
| bonus3 bAddEff,Eff_Silence,100,ATF_SHORT; | |
| - Id: 2723 | |
| AegisName: Medal_Mage | |
| Name: Medal of Honor | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| bonus bMdef,6; | |
| bonus bMaxHP,600; | |
| bonus2 bAddEffWhenHit,Eff_Stone,100; | |
| - Id: 2724 | |
| AegisName: Medal_Archer | |
| Name: Medal of Honor | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| bonus bCritical,10; | |
| bonus bMaxHP,300; | |
| bonus bMaxSP,80; | |
| bonus3 bAddEff,Eff_Blind,100,ATF_LONG; | |
| - Id: 2725 | |
| AegisName: Medal_Merchant | |
| Name: Medal of Honor | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| bonus bAspdRate,10; | |
| bonus bMaxHP,500; | |
| bonus bMaxSP,50; | |
| bonus3 bAddEff,Eff_Curse,100,ATF_SHORT; | |
| - Id: 2726 | |
| AegisName: Icarus_Wing | |
| Name: Icarus Wings | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Script: | | |
| bonus bMaxSP,50; | |
| bonus bDex,3; | |
| - Id: 2727 | |
| AegisName: Bowman_Scarf | |
| Name: Bowman Scarf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Script: | | |
| bonus bMaxSP,50; | |
| bonus bDex,3; | |
| - Id: 2728 | |
| AegisName: Cursed_Hand | |
| Name: Cursed Hand | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Script: | | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; | |
| bonus bHit,10; | |
| bonus bHPrecovRate,20; | |
| - Id: 2729 | |
| AegisName: Diabolus_Ring | |
| Name: Diabolus Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bMaxHP,100; | |
| bonus bMaxSP,100; | |
| bonus bHealPower,5; | |
| bonus2 bAddDamageClass,1916,10; | |
| bonus2 bAddDamageClass,1917,10; | |
| - Id: 2730 | |
| AegisName: Morroc_Seal | |
| Name: Seal of Continental Guard | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,50; | |
| bonus bAspdRate,3; | |
| - Id: 2731 | |
| AegisName: Morroc_Charm_Stone | |
| Name: Rune Spellstone | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,50; | |
| bonus bCastRate,-1; | |
| - Id: 2732 | |
| AegisName: Morroc_Ring | |
| Name: Death Loop | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bCritical,5; | |
| - Id: 2733 | |
| AegisName: Medal_Gunner | |
| Name: Sheriff Badge | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| bonus bCritical,10; | |
| bonus bMaxHP,300; | |
| bonus bMaxSP,80; | |
| bonus3 bAddEff,Eff_Blind,100,ATF_LONG; | |
| - Id: 2734 | |
| AegisName: Directive_A | |
| Name: Directive | |
| Type: Armor | |
| Defense: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2735 | |
| AegisName: Directive_B | |
| Name: Directive | |
| Type: Armor | |
| Defense: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 2736 | |
| AegisName: Navel_Ring | |
| Name: Navel Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Script: | | |
| bonus bDex,3; | |
| bonus bLuk,3; | |
| bonus bMdef,2; | |
| - Id: 2737 | |
| AegisName: Foot_Ring | |
| Name: Foot Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Script: | | |
| bonus bVit,3; | |
| bonus bMaxHPRate,10; | |
| - Id: 2738 | |
| AegisName: Shiny_Coin | |
| Name: Shiny Coin | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,6; | |
| bonus bMatkRate,6; | |
| - Id: 2739 | |
| AegisName: Ordinary_Coin | |
| Name: Ordinary Coin | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkRate,5; | |
| - Id: 2740 | |
| AegisName: Rusty_Coin | |
| Name: Rusty Coin | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,3; | |
| bonus bMatkRate,3; | |
| - Id: 2741 | |
| AegisName: All_In_One_Ring | |
| Name: All In One Ring | |
| Type: Armor | |
| Buy: 20 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,1; | |
| bonus bNoCastCancel; | |
| bonus bCastRate,10; | |
| skill "AL_HEAL",1; | |
| skill "AL_TELEPORT",1; | |
| - Id: 2743 | |
| AegisName: Angelic_Ring | |
| Name: Angelic Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| bonus bMdef,2; | |
| autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; | |
| autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; | |
| autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }"; | |
| - Id: 2744 | |
| AegisName: Sprint_Ring | |
| Name: Sprint Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Script: | | |
| bonus bCastrate,-10; | |
| bonus bDelayRate,5; | |
| - Id: 2745 | |
| AegisName: Pinguicula_Corsage | |
| Name: Pinguicula Corsage | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bMaxSP,25; | |
| - Id: 2746 | |
| AegisName: Cold_Heart | |
| Name: Cold Heart | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Script: | | |
| bonus bAgi,3; | |
| - Id: 2747 | |
| AegisName: Black_Cat | |
| Name: Black Cat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| Rogue: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Script: | | |
| bonus bDex,3; | |
| - Id: 2748 | |
| AegisName: Cursed_Star | |
| Name: Cursed Star | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 84 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bDex,2; | |
| bonus bLuk,-1; | |
| bonus2 bHPLossRate,50,10000; | |
| bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET; | |
| UnEquipScript: | | |
| heal -300,0; | |
| - Id: 2749 | |
| AegisName: Linen_Glove | |
| Name: Linen Glove | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 120 | |
| Defense: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bAgi,2; | |
| bonus bDex,1; | |
| - Id: 2751 | |
| AegisName: Academy_Badge | |
| Name: Academy Of Badge | |
| Type: Armor | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| if (BaseLevel<80) { | |
| bonus bMaxHP,400; | |
| bonus bMaxSP,200; | |
| } | |
| - Id: 2752 | |
| AegisName: Praxinus_C | |
| Name: Praccsinos | |
| Type: Armor | |
| Buy: 2 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,5; | |
| bonus bMatkrate,5; | |
| - Id: 2753 | |
| AegisName: Beholder_Ring | |
| Name: Beholder Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Formless,15; | |
| - Id: 2754 | |
| AegisName: Hallow_Ring | |
| Name: Hallow Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_undead,15; | |
| - Id: 2755 | |
| AegisName: Clamorous_Ring | |
| Name: Clamorous Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Brute,15; | |
| - Id: 2756 | |
| AegisName: Chemical_Ring | |
| Name: Chemical Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Plant,15; | |
| - Id: 2757 | |
| AegisName: Insecticide_Ring | |
| Name: Insecticide Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Insect,15; | |
| - Id: 2758 | |
| AegisName: Fisher_Ring | |
| Name: Fischer Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Fish,15; | |
| - Id: 2759 | |
| AegisName: Decussate_Ring | |
| Name: Decussate Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Demon,15; | |
| - Id: 2760 | |
| AegisName: Bloody_Ring | |
| Name: Bloody Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_DemiHuman,15; | |
| - Id: 2761 | |
| AegisName: Satanic_Ring | |
| Name: Satanic Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Angel,15; | |
| - Id: 2762 | |
| AegisName: Dragoon_Ring | |
| Name: Dragon Ring | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddRace,RC_Dragon,15; | |
| - Id: 2763 | |
| AegisName: Skul_Ring_C | |
| Name: Neo Skull Ring | |
| Type: Armor | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 95 | |
| Script: | | |
| bonus bAtkRate,5; | |
| bonus bMatkrate,5; | |
| bonus bMaxHPrate,5; | |
| bonus2 bSkillHeal,"AL_HEAL",5; | |
| skill "MG_SIGHT",1; | |
| - Id: 2764 | |
| AegisName: Small_Fishing_Rod | |
| Name: Small Fishing Rod | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 250 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2765 | |
| AegisName: Novice_Figure | |
| Name: Novice Figure | |
| Type: Armor | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bMaxHP,70; | |
| if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) | |
| bonus bMaxHP,30; | |
| - Id: 2766 | |
| AegisName: Swordman_Figure | |
| Name: Swordman Figure | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bVit,1; | |
| if (Class == Job_Swordman) | |
| bonus bDef,2; | |
| - Id: 2767 | |
| AegisName: Acolyte_Figure | |
| Name: Acolyte Figure | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bInt,1; | |
| if (Class == Job_Acolyte) | |
| bonus bMaxSP,50; | |
| - Id: 2768 | |
| AegisName: Mage_Figure | |
| Name: Mage Figure | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bInt,1; | |
| if (Class == Job_Mage) | |
| bonus bSPrecovRate,5; | |
| - Id: 2769 | |
| AegisName: Archer_Figure | |
| Name: Archer Figure | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bDex,1; | |
| if (Class == Job_Archer) | |
| bonus bBaseAtk,10; | |
| - Id: 2770 | |
| AegisName: Thief_Figure | |
| Name: Thief Figure | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bAgi,1; | |
| if (Class == Job_Thief) | |
| bonus bAspdRate,3; | |
| - Id: 2771 | |
| AegisName: Merchant_Figure | |
| Name: Merchant Figure | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bStr,1; | |
| if (Class == Job_Merchant) | |
| bonus bCritical,5; | |
| - Id: 2772 | |
| AegisName: Krieger_Ring1 | |
| Name: Glorious Ring | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 81 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,300; | |
| bonus2 bSubEle,Ele_Water,10; | |
| bonus2 bSubEle,Ele_Wind,10; | |
| bonus2 bSubEle,Ele_Earth,10; | |
| bonus2 bSubEle,Ele_Fire,10; | |
| bonus bAspdRate,5; | |
| bonus bCastrate,-3; | |
| bonus bHealPower,5; | |
| - Id: 2773 | |
| AegisName: Krieger_Ring2 | |
| Name: Glorious Mass-Production Ring | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 61 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,2; | |
| - Id: 2774 | |
| AegisName: Krieger_Ring3 | |
| Name: Glorious Popularized Ring | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,1; | |
| - Id: 2775 | |
| AegisName: Lure | |
| Name: Lure | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| - Id: 2776 | |
| AegisName: Cool_Towel | |
| Name: Adventurer's Trusty Towel | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipScript: | | |
| sc_start SC_SUMMER,INFINITE_TICK,0; | |
| UnEquipScript: | | |
| sc_end SC_SUMMER; | |
| - Id: 2777 | |
| AegisName: Shaman_Ring | |
| Name: Shaman Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bUseSPrate,-5; | |
| - Id: 2778 | |
| AegisName: Shaman_Earing | |
| Name: Shaman Earrings | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 2779 | |
| AegisName: Dark_Knight_Belt | |
| Name: Dark Knight Belt | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bAgi,1; | |
| - Id: 2780 | |
| AegisName: Dark_Knight_Glove | |
| Name: Dark Knight Glove | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| - Id: 2781 | |
| AegisName: Aumdura's_Grace | |
| Name: Aumdura's Benefit | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAllStats,1; | |
| bonus bMdef,1; | |
| - Id: 2782 | |
| AegisName: Ring_Of_Wise_King | |
| Name: Ring of the Ancient Wise King | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,50; | |
| bonus bMaxSP,20; | |
| - Id: 2783 | |
| AegisName: Eyes_Stone_Ring | |
| Name: Eye Stone Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Script: | | |
| bonus bCritical,2; | |
| bonus bMaxSP,25; | |
| - Id: 2784 | |
| AegisName: Oh_Holy_Night | |
| Name: Christmas Musicbox | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| skill "ALL_WEWISH",1; | |
| - Id: 2785 | |
| AegisName: Orleans_Glove_M | |
| Name: Orlean's Gloves | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bMatkRate,3; | |
| - Id: 2786 | |
| AegisName: Spiritual_Ring_M | |
| Name: Spiritual Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bDex,1; | |
| - Id: 2787 | |
| AegisName: Waterdrop_Brooch | |
| Name: Waterdrop Brooch | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,5; | |
| bonus bMaxHP,80; | |
| bonus bMdef,2; | |
| - Id: 2788 | |
| AegisName: Bradium_Earing | |
| Name: Bradium Earring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Script: | | |
| bonus bMatkRate,2; | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| - Id: 2789 | |
| AegisName: Bradium_Ring | |
| Name: Bradium Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Script: | | |
| bonus2 bAddClass,Class_All,2; | |
| bonus bStr,1; | |
| bonus bVit,1; | |
| - Id: 2790 | |
| AegisName: Bradium_Brooch | |
| Name: Bradium Brooch | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Script: | | |
| bonus bFlee,4; | |
| bonus bAspdRate,2; | |
| bonus bAgi,1; | |
| - Id: 2791 | |
| AegisName: Just_Got_Fish | |
| Name: Fresh Fish | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bHit,3; | |
| - Id: 2794 | |
| AegisName: Magic_Stone_Ring | |
| Name: Magic Stone Ring | |
| Type: Armor | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 2795 | |
| AegisName: Green_Apple_Ring | |
| Name: Green Apple Ring | |
| Type: Armor | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,6; | |
| if (JobLevel <30) { | |
| bonus bAllStats,(JobLevel/5); | |
| } | |
| - Id: 2796 | |
| AegisName: Magical_Stone | |
| Name: Rocks | |
| Type: Armor | |
| Weight: 200 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddDamageClass,2047,10; | |
| bonus2 bAddDefMonster,2048,-10; | |
| bonus3 bAddMonsterIdDropItem,6152,2047,70; | |
| - Id: 2797 | |
| AegisName: Magical_Stone_ | |
| Name: Rocks | |
| Type: Armor | |
| Weight: 200 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddDamageClass,2049,10; | |
| bonus2 bAddDefMonster,2050,-10; | |
| bonus3 bAddMonsterIdDropItem,6151,2049,70; | |
| - Id: 2798 | |
| AegisName: Will_Of_Exhausted_Angel | |
| Name: Will Of Exhausted Angel | |
| Type: Armor | |
| Weight: 200 | |
| Jobs: | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| if (strcharinfo(3) == "job3_arch02") { | |
| bonus2 bAddDefMonster,1761,50; | |
| bonus2 bAddDefMonster,1762,50; | |
| } | |
| - Id: 2799 | |
| AegisName: Kuirpenring | |
| Name: Kuirpenring | |
| Type: Armor | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Script: | | |
| bonus bMdef,1; | |
| - Id: 2800 | |
| AegisName: Accelerator | |
| Name: Accelerator | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 100 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 2801 | |
| AegisName: Hovering_Booster | |
| Name: Hovering Booster | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 2000 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 2802 | |
| AegisName: Suicidal_Device | |
| Name: Suicidal Device | |
| Type: Armor | |
| Buy: 500000 | |
| Weight: 1000 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| - Id: 2803 | |
| AegisName: Shape_Shifter | |
| Name: Shape Shifter | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 500 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bInt,3; | |
| - Id: 2804 | |
| AegisName: Cooling_Device | |
| Name: Cooling Device | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 2500 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2805 | |
| AegisName: Mag_Field_Generator | |
| Name: Magnetic Field Generator | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 6000 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2806 | |
| AegisName: Barrier_Builder | |
| Name: Barrier Builder | |
| Type: Armor | |
| Buy: 150000 | |
| Weight: 8000 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2807 | |
| AegisName: Repair_Kit | |
| Name: Repair Kit | |
| Type: Armor | |
| Buy: 200000 | |
| Weight: 400 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| - Id: 2808 | |
| AegisName: Camouflage_Generator | |
| Name: Camouflague Generator | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 1000 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bAgi,3; | |
| - Id: 2809 | |
| AegisName: High_Quality_Cooler | |
| Name: High Quality Cooler | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 2500 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2810 | |
| AegisName: Special_Cooler | |
| Name: Special Cooler | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 2500 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 99 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 2819 | |
| AegisName: Swordman_Manual | |
| Name: Swordsman Manual | |
| Type: Armor | |
| Weight: 100 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,100; | |
| skill "SM_BASH",1; | |
| skill "SM_PROVOKE",1; | |
| skill "SM_MAGNUM",1; | |
| - Id: 2820 | |
| AegisName: Thief_Manual | |
| Name: Thief Manual | |
| Type: Armor | |
| Weight: 100 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,100; | |
| skill "TF_DOUBLE",3; | |
| bonus bDoubleRate,15; | |
| skill "TF_STEAL",1; | |
| skill "TF_HIDING",1; | |
| skill "TF_POISON",1; | |
| - Id: 2821 | |
| AegisName: Acolyte_Manual | |
| Name: Acolyte Manual | |
| Type: Armor | |
| Weight: 100 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,100; | |
| skill "AL_HEAL",1; | |
| skill "AL_INCAGI",1; | |
| skill "AL_BLESSING",1; | |
| - Id: 2822 | |
| AegisName: Archer_Manual | |
| Name: Archer Manual | |
| Type: Armor | |
| Weight: 100 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,100; | |
| skill "AC_OWL",1; | |
| skill "AC_CONCENTRATION",1; | |
| - Id: 2823 | |
| AegisName: Merchant_Manual | |
| Name: Merchant Manual | |
| Type: Armor | |
| Weight: 100 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,100; | |
| skill "MC_DISCOUNT",1; | |
| skill "MC_OVERCHARGE",10; | |
| skill "MC_IDENTIFY",1; | |
| skill "MC_MAMMONITE",1; | |
| - Id: 2824 | |
| AegisName: Mage_Manual | |
| Name: Mage Manual | |
| Type: Armor | |
| Weight: 100 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,100; | |
| skill "MG_SRECOVERY",1; | |
| skill "MG_COLDBOLT",1; | |
| skill "MG_FIREWALL",1; | |
| skill "MG_FIREBOLT",1; | |
| - Id: 5001 | |
| AegisName: Headset | |
| Name: Headset | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 87 | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,1000; | |
| - Id: 5002 | |
| AegisName: Gemmed_Crown | |
| Name: Jewel Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| View: 88 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bLuk,1; | |
| bonus bMdef,3; | |
| - Id: 5003 | |
| AegisName: Joker_Jester | |
| Name: Joker Jester | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 89 | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bMdef,5; | |
| - Id: 5004 | |
| AegisName: Oxygen_Mask | |
| Name: Oxygen Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 90 | |
| Script: | | |
| bonus2 bResEff,Eff_Poison,2000; | |
| - Id: 5005 | |
| AegisName: Gas_Mask | |
| Name: Gas Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 91 | |
| Script: | | |
| bonus2 bResEff,Eff_Poison,3000; | |
| - Id: 5006 | |
| AegisName: Machoman_Glasses | |
| Name: Machoman's Glasses | |
| Type: Armor | |
| Buy: 36000 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 92 | |
| - Id: 5007 | |
| AegisName: Loard_Circlet | |
| Name: Grand Circlet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 93 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bLuk,1; | |
| bonus bMdef,4; | |
| - Id: 5008 | |
| AegisName: Puppy_Love | |
| Name: Puppy Love | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 94 | |
| - Id: 5009 | |
| AegisName: Safety_Helmet | |
| Name: Safety Helmet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 95 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bUnbreakableHelm; | |
| - Id: 5010 | |
| AegisName: Indian_Hair_Piece | |
| Name: Indian Fillet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 96 | |
| - Id: 5011 | |
| AegisName: Antenna | |
| Name: Aerial | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 97 | |
| - Id: 5012 | |
| AegisName: Ph.D_Hat | |
| Name: Ph.D Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 98 | |
| - Id: 5013 | |
| AegisName: Horn_Of_Lord_Kaho | |
| Name: Lord Kaho's Horn | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 99 | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bStr,5; | |
| bonus bAgi,10; | |
| bonus bVit,10; | |
| bonus bInt,5; | |
| bonus bLuk,20; | |
| - Id: 5014 | |
| AegisName: Fin_Helm | |
| Name: Fin Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| View: 100 | |
| - Id: 5015 | |
| AegisName: Egg_Shell | |
| Name: Egg Shell | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 101 | |
| - Id: 5016 | |
| AegisName: Boy's_Cap | |
| Name: Boy's Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 102 | |
| - Id: 5017 | |
| AegisName: Bone_Helm | |
| Name: Bone Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 7 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 103 | |
| Script: | | |
| bonus2 bSubEle,Ele_Dark,-15; | |
| - Id: 5018 | |
| AegisName: Feather_Bonnet | |
| Name: Feather Bonnet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 104 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 5019 | |
| AegisName: Corsair | |
| Name: Corsair | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 105 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 5020 | |
| AegisName: Kafra_Band | |
| Name: Kafra Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 106 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5021 | |
| AegisName: Bankruptcy_Of_Heart | |
| Name: Grief for Greed | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1200 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 38 | |
| Refineable: true | |
| View: 107 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| - Id: 5022 | |
| AegisName: Helm_Of_Sun | |
| Name: Hat of the Sun God | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2400 | |
| Defense: 4 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 138 | |
| Script: | | |
| bonus bStr,3; | |
| bonus bInt,2; | |
| - Id: 5023 | |
| AegisName: Hat_Of_Bundle | |
| Name: Parcel Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Merchant: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 108 | |
| - Id: 5024 | |
| AegisName: Hat_Of_Cake | |
| Name: Cake Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 109 | |
| - Id: 5025 | |
| AegisName: Helm_Of_Angel | |
| Name: Helm of Angel | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1600 | |
| Defense: 5 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 74 | |
| Refineable: true | |
| View: 110 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bLuk,1; | |
| bonus bMdef,3; | |
| - Id: 5026 | |
| AegisName: Hat_Of_Cook | |
| Name: Chef Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 111 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 5027 | |
| AegisName: Wizardry_Hat | |
| Name: Mage Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 112 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,150; | |
| - Id: 5028 | |
| AegisName: Candle | |
| Name: Candle | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 113 | |
| - Id: 5029 | |
| AegisName: Spore_Hat | |
| Name: Spore Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 900 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 114 | |
| - Id: 5030 | |
| AegisName: Panda_Cap | |
| Name: Panda Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 115 | |
| - Id: 5031 | |
| AegisName: Mine_Helm | |
| Name: Mine Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1500 | |
| Defense: 4 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 116 | |
| Script: | | |
| bonus bDex,2; | |
| - Id: 5032 | |
| AegisName: Picnic_Hat | |
| Name: Sunday Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 117 | |
| - Id: 5033 | |
| AegisName: Smokie_Hat | |
| Name: Raccoon Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 900 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 118 | |
| - Id: 5034 | |
| AegisName: Light_Bulb_Band | |
| Name: Bulb Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 119 | |
| - Id: 5035 | |
| AegisName: Poring_Hat | |
| Name: Poring Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 38 | |
| Refineable: true | |
| View: 120 | |
| - Id: 5036 | |
| AegisName: Cross_Band | |
| Name: Cross Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 250 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 121 | |
| - Id: 5037 | |
| AegisName: Fruit_Shell | |
| Name: Nut Shell | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 5 | |
| View: 122 | |
| - Id: 5038 | |
| AegisName: Deviruchi_Cap | |
| Name: Deviruchi Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 64 | |
| Refineable: true | |
| View: 123 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| - Id: 5039 | |
| AegisName: Mottled_Egg_Shell | |
| Name: Rainbow Eggshell | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 19 | |
| View: 124 | |
| - Id: 5040 | |
| AegisName: Blush | |
| Name: Blush | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 125 | |
| - Id: 5041 | |
| AegisName: Heart_Hair_Pin | |
| Name: Heart Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 126 | |
| - Id: 5042 | |
| AegisName: Hair_Protector | |
| Name: Bao Bao | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| View: 127 | |
| - Id: 5043 | |
| AegisName: Opera_Ghost_Mask | |
| Name: Opera Phantom Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| View: 128 | |
| - Id: 5044 | |
| AegisName: Devil's_Wing | |
| Name: Evil Wing Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 350 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 129 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 5045 | |
| AegisName: Magician_Hat | |
| Name: Magician Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Jobs: | |
| Acolyte: true | |
| Mage: true | |
| Monk: true | |
| Priest: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 130 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bAgi,1; | |
| bonus bMaxSP,50; | |
| - Id: 5046 | |
| AegisName: Bongun_Hat | |
| Name: Bongun Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 139 | |
| - Id: 5047 | |
| AegisName: Fashion_Sunglass | |
| Name: Fashionable Glasses | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 131 | |
| - Id: 5048 | |
| AegisName: First_Moon_Hair_Pin | |
| Name: Cresent Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 132 | |
| - Id: 5049 | |
| AegisName: Stripe_Band | |
| Name: Striped Hairband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 133 | |
| - Id: 5050 | |
| AegisName: Mystery_Fruit_Shell | |
| Name: Wonder Nutshell | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 134 | |
| - Id: 5051 | |
| AegisName: Kitty_Bell | |
| Name: Pussy Cat Bell | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 135 | |
| - Id: 5052 | |
| AegisName: Blue_Hair_Band | |
| Name: Blue Hairband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 136 | |
| - Id: 5053 | |
| AegisName: Spinx_Helm | |
| Name: Sphinx Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 3000 | |
| Defense: 5 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Low: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| View: 137 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 5054 | |
| AegisName: Assassin_Mask | |
| Name: Assassin Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| Assassin: true | |
| Priest: true | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 180 | |
| - Id: 5055 | |
| AegisName: Novice_Egg_Cap | |
| Name: Novice False Eggshell | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 1 | |
| Defense: 3 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 101 | |
| - Id: 5056 | |
| AegisName: Love_Berry | |
| Name: Fruit of Love | |
| Type: Armor | |
| Buy: 1 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 140 | |
| - Id: 5057 | |
| AegisName: Ear_Of_Black_Cat | |
| Name: Black Cat Ears | |
| Type: Armor | |
| Buy: 16000 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 141 | |
| - Id: 5058 | |
| AegisName: Drooping_Kitty | |
| Name: Drooping Cat | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 142 | |
| Script: | | |
| bonus bMdef,15; | |
| bonus2 bResEff,Eff_Curse,3000; | |
| - Id: 5059 | |
| AegisName: Brown_Bear_Cap | |
| Name: Teddybear Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 143 | |
| - Id: 5060 | |
| AegisName: Party_Hat | |
| Name: Party Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 144 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5061 | |
| AegisName: Flower_Hairpin | |
| Name: Flower Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 145 | |
| - Id: 5062 | |
| AegisName: Straw_Hat | |
| Name: Straw Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 146 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 5063 | |
| AegisName: Plaster | |
| Name: Giant Band Aid | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 147 | |
| - Id: 5064 | |
| AegisName: Leaf_Headgear | |
| Name: Smokie Leaf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 148 | |
| - Id: 5065 | |
| AegisName: Fish_On_Head | |
| Name: Blue Fish | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 149 | |
| Script: | | |
| bonus2 bAddRace,RC_Fish,10; | |
| - Id: 5066 | |
| AegisName: Horn_Of_Succubus | |
| Name: Succubus Horn | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 150 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,10; | |
| - Id: 5067 | |
| AegisName: Sombrero | |
| Name: Sombrero | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 350 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 151 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 5068 | |
| AegisName: Ear_Of_Devil's_Wing | |
| Name: Evil Wing Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 152 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 5069 | |
| AegisName: Mask_Of_Fox | |
| Name: Kitsune Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 153 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bLuk,1; | |
| - Id: 5070 | |
| AegisName: Headband_Of_Power | |
| Name: Hot-blooded Headband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 154 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 5071 | |
| AegisName: Indian_Headband | |
| Name: Indian Headband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 155 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 5072 | |
| AegisName: Inccubus_Horn | |
| Name: Incubus Horn | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 156 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bMdef,10; | |
| - Id: 5073 | |
| AegisName: Cap_Of_Concentration | |
| Name: Model Training Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 157 | |
| Script: | | |
| bonus bDex,2; | |
| - Id: 5074 | |
| AegisName: Ear_Of_Angel's_Wing | |
| Name: Angel Wing Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 158 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 5075 | |
| AegisName: Cowboy_Hat | |
| Name: Cowboy Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 159 | |
| - Id: 5076 | |
| AegisName: Fur_Hat | |
| Name: Beanie | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 350 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 160 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5077 | |
| AegisName: Tulip_Hairpin | |
| Name: Tulip Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 161 | |
| - Id: 5078 | |
| AegisName: Sea_Otter_Cap | |
| Name: Sea-Otter Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 162 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 5079 | |
| AegisName: Crossed_Hair_Band | |
| Name: X Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 163 | |
| - Id: 5080 | |
| AegisName: Headgear_Of_Queen | |
| Name: Crown of Ancient Queen | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 164 | |
| - Id: 5081 | |
| AegisName: Mistress_Crown | |
| Name: Crown of Mistress | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 165 | |
| Script: | | |
| bonus bMaxSP,100; | |
| bonus bInt,2; | |
| bonus bUnbreakableHelm; | |
| - Id: 5082 | |
| AegisName: Mushroom_Band | |
| Name: Decorative Mushroom | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 166 | |
| - Id: 5083 | |
| AegisName: Red_Tailed_Ribbon | |
| Name: Red Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 167 | |
| Script: | | |
| bonus bMdef,10; | |
| - Id: 5084 | |
| AegisName: Lazy_Raccoon | |
| Name: Lazy Smokie | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 168 | |
| Script: | | |
| bonus2 bResEff,Eff_Sleep,2000; | |
| - Id: 5085 | |
| AegisName: Pair_Of_Red_Ribbon | |
| Name: Small Ribbons | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| View: 169 | |
| - Id: 5086 | |
| AegisName: Alarm_Mask | |
| Name: Alarm Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 170 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,5000; | |
| - Id: 5087 | |
| AegisName: Goblin_Mask_01 | |
| Name: Poker Face | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 171 | |
| - Id: 5088 | |
| AegisName: Goblin_Mask_02 | |
| Name: Surprised Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 172 | |
| - Id: 5089 | |
| AegisName: Goblin_Mask_03 | |
| Name: Annoyed Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 173 | |
| - Id: 5090 | |
| AegisName: Goblin_Mask_04 | |
| Name: Goblin Leader Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 174 | |
| - Id: 5091 | |
| AegisName: Big_Golden_Bell | |
| Name: Decorative Golden Bell | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 35 | |
| Refineable: true | |
| View: 175 | |
| - Id: 5092 | |
| AegisName: Blue_Coif | |
| Name: Coif | |
| Type: Armor | |
| Buy: 150000 | |
| Weight: 300 | |
| Defense: 5 | |
| Jobs: | |
| Assassin: true | |
| Priest: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 176 | |
| - Id: 5093 | |
| AegisName: Blue_Coif_ | |
| Name: Coif | |
| Type: Armor | |
| Buy: 150000 | |
| Weight: 300 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Priest: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 177 | |
| Script: | | |
| bonus bMaxSP,100; | |
| - Id: 5094 | |
| AegisName: Orc_Hero_Helm | |
| Name: Helmet of Orc Hero | |
| Type: Armor | |
| Buy: 500000 | |
| Weight: 900 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 178 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bVit,1; | |
| - Id: 5096 | |
| AegisName: Assassin_Mask_ | |
| Name: Assassin Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| Assassin: true | |
| Priest: true | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 180 | |
| - Id: 5097 | |
| AegisName: Cone_Hat_ | |
| Name: Holiday Hat | |
| Type: Armor | |
| Weight: 400 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 144 | |
| - Id: 5098 | |
| AegisName: Tiger_Mask | |
| Name: Tiger Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 181 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,3; | |
| bonus bMaxHP,100; | |
| - Id: 5099 | |
| AegisName: Cat_Hat | |
| Name: Neko Mimi | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 182 | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bMdef,10; | |
| bonus2 bSubRace,RC_Brute,5; | |
| bonus2 bSubRace,RC_Player_Doram,5; | |
| - Id: 5100 | |
| AegisName: Sales_Signboard | |
| Name: Sales Banner | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 183 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bAgi,1; | |
| bonus bLuk,1; | |
| - Id: 5101 | |
| AegisName: Takius_Blindfold | |
| Name: Takius's Blindfold | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 184 | |
| - Id: 5102 | |
| AegisName: Round_Eyes | |
| Name: Blank Eyes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 185 | |
| - Id: 5103 | |
| AegisName: Sunflower_Hairpin | |
| Name: Sunflower Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 186 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bCritical,5; | |
| - Id: 5104 | |
| AegisName: Dark_Blindfold | |
| Name: Dark Blinder | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 187 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,10000; | |
| bonus2 bResEff,Eff_Stun,200; | |
| - Id: 5105 | |
| AegisName: Hat_Of_Cake_ | |
| Name: 2nd Anniversary Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| View: 109 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bMaxSP,80; | |
| bonus3 bAddMonsterDropItem,7864,7,50; | |
| - Id: 5106 | |
| AegisName: Cone_Hat_INA | |
| Name: 2nd Anniversary Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 144 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5107 | |
| AegisName: Well_Baked_Toast | |
| Name: Crunch Toast | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 188 | |
| - Id: 5108 | |
| AegisName: Detective_Hat | |
| Name: Renown Detective's Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 350 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 189 | |
| - Id: 5109 | |
| AegisName: Red_Bonnet | |
| Name: Red Bonnet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 190 | |
| - Id: 5110 | |
| AegisName: Baby_Pacifier | |
| Name: Baby Pacifier | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 191 | |
| - Id: 5111 | |
| AegisName: Galapago_Cap | |
| Name: Galapago Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 192 | |
| Script: | | |
| bonus2 bAddMonsterDropItem,605,100; | |
| - Id: 5112 | |
| AegisName: Super_Novice_Hat | |
| Name: Super Novice Hat | |
| Type: Armor | |
| Buy: 8500 | |
| Weight: 400 | |
| Defense: 4 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 193 | |
| Script: | | |
| bonus bAllStats,1; | |
| - Id: 5113 | |
| AegisName: Angry_Mouth | |
| Name: Angry Snarl | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 194 | |
| - Id: 5114 | |
| AegisName: Fedora | |
| Name: Bucket Hat | |
| Type: Armor | |
| Buy: 6000 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 195 | |
| - Id: 5115 | |
| AegisName: Winter_Hat | |
| Name: Winter Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 196 | |
| Script: | | |
| bonus2 bResEff,Eff_Freeze,1000; | |
| - Id: 5116 | |
| AegisName: Banana_Hat | |
| Name: Banana Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 197 | |
| Script: | | |
| bonus3 bAutoSpell,"SM_PROVOKE",3,30; | |
| - Id: 5117 | |
| AegisName: Mistic_Rose | |
| Name: Mystic Rose | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 198 | |
| Script: | | |
| bonus2 bSubRace,RC_Plant,2; | |
| - Id: 5118 | |
| AegisName: Ear_Of_Puppy | |
| Name: Puppy Headband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 199 | |
| - Id: 5119 | |
| AegisName: Super_Novice_Hat_ | |
| Name: Super Novice Hat | |
| Type: Armor | |
| Buy: 8500 | |
| Weight: 400 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 193 | |
| Script: | | |
| bonus bAllStats,1; | |
| - Id: 5120 | |
| AegisName: Fedora_ | |
| Name: Bucket Hat | |
| Type: Armor | |
| Buy: 6000 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 195 | |
| - Id: 5121 | |
| AegisName: Zherlthsh_Mask | |
| Name: Zealotus Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 200 | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| - Id: 5122 | |
| AegisName: Magni_Cap | |
| Name: Magni's Cap | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 1000 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 250 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 5123 | |
| AegisName: Ulle_Cap | |
| Name: Ulle's Cap | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 254 | |
| Script: | | |
| bonus bDex,2; | |
| bonus bAgi,1; | |
| - Id: 5124 | |
| AegisName: Fricca_Circlet | |
| Name: Fricca's Circlet | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 300 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| View: 251 | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bInt,2; | |
| bonus bMaxSP,50; | |
| - Id: 5125 | |
| AegisName: Kiss_Of_Angel | |
| Name: Angel's Kiss | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 255 | |
| Script: | | |
| bonus bSPrecovRate,5; | |
| - Id: 5126 | |
| AegisName: Morpheus's_Hood | |
| Name: Morpheus's Hood | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 200 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 33 | |
| Refineable: true | |
| View: 256 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 5127 | |
| AegisName: Morrigane's_Helm | |
| Name: Morrigane's Helm | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 61 | |
| Refineable: true | |
| View: 257 | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bBaseAtk,3; | |
| - Id: 5128 | |
| AegisName: Goibne's_Helmet | |
| Name: Goibne's Helm | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 500 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 54 | |
| Refineable: true | |
| View: 258 | |
| Script: | | |
| bonus bVit,3; | |
| bonus bMdef,3; | |
| - Id: 5129 | |
| AegisName: Bird_Nest | |
| Name: Bird Nest | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 201 | |
| Script: | | |
| bonus bAgi,2; | |
| bonus2 bSubRace,RC_Brute,10; | |
| bonus2 bSubRace,RC_Player_Doram,10; | |
| - Id: 5130 | |
| AegisName: Lion_Mask | |
| Name: Lion Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 202 | |
| Script: | | |
| bonus2 bAddEffWhenHit,Eff_Silence,500; | |
| bonus bMdef,1; | |
| - Id: 5131 | |
| AegisName: Close_Helmet | |
| Name: Close Helmet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1200 | |
| Defense: 8 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 203 | |
| Script: | | |
| bonus bVit,3; | |
| bonus bMaxHPrate,3; | |
| - Id: 5132 | |
| AegisName: Angeling_Hat | |
| Name: Angeling Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 204 | |
| Trade: | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| - Id: 5133 | |
| AegisName: Sheep_Hat | |
| Name: Sheep Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Defense: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 205 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bShortWeaponDamageReturn,5; | |
| - Id: 5134 | |
| AegisName: Pumpkin_Hat | |
| Name: Pumpkin-Head | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 206 | |
| Script: | | |
| bonus2 bSubRace,RC_Demon,5; | |
| - Id: 5135 | |
| AegisName: Cyclops_Visor | |
| Name: Cyclop's Eye | |
| Type: Armor | |
| Weight: 200 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| View: 207 | |
| Script: | | |
| bonus bMaxSP,50; | |
| - Id: 5136 | |
| AegisName: Santa's_Hat_ | |
| Name: Antonio's Santa Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 20 | |
| - Id: 5137 | |
| AegisName: Alice_Doll | |
| Name: Alice Doll | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 208 | |
| Script: | | |
| bonus bStr,1; | |
| bonus2 bAddRace,RC_DemiHuman,10; | |
| bonus2 bAddRace,RC_Player_Human,10; | |
| bonus2 bAddEff2,Eff_Sleep,10; | |
| - Id: 5138 | |
| AegisName: Magic_Eyes | |
| Name: Magic Eyes | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 209 | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bCastrate,-10; | |
| bonus bUseSPrate,20; | |
| - Id: 5139 | |
| AegisName: Hibiscus | |
| Name: Hibiscus | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| View: 210 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bInt,1; | |
| bonus bMdef,5; | |
| - Id: 5140 | |
| AegisName: Charming_Ribbon | |
| Name: Charming Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 211 | |
| Script: | | |
| bonus2 bSubRace,RC_Undead,5; | |
| bonus2 bSubRace,RC_Demon,5; | |
| - Id: 5141 | |
| AegisName: Marionette_Doll | |
| Name: Marionette Doll | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 212 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 5142 | |
| AegisName: Crescent_Helm | |
| Name: Crescent Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 3000 | |
| Defense: 8 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 213 | |
| Script: | | |
| bonus bVit,1; | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| - Id: 5143 | |
| AegisName: Kabuki_Mask | |
| Name: Kabuki Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 214 | |
| Script: | | |
| bonus2 bResEff,Eff_Silence,3000; | |
| - Id: 5144 | |
| AegisName: Gambler_Hat | |
| Name: Gambler Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 16 | |
| Script: | | |
| bonus bLuk,5; | |
| - Id: 5145 | |
| AegisName: Carnival_Joker_Jester | |
| Name: Carnival Joker Jester | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 89 | |
| - Id: 5146 | |
| AegisName: Elephant_Hat | |
| Name: Elephant Hat | |
| Type: Armor | |
| Weight: 500 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 215 | |
| Script: | | |
| bonus bVit,1; | |
| bonus2 bSubRace,RC_Brute,7; | |
| skill "WZ_WATERBALL",1; | |
| - Id: 5147 | |
| AegisName: Baseball_Cap | |
| Name: Baseball Cap | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 216 | |
| - Id: 5148 | |
| AegisName: Phrygian_Cap | |
| Name: Phrygian Cap | |
| Type: Armor | |
| Weight: 500 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 217 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 5149 | |
| AegisName: Silver_Tiara | |
| Name: Silver Tiara | |
| Type: Armor | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 218 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 5150 | |
| AegisName: Joker_Jester_ | |
| Name: Joker Jester | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 219 | |
| Script: | | |
| bonus bSpeedRate,25; | |
| - Id: 5151 | |
| AegisName: Headset_OST | |
| Name: Note Headphones | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 220 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus2 bResEff,Eff_Stun,1000; | |
| bonus2 bResEff,Eff_Freeze,1000; | |
| - Id: 5152 | |
| AegisName: Chinese_Crown | |
| Name: Chinese Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2000 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 221 | |
| Script: | | |
| bonus2 bResEff,Eff_Stun,1000; | |
| bonus bInt,1; | |
| - Id: 5153 | |
| AegisName: Angeling_Hairpin | |
| Name: Angeling Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 222 | |
| Script: | | |
| bonus bFlee,5; | |
| - Id: 5154 | |
| AegisName: Sunglasses_F | |
| Name: Father's Sunglasses | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 12 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5155 | |
| AegisName: Granpa_Beard_F | |
| Name: Father's White Moustache | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 25 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bBaseAtk,20; | |
| - Id: 5156 | |
| AegisName: Flu_Mask_F | |
| Name: Father's Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 8 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,1; | |
| - Id: 5157 | |
| AegisName: Viking_Helm_ | |
| Name: Orc Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 86 | |
| - Id: 5158 | |
| AegisName: Holy_Bonnet_ | |
| Name: Monk Hat | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 35 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5159 | |
| AegisName: Golden_Gear_ | |
| Name: Golden Gear | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 900 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 30 | |
| Script: | | |
| bonus bUnbreakableHelm; | |
| - Id: 5160 | |
| AegisName: Magestic_Goat_ | |
| Name: Majestic Goat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 41 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 5161 | |
| AegisName: Sharp_Gear_ | |
| Name: Spiky Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 43 | |
| - Id: 5162 | |
| AegisName: Bone_Helm_ | |
| Name: Bone Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 103 | |
| Script: | | |
| bonus2 bSubEle,Ele_Dark,-15; | |
| - Id: 5163 | |
| AegisName: Corsair_ | |
| Name: Corsair | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 105 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 5164 | |
| AegisName: Tiara_ | |
| Name: Tiara | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 19 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 5165 | |
| AegisName: Crown_ | |
| Name: Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 45 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 5166 | |
| AegisName: Spinx_Helm_ | |
| Name: Sphinx Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 3000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Low: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 65 | |
| View: 137 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 5167 | |
| AegisName: Munak_Turban_ | |
| Name: Munak Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 51 | |
| Script: | | |
| bonus2 bSubRace,RC_Undead,10; | |
| - Id: 5168 | |
| AegisName: Bongun_Hat_ | |
| Name: Bongun Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 139 | |
| - Id: 5169 | |
| AegisName: Bride_Mask | |
| Name: Bride Mask | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 223 | |
| Script: | | |
| if (BaseClass == Job_Taekwon) { | |
| bonus bLuk,2; | |
| bonus bCritical,5; | |
| } | |
| - Id: 5170 | |
| AegisName: Feather_Beret | |
| Name: Feather Beret | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 600 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 224 | |
| Script: | | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| - Id: 5171 | |
| AegisName: Valkyrie_Helm | |
| Name: Valkyrie Helm | |
| Type: Armor | |
| Buy: 100000 | |
| Weight: 1000 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 225 | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 5172 | |
| AegisName: Beret | |
| Name: Beret | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 700 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 226 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| - Id: 5173 | |
| AegisName: Satto_Hat | |
| Name: Magistrate Hat | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 400 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| View: 227 | |
| Script: | | |
| if (BaseClass == Job_Taekwon) { | |
| bonus bAgi,1; | |
| bonus bHPrecovRate,3; | |
| } | |
| - Id: 5174 | |
| AegisName: Ayam | |
| Name: Ayam | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 400 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| View: 228 | |
| Script: | | |
| if (BaseClass == Job_Taekwon) { | |
| bonus bInt,1; | |
| bonus bSPrecovRate,3; | |
| } | |
| - Id: 5175 | |
| AegisName: Censor_Bar | |
| Name: Censor Bar | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 229 | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,500; | |
| bonus bMdef,1; | |
| bonus bHit,-5; | |
| - Id: 5176 | |
| AegisName: Hahoe_Mask | |
| Name: Hahoe Mask | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 230 | |
| Script: | | |
| if (BaseClass == Job_Taekwon) { | |
| bonus bLuk,1; | |
| bonus bFlee2,2; | |
| } | |
| - Id: 5177 | |
| AegisName: Guardian_Lion_Mask | |
| Name: Mythical Lion Mask | |
| Type: Armor | |
| Buy: 30000 | |
| Weight: 500 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 231 | |
| Script: | | |
| if (BaseClass == Job_Taekwon) { | |
| bonus bDex,2; | |
| bonus bBaseAtk,2*getrefine(); | |
| bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; | |
| } | |
| - Id: 5178 | |
| AegisName: Candle_ | |
| Name: Candle | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 150 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 113 | |
| Script: | | |
| bonus bAllStats,1; | |
| - Id: 5179 | |
| AegisName: Gold_Tiara | |
| Name: Golden Tiara | |
| Type: Armor | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 232 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 5180 | |
| AegisName: Phrygian_Cap_ | |
| Name: France Holiday Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 217 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 5181 | |
| AegisName: Helm_Of_Darkness | |
| Name: Helm of Darkness | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2000 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 233 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 5182 | |
| AegisName: Puppy_Hat | |
| Name: Puppy Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 234 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); | |
| - Id: 5183 | |
| AegisName: Bird_Nest_Hat | |
| Name: Bird Nest Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 235 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bAgi,1; | |
| bonus2 bResEff,Eff_Stun,1000; | |
| - Id: 5184 | |
| AegisName: Captain_Hat | |
| Name: Captain's Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 236 | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,5; | |
| - Id: 5185 | |
| AegisName: Laurel_Wreath | |
| Name: Laurel Wreath | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 237 | |
| Script: | | |
| bonus bLuk,3; | |
| bonus2 bResEff,Eff_Blind,500; | |
| bonus2 bResEff,Eff_Curse,500; | |
| - Id: 5186 | |
| AegisName: Geographer_Band | |
| Name: Geographer Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 238 | |
| Script: | | |
| bonus bInt,1; | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; | |
| - Id: 5187 | |
| AegisName: Twin_Ribbon | |
| Name: Twin Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 239 | |
| Script: | | |
| bonus bMaxSP,30; | |
| bonus bMdef,3; | |
| bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; | |
| bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; | |
| - Id: 5188 | |
| AegisName: Minstrel_Hat | |
| Name: Wandering Minstrel Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 240 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| - Id: 5189 | |
| AegisName: Fallen_Leaves | |
| Name: Autumn Leaves | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 241 | |
| Script: | | |
| bonus bMaxHP,40; | |
| bonus bMaxSP,40; | |
| - Id: 5190 | |
| AegisName: Baseball_Cap_ | |
| Name: Independence Memorial Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 20 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 216 | |
| - Id: 5191 | |
| AegisName: Ribbon_Black | |
| Name: Black Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 242 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,3; | |
| - Id: 5192 | |
| AegisName: Ribbon_Yellow | |
| Name: Yellow Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 243 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5193 | |
| AegisName: Ribbon_Green | |
| Name: Green Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 244 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5194 | |
| AegisName: Ribbon_Pink | |
| Name: Pink Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 245 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5195 | |
| AegisName: Ribbon_Red | |
| Name: Red Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 246 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5196 | |
| AegisName: Ribbon_Orange | |
| Name: Orange Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 247 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5197 | |
| AegisName: Ribbon_White | |
| Name: White Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 248 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5198 | |
| AegisName: Drooping_Bunny | |
| Name: Drooping Bunny | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 249 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bFlee,2; | |
| - Id: 5199 | |
| AegisName: Baseball_Cap_I | |
| Name: Baseball Cap | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 216 | |
| - Id: 5200 | |
| AegisName: Coppola | |
| Name: Coppola | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 300 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 252 | |
| - Id: 5201 | |
| AegisName: Party_Hat_B | |
| Name: Party Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 144 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5202 | |
| AegisName: Pumpkin_Hat_ | |
| Name: Fantastic Pumpkin-Head | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 206 | |
| Script: | | |
| bonus2 bSubRace,RC_Demon,5; | |
| - Id: 5203 | |
| AegisName: Tongue_Mask | |
| Name: Smiling Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 253 | |
| Script: | | |
| bonus bSpeedRate,25; | |
| - Id: 5204 | |
| AegisName: Event_Pierrot_Nose | |
| Name: Rudolph's Nose | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 49 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,3000; | |
| bonus2 bAddMonsterDropItem,12130,30; | |
| - Id: 5205 | |
| AegisName: Wreath | |
| Name: Emperor's Laurel Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 3 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 261 | |
| Script: | | |
| bonus bAllStats,1; | |
| bonus bMdef,3; | |
| - Id: 5206 | |
| AegisName: Romantic_White_Flower | |
| Name: Romantic White Flower | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 259 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubRace,RC_Plant,3; | |
| - Id: 5207 | |
| AegisName: Gold_Spirit_Chain | |
| Name: Angel Blessing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 260 | |
| Script: | | |
| bonus bLuk,1; | |
| bonus2 bSubEle,Ele_Holy,5; | |
| - Id: 5208 | |
| AegisName: Rideword_Hat | |
| Name: Rideword Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 262 | |
| Script: | | |
| bonus2 bHPDrainRate,50,8; | |
| bonus2 bSPDrainRate,10,4; | |
| bonus2 bHPLossRate,10,5000; | |
| - Id: 5209 | |
| AegisName: Yellow_Baseball_Cap | |
| Name: Love Dad Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 263 | |
| - Id: 5210 | |
| AegisName: Flying_Angel | |
| Name: Flapping Angel Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 264 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bCastrate,-3; | |
| bonus bAspdRate,3; | |
| bonus bInt,1; | |
| bonus bAgi,1; | |
| - Id: 5211 | |
| AegisName: Dress_Hat | |
| Name: Dress Hat | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 265 | |
| Script: | | |
| bonus bMdef,7; | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus2 bAddClass,Class_All,2; | |
| bonus bMAtkRate,2; | |
| bonus bHealPower,5; | |
| if (getrefine()>=7) { | |
| bonus2 bAddClass,Class_All,1; | |
| bonus bMAtkRate,1; | |
| bonus bHealPower,1; | |
| } | |
| - Id: 5212 | |
| AegisName: Satellite_Hairband | |
| Name: Satellite Hairband | |
| Type: Armor | |
| Weight: 1000 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 266 | |
| Script: | | |
| bonus bMaxHP,50; | |
| bonus bMaxSP,10; | |
| skill "AL_RUWACH",1; | |
| UnEquipScript: | | |
| sc_end SC_RUWACH; | |
| - Id: 5213 | |
| AegisName: Black_Bunny_Band | |
| Name: Sheila Hairnet | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 267 | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bMdef,3; | |
| - Id: 5214 | |
| AegisName: Moonlight_Flower_Hat | |
| Name: Moonlight Flower Hat | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 3 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 268 | |
| Script: | | |
| bonus bDex,2; | |
| bonus3 bAutoSpell,"AL_INCAGI",1,50; | |
| - Id: 5215 | |
| AegisName: Angelic_Chain_ | |
| Name: Evolved Angel Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 38 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bDex,1; | |
| bonus bInt,1; | |
| bonus2 bSubRace,RC_Demon,3; | |
| - Id: 5216 | |
| AegisName: Satanic_Chain_ | |
| Name: Evolved Evil Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 39 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bAgi,1; | |
| bonus bFlee,3; | |
| bonus2 bSubRace,RC_Angel,3; | |
| - Id: 5217 | |
| AegisName: Magestic_Goat_TW | |
| Name: Evolved Majestic Goat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 5 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| StarGladiator: true | |
| Swordman: true | |
| Taekwon: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 41 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 5218 | |
| AegisName: Bunny_Band_ | |
| Name: Evolved Bunny Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 15 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 5219 | |
| AegisName: Drooping_Kitty_ | |
| Name: Evolved Drooping Cat | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 142 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,18; | |
| bonus bFlee,3; | |
| - Id: 5220 | |
| AegisName: Smoking_Pipe_ | |
| Name: Evolved Pipe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 55 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bVit,1; | |
| bonus2 bSubRace,RC_Brute,5; | |
| bonus2 bSubRace,RC_Player_Doram,5; | |
| - Id: 5221 | |
| AegisName: Pair_Of_Red_Ribbon_ | |
| Name: Evolved Pair of Red Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| View: 169 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bFlee,5; | |
| - Id: 5222 | |
| AegisName: Fish_On_Head_ | |
| Name: Evolved Blue Fish | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 149 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bDex,1; | |
| - Id: 5223 | |
| AegisName: Big_Golden_Bell_ | |
| Name: Evolved Big Golden Bell | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 35 | |
| Refineable: true | |
| View: 175 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 5224 | |
| AegisName: Orc_Hero_Helm_TW | |
| Name: Evolved Orc Hero Helm | |
| Type: Armor | |
| Buy: 500000 | |
| Weight: 900 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 178 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bVit,1; | |
| bonus bMaxHPrate,10; | |
| - Id: 5225 | |
| AegisName: Marcher_Hat | |
| Name: Parade Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 269 | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bStr,2; | |
| bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; | |
| bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; | |
| bonus2 bResEff,Eff_Stun,1000; | |
| if (BaseClass == Job_Acolyte) | |
| bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000; | |
| - Id: 5226 | |
| AegisName: Mini_Propeller_ | |
| Name: Mini Propeller | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 270 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bDex,1; | |
| bonus bFlee,10; | |
| bonus bCastrate,-getrefine(); | |
| - Id: 5227 | |
| AegisName: Red_Deviruchi_Cap | |
| Name: Red Deviruchi Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 64 | |
| Refineable: true | |
| View: 271 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| - Id: 5228 | |
| AegisName: White_Deviruchi_Cap | |
| Name: Gray Deviruchi Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 64 | |
| Refineable: true | |
| View: 272 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| - Id: 5229 | |
| AegisName: Gray_Deviruchi_Cap | |
| Name: Brown Deviruchi Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 64 | |
| Refineable: true | |
| View: 273 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| - Id: 5230 | |
| AegisName: White_Drooping_Kitty | |
| Name: Gray Drooping Cat | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 274 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,3000; | |
| bonus bMdef,15; | |
| - Id: 5231 | |
| AegisName: Gray_Drooping_Kitty | |
| Name: Brown Drooping Cat | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 275 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,3000; | |
| bonus bMdef,15; | |
| - Id: 5232 | |
| AegisName: Pink_Drooping_Kitty | |
| Name: Pink Drooping Cat | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 276 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,3000; | |
| bonus bMdef,15; | |
| - Id: 5233 | |
| AegisName: Blue_Drooping_Kitty | |
| Name: Blue Drooping Cat | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 277 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,3000; | |
| bonus bMdef,15; | |
| - Id: 5234 | |
| AegisName: Yellow_Drooping_Kitty | |
| Name: Yellow Drooping Cat | |
| Type: Armor | |
| Buy: 250000 | |
| Weight: 500 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 278 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,3000; | |
| bonus bMdef,15; | |
| - Id: 5235 | |
| AegisName: Gray_Fur_Hat | |
| Name: Brown Beanie | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 350 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 279 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5236 | |
| AegisName: Blue_Fur_Hat | |
| Name: Blue Beanie | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 350 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 280 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5237 | |
| AegisName: Pink_Fur_Hat | |
| Name: Pink Beanie | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 350 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 281 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5238 | |
| AegisName: Red_Wizardry_Hat | |
| Name: Red Mage Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 282 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,150; | |
| - Id: 5239 | |
| AegisName: White_Wizardry_Hat | |
| Name: Gray Mage Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 283 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,150; | |
| - Id: 5240 | |
| AegisName: Gray_Wizardry_Hat | |
| Name: Brown Mage Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 284 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,150; | |
| - Id: 5241 | |
| AegisName: Blue_Wizardry_Hat | |
| Name: Blue Mage Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 285 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,150; | |
| - Id: 5242 | |
| AegisName: Yellow_Wizardry_Hat | |
| Name: Yellow Mage Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 286 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,150; | |
| - Id: 5243 | |
| AegisName: Chullos | |
| Name: Shafka | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 287 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bResEff,Eff_Freeze,1000; | |
| - Id: 5244 | |
| AegisName: Elven_Blindfold | |
| Name: Elven Blindfold | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 288 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,10000; | |
| - Id: 5245 | |
| AegisName: Elven_Sunglasses | |
| Name: Elven Sunglasses | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 289 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,500; | |
| - Id: 5246 | |
| AegisName: Angelic_Helm | |
| Name: Angelic Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 290 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bLuk,1; | |
| bonus bMdef,3; | |
| bonus2 bSubRace,RC_Demon,5; | |
| - Id: 5247 | |
| AegisName: Satanic_Helm | |
| Name: Satanic Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 291 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bLuk,1; | |
| bonus bMdef,3; | |
| bonus2 bSubRace,RC_Demon,5; | |
| - Id: 5248 | |
| AegisName: Robotic_Blindfold | |
| Name: Robotic Blindfold | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 292 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,10000; | |
| - Id: 5249 | |
| AegisName: Human_Blindfold | |
| Name: Human Blindfold | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 293 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,10000; | |
| - Id: 5250 | |
| AegisName: Robotic_Ears | |
| Name: Robotic Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 10 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 294 | |
| - Id: 5251 | |
| AegisName: Round_Ears | |
| Name: Round Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 10 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 295 | |
| - Id: 5252 | |
| AegisName: Drooping_Nine_Tail | |
| Name: Drooping Ninetail | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 296 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bDex,1; | |
| bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; | |
| - Id: 5253 | |
| AegisName: Lif_Doll_Hat | |
| Name: Lif Doll Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 297 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,getrefine(); | |
| bonus bDef,getrefine()*-1; | |
| - Id: 5254 | |
| AegisName: Deviling_Hat | |
| Name: Deviling Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 298 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bCritical,3; | |
| bonus2 bSubRace,RC_Angel,-20; | |
| if (getrefine()>=6) { | |
| bonus bCritical,getrefine()-5; | |
| } | |
| - Id: 5255 | |
| AegisName: Triple_Poring_Hat | |
| Name: Triple Poring Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| View: 299 | |
| Script: | | |
| bonus bLuk,3; | |
| bonus3 bAutoSpell,"BS_GREED",1,50; | |
| - Id: 5256 | |
| AegisName: Valkyrie_Feather_Band | |
| Name: Valkyrie Feather Band | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 300 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; | |
| - Id: 5257 | |
| AegisName: Soulless_Wing | |
| Name: Soul Ring | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 301 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,2; | |
| bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10; | |
| - Id: 5258 | |
| AegisName: Afro_Wig | |
| Name: Afro Wig | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 302 | |
| Script: | | |
| bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; | |
| bonus2 bSubEle,Ele_Neutral,1; | |
| - Id: 5259 | |
| AegisName: Elephant_Hat_ | |
| Name: Elephant Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 215 | |
| Script: | | |
| bonus bVit,1; | |
| bonus3 bAutoSpell,"WZ_WATERBALL",3,10; | |
| skill "AL_HOLYWATER",1; | |
| - Id: 5260 | |
| AegisName: Cookie_Hat | |
| Name: Cookie Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 217 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bFlee2,5; | |
| bonus bCritAtkRate,5; | |
| - Id: 5261 | |
| AegisName: Silver_Tiara_ | |
| Name: Silver Tiara | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 218 | |
| Script: | | |
| bonus bInt,2; | |
| if (BaseClass == Job_Mage) | |
| bonus bMatkRate,(JobLevel/20); | |
| if (BaseClass == Job_Acolyte) | |
| bonus bUseSPrate,-(JobLevel/10); | |
| if (BaseClass == Job_Archer) | |
| bonus bMaxSP,(JobLevel*2); | |
| - Id: 5262 | |
| AegisName: Gold_Tiara_ | |
| Name: Golden Tiara | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 232 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bUnbreakableHelm; | |
| if (readparam(bDex)<56 && (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)) | |
| bonus bDex,JobLevel/7; | |
| - Id: 5263 | |
| AegisName: Ati_Atihan_Hat | |
| Name: Pagdayaw | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 303 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,1; | |
| bonus2 bSubEle,Ele_Earth,1; | |
| bonus2 bSubEle,Ele_Fire,1; | |
| bonus2 bSubEle,Ele_Wind,1; | |
| bonus2 bAddEff,Eff_Curse,300; | |
| - Id: 5264 | |
| AegisName: Aussie_Flag_Hat | |
| Name: Australian Flag Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 304 | |
| Script: | | |
| bonus bAllStats,2; | |
| - Id: 5265 | |
| AegisName: Apple_Of_Archer_C | |
| Name: Apple of Archer | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 7 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 72 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,4; | |
| - Id: 5266 | |
| AegisName: Bunny_Band_C | |
| Name: Bunny Band | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 9 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 15 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| - Id: 5267 | |
| AegisName: Sahkkat_C | |
| Name: Sakkat | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 10 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 67 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAgi,3; | |
| - Id: 5268 | |
| AegisName: Lord_Circlet_C | |
| Name: Grand Circlet | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 10 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 93 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,3; | |
| bonus bInt,3; | |
| bonus bLuk,3; | |
| bonus bMdef,4; | |
| - Id: 5269 | |
| AegisName: Flying_Angel_ | |
| Name: Flapping Angel Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 264 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bAgi,1; | |
| bonus bAspdRate,3; | |
| bonus bSpeedRate,25; | |
| - Id: 5270 | |
| AegisName: Fallen_Leaves_ | |
| Name: Autumn Leaves | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 241 | |
| Script: | | |
| bonus bFlee2,5; | |
| - Id: 5271 | |
| AegisName: Chinese_Crown_ | |
| Name: Phoenix Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 221 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus2 bSubClass,Class_Boss,getrefine(); | |
| - Id: 5272 | |
| AegisName: Tongue_Mask_ | |
| Name: Tongue Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 253 | |
| Script: | | |
| bonus3 bAutoSpell,"SM_PROVOKE",5,50; | |
| - Id: 5273 | |
| AegisName: Happy_Wig | |
| Name: Happy Wig | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 305 | |
| Script: | | |
| bonus bSpeedRate,25; | |
| bonus bDef,4; | |
| skill "TF_HIDING",1; | |
| UnEquipScript: | | |
| sc_end SC_HIDING; | |
| - Id: 5274 | |
| AegisName: Shiny_Wig | |
| Name: Shiny Wig | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 306 | |
| Script: | | |
| bonus bSpeedRate,25; | |
| bonus bDef,4; | |
| skill "TF_HIDING",1; | |
| UnEquipScript: | | |
| sc_end SC_HIDING; | |
| - Id: 5275 | |
| AegisName: Marvelous_Wig | |
| Name: Marvelous Wig | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 307 | |
| Script: | | |
| bonus bSpeedRate,25; | |
| bonus bDef,4; | |
| skill "TF_HIDING",1; | |
| UnEquipScript: | | |
| sc_end SC_HIDING; | |
| - Id: 5276 | |
| AegisName: Fantastic_Wig | |
| Name: Fantastic Wig | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 308 | |
| Script: | | |
| bonus bSpeedRate,25; | |
| bonus bDef,4; | |
| skill "TF_HIDING",1; | |
| UnEquipScript: | | |
| sc_end SC_HIDING; | |
| - Id: 5277 | |
| AegisName: Yellow_Bandana | |
| Name: Yellow Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 309 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bVit,2; | |
| bonus bLongAtkDef,10; | |
| - Id: 5278 | |
| AegisName: Yellow_Ribbon | |
| Name: Yellow Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 310 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bVit,2; | |
| bonus bLongAtkDef,10; | |
| - Id: 5279 | |
| AegisName: Drooping_Kitty_C | |
| Name: Refined Drooping Cat | |
| Type: Armor | |
| Buy: 2 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 142 | |
| Script: | | |
| bonus bMdef,15; | |
| bonus2 bResEff,Eff_Curse,3000; | |
| - Id: 5280 | |
| AegisName: Magestic_Goat_C | |
| Name: Baphomet Horns | |
| Type: Armor | |
| Buy: 2 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 41 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 5281 | |
| AegisName: Deviruchi_Cap_C | |
| Name: Refined Deviruchi Hat | |
| Type: Armor | |
| Buy: 2 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 123 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| - Id: 5282 | |
| AegisName: euRO_Baseball_Cap | |
| Name: Europe Baseball Cap | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 216 | |
| - Id: 5283 | |
| AegisName: Chick_Hat | |
| Name: Chick Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| View: 311 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bMaxHP,50; | |
| bonus bMaxSP,50; | |
| skill "TF_DOUBLE",2; | |
| bonus bDoubleRate,10; | |
| bonus2 bSubRace,RC_DemiHuman,3; | |
| bonus2 bSubRace,RC_Player_Human,3; | |
| - Id: 5284 | |
| AegisName: Water_Lily_Crown | |
| Name: Water Lily Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 312 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,1; | |
| bonus bAgi,1; | |
| bonus bHPrecovRate,5; | |
| bonus bSPrecovRate,3; | |
| - Id: 5285 | |
| AegisName: Vane_Hairpin | |
| Name: Vane Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 313 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 5286 | |
| AegisName: Pecopeco_Hairband | |
| Name: Pecopeco Hairband | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 314 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bSpeedRate,25; | |
| bonus bAspdRate,-10; | |
| bonus bCastrate,25; | |
| - Id: 5287 | |
| AegisName: Vacation_Hat | |
| Name: Vacation Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 315 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 5288 | |
| AegisName: Red_Glasses | |
| Name: Red Glasses | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 316 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 5289 | |
| AegisName: Vanilmirth_Hat | |
| Name: Vanilmirth Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 317 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bUnbreakableHelm; | |
| bonus3 bAutoSpell,"MG_FIREBOLT",1,10; | |
| bonus3 bAutoSpell,"MG_COLDBOLT",1,10; | |
| bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; | |
| bonus bMdef,5; | |
| - Id: 5290 | |
| AegisName: Drooping_Bunny_ | |
| Name: Drooping Bunny | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 249 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bFlee,2; | |
| - Id: 5291 | |
| AegisName: Kettle_Hat | |
| Name: Kettle Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 318 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus4 bAutoSpell,"SA_DELUGE",2,10,0; | |
| bonus3 bAutoSpell,"WZ_WATERBALL",3,10; | |
| - Id: 5292 | |
| AegisName: Dragon_Skull | |
| Name: Dragon Skull | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 319 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubRace,RC_Dragon,5; | |
| - Id: 5293 | |
| AegisName: Ramen_Hat | |
| Name: Ramen Hat | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 320 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,4; | |
| bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; | |
| - Id: 5294 | |
| AegisName: Whisper_Mask | |
| Name: Whisper Mask | |
| Type: Armor | |
| Buy: 20 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 321 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,3; | |
| bonus2 bSubEle,Ele_Ghost,-10; | |
| - Id: 5295 | |
| AegisName: Golden_Bandana | |
| Name: Golden Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2400 | |
| Defense: 4 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 138 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,4; | |
| - Id: 5296 | |
| AegisName: Drooping_Nine_Tail_ | |
| Name: Drooping Nine Tail | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 296 | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bCritical,1; | |
| - Id: 5297 | |
| AegisName: Soulless_Wing_ | |
| Name: Soul Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 301 | |
| Script: | | |
| bonus bAllStats,1; | |
| bonus2 bSPRegenRate,2,10000; | |
| - Id: 5298 | |
| AegisName: Marvelous_Wig_ | |
| Name: Dokebi's Wig | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 307 | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,5; | |
| bonus2 bSubEle,Ele_Fire,-5; | |
| bonus2 bSubEle,Ele_Water,-5; | |
| - Id: 5299 | |
| AegisName: Ati_Atihan_Hat_ | |
| Name: Pagdayaw | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 303 | |
| Script: | | |
| bonus3 bAutoSpell,"DC_SCREAM",1,50; | |
| - Id: 5300 | |
| AegisName: Bullock_Helm | |
| Name: Bullock Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 322 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMaxHP,100; | |
| - Id: 5301 | |
| AegisName: Russian_Ribbon | |
| Name: Victory Hairband | |
| Type: Armor | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 323 | |
| - Id: 5302 | |
| AegisName: Lotus_Flower_Hat | |
| Name: Flower Lily | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 324 | |
| - Id: 5303 | |
| AegisName: Flower_Coronet | |
| Name: Flower Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 325 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bMaxHP,50; | |
| - Id: 5304 | |
| AegisName: Cap_Of_Blindness | |
| Name: Cap Of Blindness | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 326 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bResEff,Eff_Curse,700; | |
| bonus2 bResEff,Eff_Blind,10000; | |
| - Id: 5305 | |
| AegisName: Pirate_Dagger | |
| Name: Pirate Dagger | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 327 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bBaseAtk,5; | |
| - Id: 5306 | |
| AegisName: Freyja_Crown | |
| Name: Freya's Crown | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 12 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 328 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| - Id: 5307 | |
| AegisName: Carmen_Miranda's_Hat | |
| Name: Carmen Miranda's Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 329 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50; | |
| - Id: 5308 | |
| AegisName: Brazilian_Flag_Hat | |
| Name: Brazil National Flag Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 330 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bSpeedAddRate,25; | |
| - Id: 5309 | |
| AegisName: Mahican | |
| Name: Wool Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 331 | |
| Script: | | |
| skill "RG_GRAFFITI",1; | |
| - Id: 5310 | |
| AegisName: Bulb_Hairband | |
| Name: Shining Electric Bulb Hairband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 332 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Dark,10; | |
| skill "MG_SIGHT",1; | |
| UnEquipScript: | | |
| sc_end SC_SIGHT; | |
| - Id: 5311 | |
| AegisName: Large_Hibiscus | |
| Name: Large Hisbiscus | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 333 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,15; | |
| - Id: 5312 | |
| AegisName: Ayothaya_Hat | |
| Name: Ayothaya King's Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 334 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| - Id: 5313 | |
| AegisName: Diadem | |
| Name: Diadem | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 335 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMatkRate,3; | |
| bonus bCastrate,-3; | |
| - Id: 5314 | |
| AegisName: Hockey_Mask | |
| Name: Hockey Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 336 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| - Id: 5315 | |
| AegisName: Observer | |
| Name: Observer | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 35 | |
| View: 337 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| skill "WZ_ESTIMATION",1; | |
| - Id: 5316 | |
| AegisName: Umbrella_Hat | |
| Name: Umbrella Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 338 | |
| Script: | | |
| bonus2 bSubEle,Ele_Water,3; | |
| - Id: 5317 | |
| AegisName: Fisherman_Hat | |
| Name: Fisherman's Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 339 | |
| Script: | | |
| bonus3 bAutoSpell,"WZ_WATERBALL",3,50; | |
| - Id: 5318 | |
| AegisName: Poring_Party_Hat | |
| Name: Poring Party Hat | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 340 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,3; | |
| - Id: 5319 | |
| AegisName: Hellomother_Hat | |
| Name: Hello Mother Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 341 | |
| Script: | | |
| bonus bLuk,3; | |
| - Id: 5320 | |
| AegisName: Champion_Wreath | |
| Name: Champion Wreath | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 261 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,2; | |
| bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; | |
| - Id: 5321 | |
| AegisName: Indonesian_Bandana | |
| Name: Bandana Merah Putih | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 342 | |
| - Id: 5322 | |
| AegisName: Scarf | |
| Name: Kerchief | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| View: 343 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bFlee,5; | |
| - Id: 5323 | |
| AegisName: Misstrance_Crown | |
| Name: Misstrance Crown | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 10 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 165 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,2; | |
| - Id: 5324 | |
| AegisName: Little_Angel_Doll | |
| Name: Little Angel Doll | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 344 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,3; | |
| bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; | |
| - Id: 5325 | |
| AegisName: Robo_Eye | |
| Name: Robo Eye | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| View: 345 | |
| Script: | | |
| bonus2 bAddClass,Class_All,2; | |
| bonus bMatkRate,2; | |
| bonus bDex,1; | |
| - Id: 5326 | |
| AegisName: Masquerade_C | |
| Name: Masquerade C | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 78 | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,7; | |
| bonus2 bAddRace,RC_Player_Human,7; | |
| - Id: 5327 | |
| AegisName: Orc_Hero_Helm_C | |
| Name: Refined Helmet of Orc Hero | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 10 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 178 | |
| Script: | | |
| bonus bStr,5; | |
| bonus bVit,3; | |
| - Id: 5328 | |
| AegisName: Evil_Wing_Ears_C | |
| Name: Evil Wing Ears C | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 152 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 5329 | |
| AegisName: Dark_Blindfold_C | |
| Name: Dark Blindfold C | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 187 | |
| Script: | | |
| bonus2 bResEff,Eff_Blind,10000; | |
| bonus2 bResEff,Eff_Stun,500; | |
| - Id: 5330 | |
| AegisName: kRO_Drooping_Kitty_C | |
| Name: kRO Drooping Kitty C | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 6 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 142 | |
| Script: | | |
| bonus bMdef,15; | |
| bonus2 bResEff,Eff_Curse,4000; | |
| bonus2 bResEff,Eff_Curse,1000; | |
| - Id: 5331 | |
| AegisName: Corsair_C | |
| Name: Corsair C | |
| Type: Armor | |
| Buy: 1 | |
| Defense: 10 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 105 | |
| Script: | | |
| bonus bVit,3; | |
| bonus bInt,3; | |
| - Id: 5332 | |
| AegisName: Loki_Mask | |
| Name: Loki Mask | |
| Type: Armor | |
| Weight: 200 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| View: 346 | |
| Script: | | |
| bonus bFlee2,3; | |
| - Id: 5333 | |
| AegisName: Radio_Antenna | |
| Name: Radio Antenna | |
| Type: Armor | |
| Weight: 1500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 347 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bCritical,5; | |
| bonus bFlee,5; | |
| skill "MG_LIGHTNINGBOLT",1; | |
| bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; | |
| - Id: 5334 | |
| AegisName: Angeling_Wanna_Fly | |
| Name: Flapping Angeling | |
| Type: Armor | |
| Weight: 700 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 38 | |
| View: 348 | |
| Script: | | |
| bonus bLuk,2; | |
| bonus bMdef,2; | |
| - Id: 5335 | |
| AegisName: Jumping_Poring | |
| Name: Jumping Poring | |
| Type: Armor | |
| Weight: 300 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 349 | |
| Script: | | |
| bonus bLuk,1; | |
| bonus bUnbreakableHelm; | |
| - Id: 5336 | |
| AegisName: Guildsman_Recruiter | |
| Name: Guildsman Recruiter Hat | |
| Type: Armor | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 350 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| - Id: 5337 | |
| AegisName: Party_Recruiter_Hat | |
| Name: Party Recruiter Hat | |
| Type: Armor | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 351 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| - Id: 5338 | |
| AegisName: Bf_Recruiter_Hat | |
| Name: Bf Recruiter Hat | |
| Type: Armor | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 352 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5339 | |
| AegisName: Friend_Recruiter_Hat | |
| Name: Friend Recruiter Hat | |
| Type: Armor | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 353 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5340 | |
| AegisName: Deprotai_Doll_Hat | |
| Name: Defolty Doll Hat | |
| Type: Armor | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 354 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus bStr,2; | |
| bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20; | |
| - Id: 5341 | |
| AegisName: Claris_Doll_Hat | |
| Name: Glaris Doll Hat | |
| Type: Armor | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 355 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus bInt,2; | |
| bonus bMagicHPGainValue,50; | |
| - Id: 5342 | |
| AegisName: Sorin_Doll_Hat | |
| Name: Sorin Doll Hat | |
| Type: Armor | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 356 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus bDex,2; | |
| autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| - Id: 5343 | |
| AegisName: Tayelin_Doll_Hat | |
| Name: Telling Doll Hat | |
| Type: Armor | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 357 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus bAgi,2; | |
| bonus2 bAddItemHealRate,504,10; | |
| bonus2 bAddItemHealRate,547,10; | |
| - Id: 5344 | |
| AegisName: Binit_Doll_Hat | |
| Name: Bennit Doll Hat | |
| Type: Armor | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 358 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus bVit,2; | |
| autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; | |
| - Id: 5345 | |
| AegisName: Debril_Doll_Hat | |
| Name: W Doll Hat | |
| Type: Armor | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 359 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus bLuk,2; | |
| bonus2 bAddRace,RC_Undead,5; | |
| bonus2 bMagicAddRace,RC_Undead,5; | |
| bonus2 bSubRace,RC_Undead,5; | |
| - Id: 5346 | |
| AegisName: Gf_Recruiter_Hat | |
| Name: Gf Recruiter Hat | |
| Type: Armor | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 360 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5347 | |
| AegisName: Ph.D_Hat_ | |
| Name: Ph.D Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 98 | |
| - Id: 5348 | |
| AegisName: Big_Sis'_Ribbon_ | |
| Name: Big Ribbon | |
| Type: Armor | |
| Buy: 15000 | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 28 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5349 | |
| AegisName: Boy's_Cap_ | |
| Name: Boy's Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 102 | |
| - Id: 5350 | |
| AegisName: Pirate_Bandana_ | |
| Name: Pirate Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 74 | |
| Script: | | |
| bonus bStr,1; | |
| - Id: 5351 | |
| AegisName: Sunflower_ | |
| Name: Sunflower | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 37 | |
| Script: | | |
| bonus2 bSubRace,RC_Insect,10; | |
| - Id: 5352 | |
| AegisName: Poporing_Cap | |
| Name: Poporing Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 38 | |
| Refineable: true | |
| View: 361 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| - Id: 5353 | |
| AegisName: Helm_Of_Sun_ | |
| Name: Hat of the Sun God | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2400 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 138 | |
| Script: | | |
| bonus bStr,3; | |
| bonus bInt,2; | |
| - Id: 5354 | |
| AegisName: Muslim_Hat_M | |
| Name: Muslim Hat M | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 362 | |
| Script: | | |
| bonus bCastrate,-5; | |
| - Id: 5355 | |
| AegisName: Muslim_Hat_F | |
| Name: Selendang | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 363 | |
| Script: | | |
| bonus bCastrate,-5; | |
| - Id: 5356 | |
| AegisName: Pumpkin_Hat_H | |
| Name: Festival Pumpkin Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 206 | |
| Trade: | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubRace,RC_Demon,5; | |
| bonus2 bAddRace,RC_Demon,5; | |
| - Id: 5357 | |
| AegisName: Wings_Of_Victory | |
| Name: Wings Of Victory | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 10 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 365 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bUnbreakableHelm; | |
| - Id: 5358 | |
| AegisName: Pecopeco_Wing_Ears | |
| Name: Peco Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 366 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus bMdef,2; | |
| bonus bUnbreakableHelm; | |
| - Id: 5359 | |
| AegisName: J_Captain_Hat | |
| Name: Ship Captain Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| View: 367 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,1; | |
| bonus bLongAtkRate,7; | |
| bonus bMaxHP,100; | |
| - Id: 5360 | |
| AegisName: Whikebain_Ears | |
| Name: Hyuke's Black Cat Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 368 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bFlee,10; | |
| bonus bCritical,3; | |
| bonus bCritAtkRate,10; | |
| bonus bDefRate,-50; | |
| bonus bDef2Rate,-50; | |
| - Id: 5361 | |
| AegisName: Gang_Scarf | |
| Name: Gangster Scarf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bBaseAtk,5; | |
| if (BaseJob == Job_Rogue) | |
| skill "RG_GANGSTER",1; | |
| - Id: 5362 | |
| AegisName: Ninja_Scroll | |
| Name: Ninja Scroll | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 370 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMatkRate,1; | |
| - Id: 5363 | |
| AegisName: Helm_Of_Abyss | |
| Name: Helm Of Abyss | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 2 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 371 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,-10; | |
| bonus2 bSubRace,RC_Player_Human,-10; | |
| bonus2 bSubClass,Class_Boss,10; | |
| - Id: 5364 | |
| AegisName: Dark_Snake_Lord_Hat | |
| Name: Evil Snake Lord Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| View: 372 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bAgi,2; | |
| - Id: 5365 | |
| AegisName: Fried_Egg | |
| Name: Magnolia Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 373 | |
| Script: | | |
| bonus2 bResEff,Eff_Stun,500; | |
| skill "HT_FLASHER",1; | |
| - Id: 5366 | |
| AegisName: Hat_0f_King | |
| Name: Love Dad Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 374 | |
| Script: | | |
| bonus bAllStats,5; | |
| - Id: 5367 | |
| AegisName: Hyegun_Hat | |
| Name: Hyegun Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| View: 375 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus2 bSubRace,RC_Demon,10; | |
| - Id: 5368 | |
| AegisName: White_Wing | |
| Name: White Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 38 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddMonsterDropItem,12280,300; | |
| - Id: 5369 | |
| AegisName: Dark_Wing | |
| Name: Dark Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 39 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddMonsterDropItem,12279,300; | |
| - Id: 5370 | |
| AegisName: Orchid_Hairband | |
| Name: Orchid Hairband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 376 | |
| Script: | | |
| bonus bInt,1; | |
| - Id: 5371 | |
| AegisName: Hat_Of_Judge | |
| Name: Judge Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 377 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,1; | |
| bonus bMaxSP,30; | |
| - Id: 5372 | |
| AegisName: Drooping_White_Kitty | |
| Name: Koneko Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 378 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bDelayRate,-3; | |
| bonus bMatkRate,3; | |
| bonus bMaxSPrate,3; | |
| bonus bMdef,3; | |
| - Id: 5373 | |
| AegisName: Darkness_Helm | |
| Name: Dark Randgris Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 379 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,3; | |
| bonus bMdef,1; | |
| - Id: 5374 | |
| AegisName: L_Magestic_Goat | |
| Name: Gigantic Majestic Goat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 380 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,12; | |
| bonus2 bAddRace,RC_Player_Human,12; | |
| bonus bBaseAtk,(JobLevel*2)/7; | |
| - Id: 5375 | |
| AegisName: L_Orc_Hero_Helm | |
| Name: Orc Hero Headdress | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 900 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 381 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; | |
| - Id: 5376 | |
| AegisName: Satanic_Chain_P | |
| Name: Flying Evil Wing | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 382 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMaxSP,120; | |
| bonus2 bAddEff2,Eff_Curse,300; | |
| - Id: 5377 | |
| AegisName: Antique_Pipe | |
| Name: Gentleman's Pipe | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 383 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,2; | |
| bonus2 bSubRace,RC_Player_Human,2; | |
| - Id: 5378 | |
| AegisName: Rabbit_Ear_Hat | |
| Name: Bunny Top Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 384 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,3; | |
| bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; | |
| - Id: 5379 | |
| AegisName: Balloon_Hat | |
| Name: Tam | |
| Type: Armor | |
| Weight: 800 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 385 | |
| Script: | | |
| bonus bMdef,2; | |
| bonus bMatkRate,2+(getrefine()/2); | |
| - Id: 5380 | |
| AegisName: Fish_Head_Hat | |
| Name: Fish Head Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 386 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; | |
| - Id: 5381 | |
| AegisName: Santa_Poring_Hat | |
| Name: Santa Poring Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 387 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,2; | |
| bonus2 bAddEle,Ele_Dark,3; | |
| bonus2 bSubEle,Ele_Dark,3; | |
| - Id: 5382 | |
| AegisName: Bell_Ribbon | |
| Name: Bell Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 388 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bVit,1; | |
| skill "AL_ANGELUS",1; | |
| UnEquipScript: | | |
| sc_end SC_ANGELUS; | |
| - Id: 5383 | |
| AegisName: Hunting_Cap | |
| Name: Hunter's Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 250 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 389 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,1; | |
| bonus2 bAddRace,RC_Brute,10; | |
| bonus2 bAddRace,RC_Player_Doram,10; | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| - Id: 5384 | |
| AegisName: Santa_Hat_1 | |
| Name: Twin Pompom By JB | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 390 | |
| Script: | | |
| bonus bLuk,3; | |
| skill "WZ_ESTIMATION",1; | |
| bonus3 bAutoSpell,"AL_INCAGI",1,500; | |
| - Id: 5385 | |
| AegisName: Yoyo_Hat | |
| Name: Yoyo Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 391 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| skill "TF_HIDING", 1; | |
| UnEquipScript: | | |
| sc_end SC_HIDING; | |
| - Id: 5386 | |
| AegisName: Ayam_ | |
| Name: Ayam | |
| Type: Armor | |
| Weight: 70 | |
| Defense: 7 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 228 | |
| Trade: | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,7; | |
| bonus bFlee,7; | |
| bonus2 bAddMonsterDropItem,12198,200; | |
| - Id: 5387 | |
| AegisName: Neko_Mimi_Kafra | |
| Name: Neko Mimi Kafra | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 392 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 5388 | |
| AegisName: Snake_Head | |
| Name: Snake Head Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 393 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| skill "TF_DOUBLE",5; | |
| bonus bDoubleRate,25; | |
| - Id: 5389 | |
| AegisName: Angel_Spirit | |
| Name: Angel Spirit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 394 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bHit,15; | |
| - Id: 5390 | |
| AegisName: Santa_Hat_2 | |
| Name: Frozen Twin Pompom | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 395 | |
| Script: | | |
| bonus2 bResEff, Eff_Freeze, 3000; | |
| - Id: 5391 | |
| AegisName: Toast_C | |
| Name: Toast | |
| Type: Armor | |
| Buy: 20 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 188 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,100; | |
| bonus2 bAddMonsterDropItem,617,10; | |
| - Id: 5392 | |
| AegisName: Louyang_Cap | |
| Name: Luoyang NewYear Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 396 | |
| Script: | | |
| bonus bLuk,2; | |
| - Id: 5393 | |
| AegisName: Valentine_Hat | |
| Name: Love Valentine's Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 397 | |
| Script: | | |
| bonus bMaxSPrate, 7; | |
| bonus bMaxHPrate, 7; | |
| - Id: 5394 | |
| AegisName: Bubblegum_Lower | |
| Name: Bubblegum | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5395 | |
| AegisName: Tiraya_Bonnet | |
| Name: Striped Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 398 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMaxHP,100+(getrefine()*20); | |
| bonus bLuk,3; | |
| - Id: 5396 | |
| AegisName: Jasper_Crest | |
| Name: Jasper Crest | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 399 | |
| Script: | | |
| bonus bDex,3; | |
| bonus bVit,1; | |
| - Id: 5397 | |
| AegisName: Scuba_Mask | |
| Name: Scuba Gear | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 400 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Water, 10; | |
| bonus bUnbreakableHelm, 0; | |
| - Id: 5398 | |
| AegisName: Bone_Head | |
| Name: Bone Head | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1200 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| View: 401 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bMdef,5; | |
| bonus2 bResEff,Eff_Stun,500; | |
| bonus2 bResEff,Eff_Bleeding,500; | |
| - Id: 5399 | |
| AegisName: Mandragora_Cap | |
| Name: Mandragora Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| StarGladiator: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 85 | |
| View: 402 | |
| Script: | | |
| bonus bVit,3; | |
| bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; | |
| - Id: 5400 | |
| AegisName: Fox_Hat | |
| Name: Fox Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 403 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5401 | |
| AegisName: Black_Glasses | |
| Name: Black Frame Glasses | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 404 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,2; | |
| bonus bUnbreakableHelm, 0; | |
| - Id: 5402 | |
| AegisName: Mischievous_Fairy | |
| Name: Mischievous Fairy | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 405 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bUnbreakableHelm, 0; | |
| bonus bFlee2, 3; | |
| - Id: 5403 | |
| AegisName: Fish_In_Mouth | |
| Name: Fish In Mouth | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 200 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 406 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bAddMonsterDropItem,579,500; | |
| bonus2 bAddItemHealRate,579,25; | |
| - Id: 5404 | |
| AegisName: Blue_Ribbon | |
| Name: Blue Ribbon | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| Refineable: true | |
| View: 407 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; | |
| - Id: 5405 | |
| AegisName: Filir_Hat | |
| Name: Filir Hat | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 200 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| View: 408 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bShortWeaponDamageReturn, 1; | |
| - Id: 5406 | |
| AegisName: Academy_Freshman_Hat | |
| Name: Academy Freshman Hat | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 409 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHP,80; | |
| bonus bMaxSP,10; | |
| - Id: 5407 | |
| AegisName: Academy_Graduating_Cap | |
| Name: Academy Completion Hat | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 410 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxSP,30; | |
| - Id: 5408 | |
| AegisName: Old_Bandanna | |
| Name: Old Bandana | |
| Type: Armor | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 6 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,50; | |
| bonus bCastrate,10; | |
| - Id: 5409 | |
| AegisName: New_Cowboy_Hat | |
| Name: Purple Cowboy Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 411 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bVit,2; | |
| bonus bMaxSP,50; | |
| - Id: 5410 | |
| AegisName: Bread_Bag2 | |
| Name: Brown Paperbag Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 6 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 412 | |
| Script: | | |
| bonus bMaxHP,100; | |
| bonus2 bResEff, Eff_Stun, 400; | |
| bonus2 bSubRace,RC_DemiHuman,4; | |
| bonus2 bSubRace,RC_Player_Human,4; | |
| - Id: 5411 | |
| AegisName: White_Snake_Hat | |
| Name: White Snake Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 413 | |
| Script: | | |
| bonus bDex,2; | |
| - Id: 5412 | |
| AegisName: Sweet_Candy | |
| Name: Sweet Candy | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 414 | |
| Script: | | |
| bonus bUnbreakableHelm, 0; | |
| - Id: 5413 | |
| AegisName: Popcorn_Hat | |
| Name: Pop Corn Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 415 | |
| Script: | | |
| bonus2 bSubEle,Ele_Wind, 10; | |
| - Id: 5414 | |
| AegisName: Campfire_Hat | |
| Name: Camp Fire Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 416 | |
| Script: | | |
| bonus2 bSubEle,Ele_Fire,10; | |
| bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; | |
| - Id: 5415 | |
| AegisName: Poring_Cake_Cap | |
| Name: Poring Cake Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 417 | |
| Script: | | |
| bonus bMdef,5; | |
| bonus bCritical,5; | |
| bonus bFlee,5; | |
| bonus bFlee2,5; | |
| bonus bAspdRate,5; | |
| bonus bCastrate,-5; | |
| bonus bDelayRate,-5; | |
| - Id: 5416 | |
| AegisName: Beer_Cap | |
| Name: Beer Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 2 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 18 | |
| Refineable: true | |
| View: 418 | |
| Script: | | |
| bonus bFlee2,5; | |
| skill "SM_RECOVERY",3; | |
| skill "MG_SRECOVERY",3; | |
| - Id: 5417 | |
| AegisName: Crown_Parrot | |
| Name: Crown Parrots | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 419 | |
| Script: | | |
| bonus bInt,1; | |
| bonus2 bResEff,Eff_Silence,10000; | |
| bonus3 bAutoSpell,"DC_SCREAM",1,50; | |
| - Id: 5418 | |
| AegisName: Soldier_Hat | |
| Name: Legionnaire Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 420 | |
| Script: | | |
| bonus bStr,1; | |
| bonus2 bAddClass,Class_All,3; | |
| bonus bUseSPrate,10; | |
| - Id: 5419 | |
| AegisName: Evolved_Leaf | |
| Name: Leaves Of Grass | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 57 | |
| Script: | | |
| bonus bVit,1; | |
| bonus2 bSubRace,RC_Plant,5; | |
| - Id: 5420 | |
| AegisName: Mask_Of_Ifrit | |
| Name: Mask Of Ifrit | |
| Type: Armor | |
| Defense: 8 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 421 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bMdef,5; | |
| bonus2 bSubEle,Ele_Fire,10; | |
| bonus2 bSubEle,Ele_Water,-10; | |
| skill "MG_SIGHT",1; | |
| bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50; | |
| bonus3 bAutoSpell,"MG_FIREBOLT",3,50; | |
| UnEquipScript: | | |
| sc_end SC_SIGHT; | |
| - Id: 5421 | |
| AegisName: Ifrit's_Ear | |
| Name: Ears Of Ifrit | |
| Type: Armor | |
| Buy: 20 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 422 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bMdef,3; | |
| bonus2 bSkillAtk,"MG_FIREBOLT",2; | |
| bonus2 bSkillAtk,"WZ_FIREPILLAR",2; | |
| bonus2 bSkillAtk,"WZ_METEOR",2; | |
| bonus2 bSkillAtk,"SM_BASH",2; | |
| bonus2 bSkillAtk,"SM_MAGNUM",2; | |
| bonus2 bSkillAtk,"KN_PIERCE",2; | |
| bonus2 bSubEle,Ele_Fire,5; | |
| bonus2 bSubEle,Ele_Water,-5; | |
| - Id: 5422 | |
| AegisName: Linguistic_Book_Cap | |
| Name: Linguistic Book Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 70 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 423 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,2; | |
| - Id: 5423 | |
| AegisName: Lovecap_China | |
| Name: I Love China | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 250 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 424 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,3; | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| - Id: 5424 | |
| AegisName: Fanta_Orange_Can | |
| Name: Fanta Orange Can Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 425 | |
| - Id: 5425 | |
| AegisName: Fanta_Grape_Can | |
| Name: Fanta Grape Can Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 426 | |
| - Id: 5426 | |
| AegisName: Karada_Meguri_Tea_Hat | |
| Name: Karada Meguricha Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 427 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5427 | |
| AegisName: Royal_Milk_Tea_Hat | |
| Name: Black Tea Kochakaden Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 428 | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 5428 | |
| AegisName: Bread_Bag1 | |
| Name: RWC Anniversary Bread Envelope | |
| Type: Armor | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 429 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,12; | |
| bonus2 bSubRace,RC_Player_Human,12; | |
| - Id: 5429 | |
| AegisName: Bogy_Cap | |
| Name: Bogy Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 430 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bHPrecovRate, 5; | |
| bonus bSPrecovRate, 5; | |
| - Id: 5430 | |
| AegisName: Sacred_Torch_Coronet | |
| Name: Torch Cap | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 431 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubEle,Ele_Fire,20; | |
| skill "MG_FIREBOLT",5; | |
| - Id: 5431 | |
| AegisName: Chicken_Hat | |
| Name: Chicken Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 432 | |
| Script: | | |
| bonus3 bAutoSpell,"MC_LOUD",1,30; | |
| bonus bAspdRate,5; | |
| - Id: 5432 | |
| AegisName: Brazil_Baseball_Cap | |
| Name: bRO 4th Anniversary Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 433 | |
| Script: | | |
| if (gettime(DT_MONTH) == SEPTEMBER && gettime(DT_DAYOFMONTH)>=10 && gettime(DT_DAYOFMONTH)<=24) | |
| bonus bAllStats, 4; | |
| - Id: 5433 | |
| AegisName: Golden_Wreath | |
| Name: Golden Laurel | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 434 | |
| - Id: 5435 | |
| AegisName: Coke_Hat | |
| Name: Red Minstrel Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| View: 436 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMaxSP,80; | |
| bonus bMdef,3; | |
| if (getrefine()>5) { | |
| bonus bMdef,getrefine()-5; | |
| bonus bMaxSP,(getrefine()-5)*10; | |
| } | |
| - Id: 5436 | |
| AegisName: Bride's_Corolla | |
| Name: Bride's Corolla | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 437 | |
| Script: | | |
| bonus bLuk,3; | |
| bonus bMdef,2; | |
| - Id: 5437 | |
| AegisName: Flower_Of_Fairy | |
| Name: Fairy Flower | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 438 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,1; | |
| bonus2 bSubRace,RC_Insect,5; | |
| - Id: 5438 | |
| AegisName: Fillet_Green | |
| Name: Cute Green Ribbon | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 439 | |
| Script: | | |
| bonus bMaxSP,20; | |
| - Id: 5439 | |
| AegisName: Fillet_Red | |
| Name: Cute Red Ribbon | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 440 | |
| Script: | | |
| bonus bMaxSP,20; | |
| - Id: 5440 | |
| AegisName: Fillet_Blue | |
| Name: Cute Blue Ribbon | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 441 | |
| Script: | | |
| bonus bMaxSP,20; | |
| - Id: 5441 | |
| AegisName: Fillet_White | |
| Name: Cute White Ribbon | |
| Type: Armor | |
| Buy: 500 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 442 | |
| Script: | | |
| bonus bMaxSP,20; | |
| - Id: 5442 | |
| AegisName: Necktie | |
| Name: Necktie | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 443 | |
| Script: | | |
| bonus bVit,1; | |
| bonus bHit,-5; | |
| bonus bUseSPrate,5; | |
| - Id: 5443 | |
| AegisName: Status_Of_Baby_Angel | |
| Name: Statue Of Baby Angel | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 444 | |
| Script: | | |
| bonus bMdef,2; | |
| bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; | |
| - Id: 5444 | |
| AegisName: Hair_Brush | |
| Name: Hair Brush | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 445 | |
| Script: | | |
| bonus bCritical,6; | |
| - Id: 5445 | |
| AegisName: Candy_Cane_In_The_Mouth | |
| Name: Candy Cane In Mouth | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 446 | |
| Script: | | |
| bonus bMaxSP,5; | |
| - Id: 5446 | |
| AegisName: Cat_Foot_Hairpin | |
| Name: Catfoot Hairpin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 447 | |
| Script: | | |
| bonus bFlee,5; | |
| bonus bFlee2,3; | |
| - Id: 5447 | |
| AegisName: Frog_Cap | |
| Name: Frog Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 448 | |
| Script: | | |
| bonus bMdef,1; | |
| bonus2 bAddRace,RC_Insect,12; | |
| bonus2 bMagicAddRace,RC_Insect,12; | |
| - Id: 5448 | |
| AegisName: Solo_Play_Box1 | |
| Name: Soloplay Box1 | |
| Type: Armor | |
| Weight: 300 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 449 | |
| - Id: 5449 | |
| AegisName: Solo_Play_Box2 | |
| Name: Soloplay Box2 | |
| Type: Armor | |
| Weight: 300 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 450 | |
| - Id: 5450 | |
| AegisName: Sun_Cap | |
| Name: Solar Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 451 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5451 | |
| AegisName: Dragonhelm_Gold | |
| Name: RWC 2008 Dragon Helm Gold | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2500 | |
| Defense: 7 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 452 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAspdRate,10; | |
| bonus bAllStats,3; | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| - Id: 5452 | |
| AegisName: Dragonhelm_Silver | |
| Name: RWC 2008 Dragon Helm Silver | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2500 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 453 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAspdRate,7; | |
| bonus bAllStats,2; | |
| bonus2 bAddRace,RC_DemiHuman,3; | |
| bonus2 bAddRace,RC_Player_Human,3; | |
| - Id: 5453 | |
| AegisName: Dragonhelm_Copper | |
| Name: RWC 2008 Dragon Helm Copper | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 2500 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 454 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAspdRate,5; | |
| bonus bAllStats,2; | |
| bonus2 bAddRace,RC_DemiHuman,1; | |
| bonus2 bAddRace,RC_Player_Human,1; | |
| - Id: 5454 | |
| AegisName: Dog_Cap_ | |
| Name: Puppy Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 234 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; | |
| autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }"; | |
| - Id: 5455 | |
| AegisName: Geographer_Band_ | |
| Name: Decorative Geographer | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 238 | |
| Script: | | |
| bonus bInt,1; | |
| bonus3 bAutoSpell,"AL_HEAL",5,50; | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; | |
| - Id: 5456 | |
| AegisName: Vacation_Hat_ | |
| Name: Summer Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 315 | |
| Script: | | |
| bonus bVit,5; | |
| bonus bHPrecovRate,20; | |
| bonus bSPrecovRate,15; | |
| - Id: 5457 | |
| AegisName: Spring_Rabbit_Hat | |
| Name: Moon Rabbit Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 455 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,3; | |
| bonus bBaseAtk,5; | |
| bonus bMatkRate,5; | |
| if (getrefine()>4) { | |
| bonus bBaseAtk,getrefine()-4; | |
| bonus bMatkRate,getrefine()-4; | |
| } | |
| - Id: 5458 | |
| AegisName: Pinwheel_Cap | |
| Name: Pinwheel Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 456 | |
| Script: | | |
| bonus bMaxHPrate,5; | |
| bonus bMaxSPrate,5; | |
| - Id: 5459 | |
| AegisName: Drooping_Bunny_Chusuk | |
| Name: Drooping Bunny | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 249 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bFlee,2; | |
| - Id: 5460 | |
| AegisName: Adv_Dragon_Skull | |
| Name: Evolved Dragon Skull Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 7 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| View: 457 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats, 2; | |
| bonus bMaxHPrate, 3; | |
| - Id: 5461 | |
| AegisName: Adv_Whisper_Mask | |
| Name: Evolved Whisper Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 458 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,3; | |
| bonus2 bSubEle,Ele_Ghost, 20; | |
| - Id: 5462 | |
| AegisName: Spiked_Scarf | |
| Name: Spiked Scarf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| View: 459 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bVit,1; | |
| bonus2 bAddRace,RC_DemiHuman,1; | |
| bonus2 bAddRace,RC_Player_Human,1; | |
| bonus2 bSubRace,RC_DemiHuman,1; | |
| bonus2 bSubRace,RC_Player_Human,1; | |
| - Id: 5463 | |
| AegisName: Rainbow_Scarf | |
| Name: Rainbow Scarf | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 90 | |
| View: 460 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,2; | |
| bonus bMatkRate,1; | |
| - Id: 5464 | |
| AegisName: Zaha_Doll_Hat | |
| Name: Zaha Doll Hat | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 461 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| skill "PR_MAGNIFICAT", 3; | |
| - Id: 5476 | |
| AegisName: Hairband_Of_Grandpeco | |
| Name: Grand Peco Hairband | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 473 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bMaxHPrate,-10; | |
| bonus2 bAddRace2,RC2_Orc,15; | |
| - Id: 5477 | |
| AegisName: Bro_Flag | |
| Name: Brazilian Flag Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 474 | |
| Script: | | |
| skill "SM_BASH", 1; | |
| - Id: 5478 | |
| AegisName: Classic_Hat | |
| Name: Classic Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 475 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bMaxHP,300; | |
| - Id: 5479 | |
| AegisName: Shaman's_Hair_Ornament | |
| Name: Shaman's Hair Decoration | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 476 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bMaxHP,50; | |
| bonus2 bSubEle,Ele_Neutral,5; | |
| - Id: 5480 | |
| AegisName: Bizofnil_Wing_Deco | |
| Name: Bijofnil Wings | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 477 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAllStats,2; | |
| bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; | |
| - Id: 5481 | |
| AegisName: Hermose_Cap | |
| Name: Hermode Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 478 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAspdRate,10; | |
| bonus bBaseAtk,-20; | |
| bonus bMatkRate,-10; | |
| - Id: 5482 | |
| AegisName: Dark_Knight_Mask | |
| Name: Dark Knight Mask | |
| Type: Armor | |
| Weight: 3000 | |
| Defense: 5 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| View: 479 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,3; | |
| - Id: 5483 | |
| AegisName: Odin_Mask | |
| Name: Odin Mask | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 480 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bHit,-10; | |
| bonus2 bAddRace,RC_DemiHuman,6; | |
| bonus2 bAddRace,RC_Player_Human,6; | |
| - Id: 5485 | |
| AegisName: Tiger_Face | |
| Name: Tiger Face | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 3 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| View: 483 | |
| Script: | | |
| bonus2 bSubRace,RC_Brute,5; | |
| bonus2 bAddRace,RC_Brute,5; | |
| bonus2 bMagicAddRace,RC_Brute,5; | |
| bonus2 bSubRace,RC_Player_Doram,5; | |
| bonus2 bAddRace,RC_Player_Doram,5; | |
| bonus2 bMagicAddRace,RC_Player_Doram,5; | |
| - Id: 5486 | |
| AegisName: J_Anniversary_Hat | |
| Name: Anniversary Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 395 | |
| Script: | | |
| bonus bAllStats, 2; | |
| - Id: 5487 | |
| AegisName: J_Poringcake_Hat | |
| Name: Poring Cake Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 417 | |
| Script: | | |
| bonus bLuk,2; | |
| - Id: 5488 | |
| AegisName: J_Twin_Santahat | |
| Name: Twin Santa Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 390 | |
| Script: | | |
| bonus bLuk,1; | |
| bonus bMdef,1; | |
| - Id: 5489 | |
| AegisName: Love_Daddy | |
| Name: Love Daddy Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 484 | |
| Script: | | |
| bonus bDex,2; | |
| - Id: 5490 | |
| AegisName: Anubis_Helm | |
| Name: Anubis Helm | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 485 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,5; | |
| bonus2 bSubClass,Class_Boss,10; | |
| bonus bHealpower2,10; | |
| bonus bAddItemHealRate,10; | |
| - Id: 5491 | |
| AegisName: Hat_Of_Outlaw | |
| Name: Bandit Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 486 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus2 bSubEle,Ele_Fire, 10; | |
| - Id: 5492 | |
| AegisName: Boy's_Cap_I | |
| Name: Student Cap | |
| Type: Armor | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 102 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,3; | |
| bonus2 bAddRace,RC_DemiHuman,5; | |
| bonus2 bAddRace,RC_Player_Human,5; | |
| - Id: 5493 | |
| AegisName: Ulle_Cap_I | |
| Name: Ulle's Cap | |
| Type: Armor | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 254 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bAgi,1; | |
| - Id: 5494 | |
| AegisName: Spinx_Helm_I | |
| Name: Sphinx Hat | |
| Type: Armor | |
| Defense: 5 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Swordman: true | |
| Locations: | |
| Head_Low: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 137 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,5; | |
| - Id: 5495 | |
| AegisName: Power_Of_Thor | |
| Name: Power Of Thor | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 6 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 493 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| bonus bMdef,3; | |
| bonus bFlee,5; | |
| - Id: 5496 | |
| AegisName: Dice_Hat | |
| Name: Dice Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| View: 494 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLuk,4; | |
| - Id: 5497 | |
| AegisName: King_Tiger_Doll_Hat | |
| Name: King Tiger Doll Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 3 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 495 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 5498 | |
| AegisName: Wondering_Wolf_Helm | |
| Name: Wandering Wolf Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 5 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 490 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bVit,5; | |
| bonus bFlee,10; | |
| - Id: 5499 | |
| AegisName: Pizza_Hat | |
| Name: Pizza Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 487 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| skill "SM_PROVOKE", 1; | |
| - Id: 5500 | |
| AegisName: Icecream_Hat | |
| Name: Icecream Hat | |
| Type: Armor | |
| Weight: 300 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 488 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,3; | |
| skill "MG_FROSTDIVER",3; | |
| - Id: 5501 | |
| AegisName: Pirate's_Pride | |
| Name: Pirate's Pride | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| View: 496 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace2,RC2_Ninja,5; | |
| bonus2 bSubRace2,RC2_Ninja,5; | |
| - Id: 5502 | |
| AegisName: Necromencer's_Hood | |
| Name: Necromancer's Hood | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 491 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1; | |
| - Id: 5503 | |
| AegisName: Rabbit_Magic_Hat | |
| Name: Magic Rabit Hat | |
| Type: Armor | |
| Weight: 800 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 497 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bAgi,2; | |
| bonus bMdef,1; | |
| bonus bMaxSP,50; | |
| bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20; | |
| bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20; | |
| bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20; | |
| - Id: 5504 | |
| AegisName: China_Wedding_Veil | |
| Name: Wedding Weil | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 5 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 489 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,10; | |
| - Id: 5505 | |
| AegisName: Asara_Fairy_Hat | |
| Name: Asara Fairy Hat | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 492 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| skill "DC_DONTFORGETME",1; | |
| bonus bDex,2; | |
| bonus bLuk,2; | |
| - Id: 5506 | |
| AegisName: Blue_Pajamas_Hat | |
| Name: Blue Night Cap | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 501 | |
| Script: | | |
| bonus bBaseAtk,5; | |
| bonus bMatkRate,5; | |
| - Id: 5507 | |
| AegisName: Pink_Pajamas_Hat | |
| Name: Pink Night Cap | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 502 | |
| Script: | | |
| bonus bBaseAtk,5; | |
| bonus bMatkRate,5; | |
| - Id: 5508 | |
| AegisName: Shark_Hat | |
| Name: Shark Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 503 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bAgi,2; | |
| bonus bMdef,1; | |
| bonus2 bAddEle,Ele_Water,5; | |
| bonus2 bSubEle,Ele_Water,10; | |
| - Id: 5509 | |
| AegisName: Sting_Hat | |
| Name: Sting hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 504 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bVit,1; | |
| bonus bMdef,3; | |
| bonus2 bAddEle,Ele_Fire,5; | |
| bonus2 bSubEle,Ele_Earth,5; | |
| bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; | |
| - Id: 5510 | |
| AegisName: Shower_Cap | |
| Name: Shower Cap | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 507 | |
| Script: | | |
| bonus bMdef,3; | |
| bonus bFlee,3; | |
| bonus2 bAddEle,Ele_Water,10; | |
| bonus2 bSubRace,RC_Fish,10; | |
| - Id: 5511 | |
| AegisName: Samambaia | |
| Name: Samambaia | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 508 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bSPrecovRate,8; | |
| - Id: 5512 | |
| AegisName: Aquarius_Diadem | |
| Name: Aquarius Diadem | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 509 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bFlee,10; | |
| bonus2 bSubEle,Ele_Wind, 5; | |
| if (getrefine()>6) { | |
| bonus bDef, 1; | |
| bonus bBaseAtk,15; | |
| } | |
| - Id: 5513 | |
| AegisName: Aquarius_Crown | |
| Name: Aquarius Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 510 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bFlee,10; | |
| bonus2 bSubEle,Ele_Wind, 5; | |
| if (getrefine()>6) { | |
| bonus bDef, 1; | |
| bonus bBaseAtk,15; | |
| } | |
| - Id: 5514 | |
| AegisName: Pisces_Diadem | |
| Name: Pisces Diadem | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 511 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMdef,5; | |
| bonus2 bSubEle,Ele_Water, 5; | |
| if (getrefine()>6) { | |
| bonus bDef, 1; | |
| bonus bMatkRate,2; | |
| } | |
| - Id: 5515 | |
| AegisName: Pisces_Crown | |
| Name: Pisces Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 512 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMdef,5; | |
| bonus2 bSubEle,Ele_Water, 5; | |
| if (getrefine()>6) { | |
| bonus bDef, 1; | |
| bonus bMatkRate,2; | |
| } | |
| - Id: 5516 | |
| AegisName: Hawk_Eyes01 | |
| Name: hawk Eyes | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Jobs: | |
| Hunter: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 23 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 5517 | |
| AegisName: Hawk_Eyes02 | |
| Name: Hawk Eyes | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 23 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 5518 | |
| AegisName: L_Magestic_Goat2 | |
| Name: Gigantic Majestic Goat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 513 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,12; | |
| bonus2 bSubRace,RC_Player_Human,12; | |
| bonus bBaseAtk,(JobLevel*2)/7; | |
| - Id: 5519 | |
| AegisName: Peacock_Feather | |
| Name: Peacock Feather | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 514 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 5520 | |
| AegisName: Rabbit_Earplug | |
| Name: Rabbit Earplugs | |
| Type: Armor | |
| Weight: 400 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 515 | |
| Script: | | |
| bonus2 bAddClass,Class_All,4; | |
| bonus bMatkRate,4; | |
| - Id: 5521 | |
| AegisName: Angry_Mouth_C | |
| Name: Angry Mouth | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 194 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDelayRate,-3; | |
| - Id: 5522 | |
| AegisName: Fanta_Zero_Lemon_Hat | |
| Name: Fanta Zero Lemon Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 516 | |
| - Id: 5523 | |
| AegisName: Sakura_Mist_Hat | |
| Name: Sakura Mist Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 517 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 5524 | |
| AegisName: Sakura_Milk_Tea_Hat | |
| Name: Sakura Milk Tea Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 518 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 5525 | |
| AegisName: First_Leaf_Tea_Hat | |
| Name: Flower Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 519 | |
| Script: | | |
| bonus bMaxHP,80; | |
| bonus bMaxSP,20; | |
| - Id: 5526 | |
| AegisName: Lady_Tanee_Doll | |
| Name: Tanigumi Girl Doll | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 520 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bFlee,3; | |
| bonus2 bSubEle,Ele_Wind, 5; | |
| bonus2 bAddMonsterDropItem, 513, 200; | |
| - Id: 5527 | |
| AegisName: Lunatic_Hat | |
| Name: Lunatic Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 521 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,5; | |
| bonus bMdef,2; | |
| bonus bFlee2,5; | |
| bonus2 bAddMonsterDropItem,622,50; | |
| - Id: 5528 | |
| AegisName: King_Frog_Hat | |
| Name: Frog King Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 4 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 522 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAgi,1; | |
| - Id: 5529 | |
| AegisName: Evil's_Bone_Hat | |
| Name: Satanic Bone Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 6 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 523 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,3; | |
| bonus2 bSubEle,Ele_Neutral,5; | |
| skill "WZ_FROSTNOVA",1; | |
| - Id: 5530 | |
| AegisName: Raven_Cap | |
| Name: Raven Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 6 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 524 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| - Id: 5531 | |
| AegisName: B_Dragon_Hat | |
| Name: Baby Dragon Hat | |
| Type: Armor | |
| Buy: 45000 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 525 | |
| Script: | | |
| bonus bDex,2; | |
| .@bonus = max(getskilllv("TF_DOUBLE"), 5); | |
| skill "TF_DOUBLE",.@bonus; | |
| bonus bDoubleRate,.@bonus * 5; | |
| - Id: 5532 | |
| AegisName: Pirate_Dagger_J | |
| Name: Pirate Dagger | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 327 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bShortWeaponDamageReturn,1; | |
| - Id: 5533 | |
| AegisName: Emperor_Wreath_J | |
| Name: Emperor Wreath | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 800 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| View: 261 | |
| Script: | | |
| bonus bAllStats,1; | |
| - Id: 5535 | |
| AegisName: Side_Cap | |
| Name: Side Cap | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 529 | |
| Script: | | |
| bonus bVit,1; | |
| bonus bDex,1; | |
| bonus bMdef,3; | |
| bonus2 bSubRace,RC_DemiHuman,5; | |
| bonus2 bSubRace,RC_Player_Human,5; | |
| bonus2 bAddRace,RC_DemiHuman,3; | |
| bonus2 bAddRace,RC_Player_Human,3; | |
| - Id: 5536 | |
| AegisName: Spare_Card | |
| Name: Spare Card | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 10 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 526 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddMonsterDropItem,6187,1000; | |
| - Id: 5537 | |
| AegisName: Quati_Hat | |
| Name: Kwati Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| View: 527 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,3; | |
| - Id: 5538 | |
| AegisName: Tucan_Hat | |
| Name: Tucan Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| View: 528 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,3; | |
| - Id: 5539 | |
| AegisName: Jaguar_Hat | |
| Name: Jaguar Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 25 | |
| Refineable: true | |
| View: 530 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bMdef,2; | |
| skill "MC_LOUD", 1; | |
| - Id: 5540 | |
| AegisName: Freyja_SCirclet7 | |
| Name: Freyja SCirclet7 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 8 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| View: 18 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| - Id: 5541 | |
| AegisName: Freyja_SCirclet30 | |
| Name: Freyja SCirclet30 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 8 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| View: 18 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| - Id: 5542 | |
| AegisName: Freyja_SCirclet60 | |
| Name: Freyja SCirclet60 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 8 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| View: 18 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| - Id: 5543 | |
| AegisName: Freyja_SCirclet90 | |
| Name: Freyja SCirclet90 | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 700 | |
| Defense: 8 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| View: 18 | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| - Id: 5544 | |
| AegisName: Time_Keeper_Hat | |
| Name: Time Keeper Hat | |
| Type: Armor | |
| Buy: 30000 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 240 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bMaxSP,50; | |
| - Id: 5545 | |
| AegisName: Aries_Diadem | |
| Name: Aries Diadem | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 531 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bVit,2; | |
| bonus2 bSubEle,Ele_fire,5; | |
| if (getrefine()>6) { | |
| bonus bDef,1; | |
| bonus bVit,1; | |
| } | |
| - Id: 5546 | |
| AegisName: Aries_Crown | |
| Name: Aries Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 532 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bVit,2; | |
| bonus2 bSubEle,Ele_fire,5; | |
| if (getrefine()>6) { | |
| bonus bDef,1; | |
| bonus bVit,1; | |
| } | |
| - Id: 5547 | |
| AegisName: RJC_Katusa | |
| Name: RJC Katusa Flower | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 533 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R); | |
| bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R); | |
| bonus2 bCastrate, "WZ_HEAVENDRIVE", -25; | |
| bonus2 bCastrate, "WZ_EARTHSPIKE", -25; | |
| ; | |
| - Id: 5548 | |
| AegisName: Scarlet_Rose | |
| Name: Scarlet Rose | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 534 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5549 | |
| AegisName: Taurus_Diadem | |
| Name: Taurus Diadem | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 535 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bDelayRate,-2; | |
| bonus2 bSubEle,Ele_earth,5; | |
| if (getrefine()>6) { | |
| bonus bDex,1; | |
| bonus bMatkRate,1; | |
| } | |
| - Id: 5550 | |
| AegisName: Taurus_Crown | |
| Name: Taurus Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 536 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bDelayRate,-2; | |
| bonus2 bSubEle,Ele_earth,5; | |
| if (getrefine()>6) { | |
| bonus bDex,1; | |
| bonus bMatkRate,1; | |
| } | |
| - Id: 5552 | |
| AegisName: Fest_Lord_Circlet | |
| Name: Festival Grand Circlet | |
| Type: Armor | |
| Defense: 8 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 93 | |
| Script: | | |
| bonus bStr,3; | |
| bonus bInt,3; | |
| bonus bMdef,3; | |
| - Id: 5553 | |
| AegisName: Fest_Bunny_Band | |
| Name: Festival Bunny Band | |
| Type: Armor | |
| Defense: 7 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 15 | |
| Script: | | |
| bonus bMdef,4; | |
| bonus2 bSubRace,RC_DemiHuman,9; | |
| bonus2 bSubRace,RC_Player_Human,9; | |
| - Id: 5554 | |
| AegisName: Octopus_Hat | |
| Name: Octopus Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 538 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus3 bAutoSpell,"SM_PROVOKE",5,10; | |
| bonus bUnbreakableHelm; | |
| - Id: 5555 | |
| AegisName: Leaf_Cat_Hat | |
| Name: Leaf Cat Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 539 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,1; | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10; | |
| - Id: 5556 | |
| AegisName: Fur_Seal_Hat | |
| Name: Seal Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| View: 540 | |
| Script: | | |
| bonus bInt,1; | |
| bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30; | |
| - Id: 5557 | |
| AegisName: Wild_Rose_Hat | |
| Name: Wild Rose Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 6 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 541 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,3; | |
| - Id: 5558 | |
| AegisName: Saci_Hat | |
| Name: Luxury Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 6 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 542 | |
| Script: | | |
| bonus3 bAddMonsterDropItem,510,RC_Plant,500; | |
| - Id: 5559 | |
| AegisName: Piece_Of_White_Cloth_E | |
| Name: Piece Of White Cloth | |
| Type: Armor | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 543 | |
| - Id: 5560 | |
| AegisName: Bullock_Helm_J | |
| Name: Bullock Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 3000 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| View: 322 | |
| Script: | | |
| bonus bMaxHP,100; | |
| bonus bNoKnockback; | |
| bonus2 bSubEle,Ele_Neutral,-20; | |
| bonus2 bSubEle,Ele_Fire,-20; | |
| bonus2 bSubEle,Ele_Water,-20; | |
| bonus2 bSubEle,Ele_Wind,-20; | |
| bonus2 bSubEle,Ele_Earth,-20; | |
| bonus2 bSubEle,Ele_Dark,-20; | |
| bonus2 bSubEle,Ele_Holy,-20; | |
| bonus2 bSubEle,Ele_Ghost,-20; | |
| - Id: 5561 | |
| AegisName: Rabbit_Magic_Hat_J | |
| Name: Magic Rabbit Hat | |
| Type: Armor | |
| Weight: 800 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 497 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMaxSP,50; | |
| bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; | |
| bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; | |
| bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; | |
| - Id: 5562 | |
| AegisName: Good_Wedding_Veil_J | |
| Name: Luxurious Wedding Veil | |
| Type: Armor | |
| Weight: 500 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 45 | |
| View: 489 | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bCastRate,-3; | |
| bonus bUseSPrate,-5; | |
| - Id: 5564 | |
| AegisName: Crown_Of_Deceit | |
| Name: Crown of Deceit | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| View: 544 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,4; | |
| bonus bCastRate,-10; | |
| - Id: 5565 | |
| AegisName: Dragon_Arhat_Mask | |
| Name: Dragon Arhat Mask | |
| Type: Armor | |
| Defense: 5 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 545 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,10; | |
| bonus2 bAddRace,RC_Player_Human,10; | |
| - Id: 5566 | |
| AegisName: Tiger_Arhat_Mask | |
| Name: Tiger Arhat Mask | |
| Type: Armor | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 546 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,2; | |
| bonus2 bAddRace,RC_Player_Human,2; | |
| - Id: 5567 | |
| AegisName: Bright_Fury | |
| Name: Bright Fury | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 548 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus2 bAddClass,Class_All,2; | |
| bonus bAspdRate,2; | |
| - Id: 5568 | |
| AegisName: Rabbit_Bonnet | |
| Name: Rabbit Bonnet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 549 | |
| Script: | | |
| bonus bInt,2; | |
| - Id: 5569 | |
| AegisName: Gemini_Diadem | |
| Name: Gemini Diadem | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 550 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bMatkRate,2; | |
| if (getrefine()>6) { | |
| bonus bMdef,7; | |
| bonus bMAtkRate,8; | |
| bonus2 bSubEle,Ele_Wind,5; | |
| } | |
| - Id: 5570 | |
| AegisName: Gemini_Crown | |
| Name: Gemini Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 551 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bBaseAtk,2; | |
| bonus bMdef,5; | |
| if (getrefine()>6) { | |
| bonus bDef,1; | |
| bonus bMatk,15; | |
| bonus bFlee,10; | |
| bonus2 bSubEle,Ele_Wind,5; | |
| } | |
| - Id: 5572 | |
| AegisName: Savage_Baby_Hat | |
| Name: Savage Babe Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 553 | |
| Script: | | |
| bonus bVit,2; | |
| - Id: 5573 | |
| AegisName: Bogy_Horn | |
| Name: Dokebi Horn | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 554 | |
| - Id: 5574 | |
| AegisName: Pencil_In_Mouth | |
| Name: Well-Chewed Pencil | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| View: 555 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bdex,2; | |
| bonus bHitRate,3; | |
| - Id: 5575 | |
| AegisName: Onigiri_Hat | |
| Name: Rice Ball Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 6 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 556 | |
| - Id: 5577 | |
| AegisName: Dark_Knight_MaskB | |
| Name: Dark Knight Mask | |
| Type: Armor | |
| Weight: 3000 | |
| Defense: 5 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| View: 479 | |
| Trade: | |
| NoDrop: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,3; | |
| - Id: 5578 | |
| AegisName: Voyage_Hat | |
| Name: Voyage_Hat | |
| Type: Armor | |
| Buy: 200 | |
| Weight: 10 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 236 | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 5579 | |
| AegisName: Wanderer's_Sakkat | |
| Name: Wanderer's Sakkat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 558 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAgi,2; | |
| - Id: 5581 | |
| AegisName: Cancer_Diadem | |
| Name: Cancer Diadem | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 560 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus2 bSubEle,Ele_water, 5; | |
| if (getrefine()>6) { | |
| bonus bMdef,1; | |
| bonus bHealPower, 3; | |
| bonus bMatkRate,2; | |
| } | |
| - Id: 5582 | |
| AegisName: Cancer_Crown | |
| Name: Cancer Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 561 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus2 bSubEle,Ele_water, 5; | |
| if (getrefine()>6) { | |
| bonus bDef, 1; | |
| bonus bBaseAtk,15; | |
| bonus bFlee,10; | |
| } | |
| - Id: 5583 | |
| AegisName: Para_Team_Hat | |
| Name: Eden Team Hat | |
| Type: Armor | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| View: 465 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5584 | |
| AegisName: Majestic_Evil_Horn | |
| Name: Majestic Evil Horns | |
| Type: Armor | |
| Weight: 400 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 562 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus2 bSubRace,RC_Demon,3; | |
| bonus2 bHPDrainRate,3,15; | |
| bonus2 bSPDrainRate,1,7; | |
| - Id: 5585 | |
| AegisName: Rune_Hairband | |
| Name: Rune Cloth Circlet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 564 | |
| - Id: 5586 | |
| AegisName: Mosquito_Coil | |
| Name: Mosquito Coil | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 563 | |
| - Id: 5587 | |
| AegisName: Mosquito_Coil_1Use | |
| Name: Mosquito Coil | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 563 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5590 | |
| AegisName: K_Poring_Cake_Cap | |
| Name: Poring Cake Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 417 | |
| - Id: 5592 | |
| AegisName: Sigrun's_Wing | |
| Name: Sigrun's Wings | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 80 | |
| View: 568 | |
| Script: | | |
| if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker)) | |
| bonus bStr,1; | |
| else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || class == Job_Ninja || class == Job_Soul_Linker) | |
| bonus bInt,1; | |
| else if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger) | |
| bonus bDex,1; | |
| else if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) { | |
| bonus bMaxHP,80; | |
| bonus bMaxSP,30; | |
| } | |
| - Id: 5593 | |
| AegisName: K_Rabbit_Bonnet | |
| Name: Rabbit Bonnet | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 549 | |
| - Id: 5594 | |
| AegisName: Donut_In_Mouth | |
| Name: Donut In Mouth | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 569 | |
| - Id: 5596 | |
| AegisName: 4Leaf_Clover_In_Mouth | |
| Name: 4Leaf Clover In Mouth | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 2 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 571 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,2; | |
| - Id: 5597 | |
| AegisName: Bubble_Gum_In_Mouth | |
| Name: Bubble Gum In Mouth | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 2 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 572 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,2; | |
| - Id: 5600 | |
| AegisName: Br_Twin_Ribbon | |
| Name: Brazil Twin Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 575 | |
| Script: | | |
| bonus bAllStats,3; | |
| bonus bMdef,1; | |
| - Id: 5603 | |
| AegisName: RTC_Winner_Only | |
| Name: RTC First Place | |
| Type: Armor | |
| Weight: 250 | |
| Defense: 8 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 577 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats, 3; | |
| - Id: 5604 | |
| AegisName: RTC_Second_Best | |
| Name: RTC Second Place | |
| Type: Armor | |
| Weight: 250 | |
| Defense: 6 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 578 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats, 2; | |
| - Id: 5605 | |
| AegisName: RTC_Third_Best | |
| Name: RTC Third Place | |
| Type: Armor | |
| Weight: 250 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 579 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats, 1; | |
| - Id: 5653 | |
| AegisName: Darkness_Helm_J | |
| Name: Darkness Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 586 | |
| - Id: 5654 | |
| AegisName: Holy_Marching_Hat_J | |
| Name: Holy Marching Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 587 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus3 bAutoSpell,"PR_ASPERSIO",2,30; | |
| - Id: 5658 | |
| AegisName: Imp_Hat | |
| Name: Imp Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 589 | |
| Script: | | |
| bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; | |
| - Id: 5659 | |
| AegisName: Sleepr_Hat | |
| Name: Sleeper Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 590 | |
| Script: | | |
| bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; | |
| - Id: 5660 | |
| AegisName: Gryphon_Hat | |
| Name: Gryphon Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 591 | |
| Script: | | |
| bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5; | |
| - Id: 5664 | |
| AegisName: Filir_Wing | |
| Name: Filir's Pinions | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 595 | |
| Script: | | |
| bonus bAspdRate,2; | |
| bonus bCastRate,-2; | |
| - Id: 5665 | |
| AegisName: Shaman_Hat | |
| Name: Shaman Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 596 | |
| Script: | | |
| bonus2 bSubEle,Ele_Neutral,3; | |
| bonus2 bSubEle,Ele_Water,3; | |
| bonus2 bSubEle,Ele_Earth,3; | |
| bonus2 bSubEle,Ele_Fire,3; | |
| bonus2 bSubEle,Ele_Wind,3; | |
| bonus2 bSubEle,Ele_Poison,3; | |
| bonus2 bSubEle,Ele_Holy,3; | |
| bonus2 bSubEle,Ele_Dark,3; | |
| bonus2 bSubEle,Ele_Ghost,3; | |
| bonus2 bSubEle,Ele_Undead,3; | |
| - Id: 5666 | |
| AegisName: Golden_Crown | |
| Name: Golden Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 8 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 597 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bDex,1; | |
| bonus bLuk,1; | |
| - Id: 5667 | |
| AegisName: Skull_Hood | |
| Name: Skull Hood | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 598 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| - Id: 5668 | |
| AegisName: Weird_Pumpkin_Hat | |
| Name: Weird Pumpkin Hat | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 206 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 5671 | |
| AegisName: Drooping_Morocc_Minion | |
| Name: Drooping Morocc Minion | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 600 | |
| - Id: 5681 | |
| AegisName: F_Ribbon_Green | |
| Name: Green Ribbon | |
| Type: Armor | |
| Buy: 800 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 244 | |
| Script: | | |
| bonus bMdef,3; | |
| - Id: 5682 | |
| AegisName: Triangle_Rune_Cap | |
| Name: Triangle Rune Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 610 | |
| Script: | | |
| bonus bHealPower,2; | |
| if (getrefine() > 6) { | |
| bonus bMatk,10; | |
| bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,150,BF_MAGIC,0; | |
| } | |
| else { | |
| bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; | |
| } | |
| - Id: 5683 | |
| AegisName: Majestic_Goat_Repl | |
| Name: Baphomet Horns | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 41 | |
| - Id: 5684 | |
| AegisName: Jewel_Crown_Repl | |
| Name: Ornate Crown | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 88 | |
| - Id: 5685 | |
| AegisName: Prontera_Army_Cap_Repl | |
| Name: Army Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 48 | |
| - Id: 5686 | |
| AegisName: Feather_Bonnet_Repl | |
| Name: Nice Hat Feather | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 104 | |
| - Id: 5687 | |
| AegisName: Viking_Helm_Repl | |
| Name: Orc Helm | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 86 | |
| - Id: 5690 | |
| AegisName: Red_Wing_Hat | |
| Name: Red Wing Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 613 | |
| Script: | | |
| if (getrefine()>6) { | |
| bonus2 bAddClass,Class_All,2; | |
| bonus bMatkRate,2; | |
| } | |
| if (getrefine()>8) { | |
| bonus2 bAddClass,Class_All,2; | |
| bonus bMatkRate,2; | |
| } | |
| - Id: 5691 | |
| AegisName: Catain_Bandanna | |
| Name: Sailor's Bandana | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 10 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 542 | |
| Script: | | |
| bonus bDex,1; | |
| bonus2 bSubEle,Ele_Poison,20; | |
| - Id: 5692 | |
| AegisName: Sea_Cat_Hat | |
| Name: Sea Cat Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 10 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 539 | |
| Script: | | |
| bonus bDex,1; | |
| - Id: 5738 | |
| AegisName: Snowman_Hat | |
| Name: Snowman Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 4 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 616 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bInt,1; | |
| bonus bMdef,3; | |
| bonus2 bSubEle,Ele_Water,7; | |
| bonus2 bAddMonsterDropItem,530,100; | |
| bonus2 bAddMonsterDropItem,12354,300; | |
| if (getrefine()>7) { | |
| bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",5,20,BF_WEAPON|BF_MAGIC,0; | |
| } | |
| else { | |
| bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",1,20,BF_WEAPON|BF_MAGIC,0; | |
| } | |
| - Id: 5741 | |
| AegisName: Im_Egg_Shell_Hat | |
| Name: Eternal Egg Shell | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 101 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5742 | |
| AegisName: Rudolf_Santa_Hat | |
| Name: Rudolph Santa Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 400 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 619 | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5770 | |
| AegisName: Splash_Hat | |
| Name: Splash Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 349 | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }"; | |
| - Id: 5771 | |
| AegisName: Family_Hat | |
| Name: Family Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 109 | |
| Script: | | |
| bonus bDex,1; | |
| bonus bMdef,1; | |
| - Id: 5775 | |
| AegisName: Choco_Donut_In_Mouth | |
| Name: Choco Donut In Mouth | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 653 | |
| - Id: 5781 | |
| AegisName: Persika | |
| Name: Persika | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 659 | |
| - Id: 5786 | |
| AegisName: Ancient_Elven_Ear | |
| Name: Ancient Elven Ear | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 200 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 665 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLuk,1; | |
| - Id: 5788 | |
| AegisName: 3D_Glasses | |
| Name: 3D Glasses | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 661 | |
| - Id: 5792 | |
| AegisName: Fish_Pin | |
| Name: Fish Pin | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 669 | |
| - Id: 5793 | |
| AegisName: Ribbon_Of_Life | |
| Name: Ribbon Of Life | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 575 | |
| Script: | | |
| bonus bInt,1; | |
| bonus bMdef,2; | |
| - Id: 5794 | |
| AegisName: 3D_Glasses_ | |
| Name: 3D Glasses | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 661 | |
| - Id: 5796 | |
| AegisName: Cheer_Scarf | |
| Name: Cheer Scarf | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5797 | |
| AegisName: Cheer_Scarf2 | |
| Name: Cheer Scarf2 | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5798 | |
| AegisName: Cheer_Scarf3 | |
| Name: Cheer Scarf3 | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5799 | |
| AegisName: Cheer_Scarf4 | |
| Name: Cheer Scarf4 | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5800 | |
| AegisName: Blush_Of_Groom | |
| Name: Blush of Groom | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 50 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 125 | |
| Script: | | |
| bonus2 bSubRace,RC_DemiHuman,3; | |
| bonus2 bSubRace,RC_Player_Human,3; | |
| - Id: 5801 | |
| AegisName: Ribbon_Of_Bride | |
| Name: Red Tailed Ribbon | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 167 | |
| Script: | | |
| bonus bAllStats,2; | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| if (getskilllv("AL_HEAL") == 10) { | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; | |
| } | |
| else { | |
| bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; | |
| } | |
| - Id: 5802 | |
| AegisName: Upgrade_Elephant_Hat | |
| Name: Upgraded Elephant Hat | |
| Type: Armor | |
| Weight: 500 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 215 | |
| - Id: 5803 | |
| AegisName: Flower_Love_Hat | |
| Name: Love Flower Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 5 | |
| Script: | | |
| bonus2 bAddMonsterDropItem,608,100; | |
| - Id: 5804 | |
| AegisName: Pirate_Eyepatch | |
| Name: Pirate Eye Bandage | |
| Type: Armor | |
| Buy: 1000 | |
| Weight: 100 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 13 | |
| - Id: 5805 | |
| AegisName: Victorious_Coronet | |
| Name: Victorious Coronet | |
| Type: Armor | |
| Weight: 150 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 43 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMaxHPrate,15; | |
| bonus bSPrecovRate,5; | |
| - Id: 5806 | |
| AegisName: Poem_Natalia_Hat | |
| Name: Poet Natalie's Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 67 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5807 | |
| AegisName: October_Fest_Cap | |
| Name: October Fest Cap | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 104 | |
| - Id: 5808 | |
| AegisName: Diabolus_Helmet | |
| Name: Dark Bacilium | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 250 | |
| Defense: 5 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Monk: true | |
| Priest: true | |
| Rogue: true | |
| Sage: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 364 | |
| Script: | | |
| bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); | |
| bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); | |
| bonus2 bResEff,Eff_Stun,2000+(getrefine()*200); | |
| - Id: 5809 | |
| AegisName: Boom_Boom_Hat | |
| Name: Boom Boom Hat | |
| Type: Armor | |
| Weight: 100 | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 216 | |
| Script: | | |
| bonus bAllStats,5; | |
| - Id: 5810 | |
| AegisName: Ph.D_Hat_V | |
| Name: Ph.D Hat V | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 3 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 98 | |
| Script: | | |
| bonus bInt,5; | |
| bonus bVit,3; | |
| bonus bDex,3; | |
| - Id: 5811 | |
| AegisName: Santa_Beard | |
| Name: Santa's Beard | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| View: 25 | |
| - Id: 5812 | |
| AegisName: Hat_Of_Expert | |
| Name: Hat Of Expert | |
| Type: Armor | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 16 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 5815 | |
| AegisName: Classic_Hat_J | |
| Name: Classic Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 475 | |
| Script: | | |
| bonus bStr,1; | |
| bonus2 bSubSize, 0, 5; | |
| bonus2 bSubSize, 1, 5; | |
| bonus2 bSubSize, 2, 5; | |
| - Id: 5816 | |
| AegisName: Cowboy_Hat_J | |
| Name: Purple Cowboy Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 500 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 411 | |
| Script: | | |
| bonus bBaseAtk,15; | |
| bonus bFlee,-5; | |
| - Id: 5817 | |
| AegisName: Valentine_Pledge | |
| Name: Valentine Pledge | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 3 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,2; | |
| bonus bMdef,3; | |
| - Id: 5818 | |
| AegisName: Carnival_Hat | |
| Name: Carnival Hat | |
| Type: Armor | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 505 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats, 3; | |
| - Id: 5819 | |
| AegisName: Carnival_Circlet | |
| Name: Carnival Circlet | |
| Type: Armor | |
| Defense: 6 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 506 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats, 3; | |
| - Id: 5821 | |
| AegisName: Gold_Tulip_Hairpin | |
| Name: Gold Tulip Hairpin | |
| Type: Armor | |
| Buy: 10 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 499 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bExpAddClass,Class_All,5; | |
| - Id: 5822 | |
| AegisName: Love_Chick_Hat | |
| Name: Love Chick Hat | |
| Type: Armor | |
| Buy: 10000 | |
| Weight: 100 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 500 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLuk,4; | |
| bonus bMaxHP,100; | |
| bonus bMaxSP,100; | |
| bonus2 bSubRace,RC_DemiHuman,7; | |
| bonus2 bSubRace,RC_Player_Human,7; | |
| bonus2 bSubRace,RC_Undead,7; | |
| - Id: 5824 | |
| AegisName: Fools_Day_Hat | |
| Name: Fools Day Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 6 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| Refineable: true | |
| View: 265 | |
| - Id: 5826 | |
| AegisName: Valkyrie_Helmet | |
| Name: Valkyrie Helmet | |
| Type: Armor | |
| Defense: 10 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| View: 225 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bInt,2; | |
| bonus bDex,2; | |
| bonus bAgi,2; | |
| bonus bMdef,5; | |
| - Id: 5827 | |
| AegisName: Book_File_Hat | |
| Name: Book File Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 423 | |
| - Id: 5828 | |
| AegisName: Honor_Gold_Ring | |
| Name: Honor Gold Ring | |
| Type: Armor | |
| Weight: 50 | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bAllStats,1; | |
| bonus bMdef,5; | |
| - Id: 5844 | |
| AegisName: Loyal_Ring3 | |
| Name: Loyal Ring3 | |
| Type: Armor | |
| Locations: | |
| Both_Accessory: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Script: | | |
| bonus bAllStats,3; | |
| - Id: 5846 | |
| AegisName: Buzzy_Ball_Gum | |
| Name: Buzzy Ball Gum | |
| Type: Armor | |
| Buy: 50 | |
| Weight: 100 | |
| Defense: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 572 | |
| Script: | | |
| bonus bMdef,5; | |
| - Id: 5851 | |
| AegisName: Summer_Knight | |
| Name: Summer Knight | |
| Type: Armor | |
| Buy: 20 | |
| Defense: 1 | |
| Locations: | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 60 | |
| View: 138 | |
| - Id: 5856 | |
| AegisName: Passion_FB_Hat | |
| Name: Passion FB Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 671 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bDex,2; | |
| - Id: 5857 | |
| AegisName: Cool_FB_Hat | |
| Name: Cool FB Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 672 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bVit,2; | |
| - Id: 5858 | |
| AegisName: Victory_FB_Hat | |
| Name: Victory FB Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 673 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus bDex,2; | |
| - Id: 5859 | |
| AegisName: Glory_FB_Hat | |
| Name: Glory FB Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 600 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 674 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,1; | |
| - Id: 9001 | |
| AegisName: Poring_Egg | |
| Name: Poring Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9002 | |
| AegisName: Drops_Egg | |
| Name: Drops Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9003 | |
| AegisName: Poporing_Egg | |
| Name: Poporing Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9004 | |
| AegisName: Lunatic_Egg | |
| Name: Lunatic Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9005 | |
| AegisName: Picky_Egg | |
| Name: Picky Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9006 | |
| AegisName: Chonchon_Egg | |
| Name: Chonchon Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9007 | |
| AegisName: Steel_Chonchon_Egg | |
| Name: Steel Chonchon Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9008 | |
| AegisName: Hunter_Fly_Egg | |
| Name: Hunter Fly Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9009 | |
| AegisName: Savage_Bebe_Egg | |
| Name: Savage Babe Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9010 | |
| AegisName: Baby_Desert_Wolf_Egg | |
| Name: Baby Desert Wolf Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9011 | |
| AegisName: Rocker_Egg | |
| Name: Rocker Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9012 | |
| AegisName: Spore_Egg | |
| Name: Spore Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9013 | |
| AegisName: Poison_Spore_Egg | |
| Name: Poison Spore Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9014 | |
| AegisName: PecoPeco_Egg | |
| Name: Peco Peco Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9015 | |
| AegisName: Smokie_Egg | |
| Name: Smokie Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9016 | |
| AegisName: Yoyo_Egg | |
| Name: Yoyo Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9017 | |
| AegisName: Orc_Warrior_Egg | |
| Name: Orc Warrior Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9018 | |
| AegisName: Munak_Egg | |
| Name: Munak Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9019 | |
| AegisName: Dokkaebi_Egg | |
| Name: Dokebi Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9020 | |
| AegisName: Sohee_Egg | |
| Name: Sohee Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9021 | |
| AegisName: Isis_Egg | |
| Name: Isis Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9022 | |
| AegisName: Green_Petite_Egg | |
| Name: Green Petite Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9023 | |
| AegisName: Deviruchi_Egg | |
| Name: Deviruchi Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9024 | |
| AegisName: Bapho_Jr._Egg | |
| Name: Bapho Jr. Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9025 | |
| AegisName: Bongun_Egg | |
| Name: Bongun Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9026 | |
| AegisName: Zherlthsh_Egg | |
| Name: Zealotus Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9027 | |
| AegisName: Alice_Egg | |
| Name: Alice Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9028 | |
| AegisName: Rice_Cake_Egg | |
| Name: Hard Rice Cake | |
| Type: Petegg | |
| Buy: 20 | |
| Trade: | |
| NoDrop: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 9029 | |
| AegisName: Santa_Goblin_Egg | |
| Name: Christmas Goblin's Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9030 | |
| AegisName: Chung_E_Egg | |
| Name: Green Maiden Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9031 | |
| AegisName: Spring_Rabbit_Egg | |
| Name: Spring Rabbit Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9032 | |
| AegisName: Knife_Goblin_Egg | |
| Name: Knife Goblin Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9033 | |
| AegisName: Flail_Goblin_Egg | |
| Name: Flail Goblin Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9034 | |
| AegisName: Hammer_Goblin_Egg | |
| Name: Hammer Goblin Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9035 | |
| AegisName: Red_Deleter_Egg | |
| Name: Red Deleter Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9036 | |
| AegisName: Diabolic_Egg | |
| Name: Diabolic Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9037 | |
| AegisName: Wanderer_Egg | |
| Name: Wanderer Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9038 | |
| AegisName: New_Year_Doll_Egg | |
| Name: New Year Doll Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9039 | |
| AegisName: Bacsojin_Egg | |
| Name: Bacsojin Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9040 | |
| AegisName: Civil_Servant_Egg | |
| Name: Civil Servant Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9041 | |
| AegisName: Leaf_Cat_Egg | |
| Name: Leaf Cat Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9042 | |
| AegisName: Loli_Ruri_Egg | |
| Name: Loli Ruri Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9043 | |
| AegisName: Marionette_Egg | |
| Name: Marionette Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9044 | |
| AegisName: Shinobi_Egg | |
| Name: Shinobi Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9045 | |
| AegisName: Whisper_Egg | |
| Name: Whisper Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9046 | |
| AegisName: Goblin_Leader_Egg | |
| Name: Goblin Leader Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9047 | |
| AegisName: Wicked_Nymph_Egg | |
| Name: Wicked Nymph Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9048 | |
| AegisName: Miyabi_Ningyo_Egg | |
| Name: Miyabi Ningyo Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9049 | |
| AegisName: Dullahan_Egg | |
| Name: Dullahan Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9050 | |
| AegisName: Medusa_Egg | |
| Name: Medusa Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9051 | |
| AegisName: Stone_Shooter_Egg | |
| Name: Stone Shooter Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9052 | |
| AegisName: Incubus_Egg | |
| Name: Incubus Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9053 | |
| AegisName: Golem_Egg | |
| Name: Golem Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9054 | |
| AegisName: Nightmare_Terror_Egg | |
| Name: Nightmare Terror Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9055 | |
| AegisName: Succubus_Egg | |
| Name: Succubus Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 9056 | |
| AegisName: Imp_Egg | |
| Name: Imp Egg | |
| Type: Petegg | |
| Buy: 20 | |
| - Id: 10001 | |
| AegisName: Skull_Helm | |
| Name: Skull Helm | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10002 | |
| AegisName: Monster_Oxygen_Mask | |
| Name: Monster Oxygen Mask | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10003 | |
| AegisName: Transparent_Headgear | |
| Name: Transparent Head Protector | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10004 | |
| AegisName: Pacifier | |
| Name: Pacifier | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10005 | |
| AegisName: Wig | |
| Name: Wig | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10006 | |
| AegisName: Queen's_Hair_Ornament | |
| Name: Queen's Hair Ornament | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10007 | |
| AegisName: Silk_Ribbon | |
| Name: Silk Ribbon | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10008 | |
| AegisName: Punisher | |
| Name: Punisher | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10009 | |
| AegisName: Wild_Flower | |
| Name: Wild Flower | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10010 | |
| AegisName: Battered_Pot | |
| Name: Battered Pot | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10011 | |
| AegisName: Stellar_Hairpin | |
| Name: Stellar Hairpin | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10012 | |
| AegisName: Tiny_Egg_Shell | |
| Name: Tiny Egg Shell | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10013 | |
| AegisName: Backpack | |
| Name: Backpack | |
| Type: Petarmor | |
| Buy: 1500 | |
| - Id: 10014 | |
| AegisName: Rocker_Glasses | |
| Name: Rocker Glasses | |
| Type: Petarmor | |
| Buy: 2000 | |
| - Id: 10015 | |
| AegisName: Green_Lace | |
| Name: Green Lace | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10016 | |
| AegisName: Golden_Bell | |
| Name: Golden Bell | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10017 | |
| AegisName: Bark_Shorts | |
| Name: Bark Shorts | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10018 | |
| AegisName: Monkey_Circlet | |
| Name: Monkey Circlet | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10019 | |
| AegisName: Red_Muffler | |
| Name: Red Scarf | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10020 | |
| AegisName: Sword_Of_Grave_Keeper | |
| Name: Grave Keeper's Sword | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10021 | |
| AegisName: Round_Hair_Ornament | |
| Name: Circular Headgear | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10022 | |
| AegisName: Golden_Earing | |
| Name: Gold Earring | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10023 | |
| AegisName: Green_Lucky_Bag | |
| Name: Green Jewel Bag | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10024 | |
| AegisName: Fashionable_Glasses | |
| Name: Fashion Glasses | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10025 | |
| AegisName: Star_Hairband | |
| Name: Hairband Of Stars | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10026 | |
| AegisName: Wine_On_Sleeve | |
| Name: Tassel for Durumagi | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10027 | |
| AegisName: Spirit_Chain_ | |
| Name: Pet Soul Ring | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10028 | |
| AegisName: Nice_Badge | |
| Name: Beautiful Badges | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10029 | |
| AegisName: Jade_Trinket | |
| Name: Jade Trinket | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10030 | |
| AegisName: Summer_Fan | |
| Name: Summer Fan | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10031 | |
| AegisName: Death_Coil | |
| Name: Ring Of Death | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10032 | |
| AegisName: Queen's_Coronet | |
| Name: Queen's Coronet | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10033 | |
| AegisName: Apro_Hair | |
| Name: Afro | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10034 | |
| AegisName: Ball_Mask | |
| Name: Masked Ball | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10035 | |
| AegisName: Windup_Spring | |
| Name: Spring | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10036 | |
| AegisName: Hell_Horn | |
| Name: Horn Of Hell | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10037 | |
| AegisName: Black_Butterfly_Mask | |
| Name: Black Butterfly Mask | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 10038 | |
| AegisName: Horn_Protector | |
| Name: Horn Barrier | |
| Type: Petarmor | |
| Buy: 20 | |
| - Id: 13000 | |
| AegisName: Jujube_Dagger | |
| Name: Jujube Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 10000 | |
| Weight: 600 | |
| Attack: 39 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| - Id: 13001 | |
| AegisName: Dragon_Killer | |
| Name: Dragon Killer | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 110 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| bonus2 bExpAddRace,RC_Dragon,10; | |
| - Id: 13002 | |
| AegisName: Ginnungagap | |
| Name: Ginnungagap | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 148 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddEff,Eff_Blind,500; | |
| bonus2 bAddEff2,Eff_Blind,50; | |
| - Id: 13003 | |
| AegisName: Coward | |
| Name: Cowardice Blade | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 52000 | |
| Weight: 700 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bDef,5; | |
| - Id: 13004 | |
| AegisName: Coward_ | |
| Name: Cowardice Blade | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 52000 | |
| Weight: 700 | |
| Attack: 80 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Ninja: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bDef,5; | |
| - Id: 13005 | |
| AegisName: Angelwing_Short_Sword | |
| Name: Angelic Wing Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Novice: true | |
| SuperNovice: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| - Id: 13006 | |
| AegisName: Khukri | |
| Name: Khukri | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 240000 | |
| Weight: 600 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddEff,Eff_Curse,1000; | |
| - Id: 13007 | |
| AegisName: Jitte | |
| Name: Jitte | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20000 | |
| Weight: 400 | |
| Attack: 70 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 35 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakWeaponRate,200; | |
| - Id: 13008 | |
| AegisName: Jitte_ | |
| Name: Jitte | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20000 | |
| Weight: 400 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 35 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakWeaponRate,200; | |
| - Id: 13009 | |
| AegisName: Kamaitachi | |
| Name: Kamaitachi | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 48000 | |
| Weight: 900 | |
| Attack: 125 | |
| Range: 2 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bCritical,3; | |
| bonus bAspdRate,3; | |
| - Id: 13010 | |
| AegisName: Asura | |
| Name: Asura | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 3000 | |
| Weight: 600 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,10; | |
| - Id: 13011 | |
| AegisName: Asura_ | |
| Name: Asura | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 3000 | |
| Weight: 600 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bMatkRate,10; | |
| - Id: 13012 | |
| AegisName: Murasame | |
| Name: Murasame | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 95 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| bonus2 bCriticalAddRace,RC_DemiHuman,10; | |
| bonus2 bCriticalAddRace,RC_Player_Human,10; | |
| - Id: 13013 | |
| AegisName: Murasame_ | |
| Name: Murasame | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 95 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| bonus2 bCriticalAddRace,RC_DemiHuman,10; | |
| bonus2 bCriticalAddRace,RC_Player_Human,10; | |
| - Id: 13014 | |
| AegisName: Hakujin | |
| Name: Hakujin | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 42 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus3 bAutoSpell,"AL_HEAL",1,10; | |
| - Id: 13015 | |
| AegisName: Hakujin_ | |
| Name: Hakujin | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 42 | |
| Refineable: true | |
| Script: | | |
| bonus bInt,2; | |
| bonus3 bAutoSpell,"AL_HEAL",1,10; | |
| - Id: 13016 | |
| AegisName: Poison_Knife_ | |
| Name: Poison Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 64 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Poison; | |
| bonus2 bAddEff,Eff_Poison,3000; | |
| - Id: 13017 | |
| AegisName: House_Auger_ | |
| Name: Ice Pick | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bDefRatioAtkClass,Class_All; | |
| - Id: 13018 | |
| AegisName: Sucsamad_ | |
| Name: Sucsamad | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEle,Ele_Earth,10; | |
| bonus2 bAddEle,Ele_Wind,10; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13019 | |
| AegisName: Ginnungagap_ | |
| Name: Ginnungagap | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 148 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Dark; | |
| bonus2 bAddEff,Eff_Blind,500; | |
| bonus2 bAddEff2,Eff_Blind,50; | |
| - Id: 13020 | |
| AegisName: Warrior_Balmung_ | |
| Name: Warrior's Balmung | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 170 | |
| Range: 1 | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 48 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bAllStats,5; | |
| - Id: 13021 | |
| AegisName: Combat_Knife_C | |
| Name: Combat Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 1 | |
| Attack: 129 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_DemiHuman; | |
| bonus bIgnoreDefRace,RC_Player_Human; | |
| bonus2 bSubRace,RC_DemiHuman,10; | |
| bonus2 bSubRace,RC_Player_Human,10; | |
| bonus2 bSubRace,RC_Demon,-10; | |
| bonus bMaxSPrate,10; | |
| bonus bSPDrainValue,3; | |
| - Id: 13022 | |
| AegisName: Counter_Dagger_C | |
| Name: Dagger of Counter | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 1 | |
| Attack: 209 | |
| Range: 1 | |
| Jobs: | |
| Mage: true | |
| Sage: true | |
| SoulLinker: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bCritical,90; | |
| - Id: 13023 | |
| AegisName: Asura_C | |
| Name: Ashura | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 1 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bMatkRate,15; | |
| - Id: 13024 | |
| AegisName: Sword_Breaker_C | |
| Name: Refined Swordbreaker | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 2 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bBreakWeaponRate,500; | |
| - Id: 13025 | |
| AegisName: Mail_Breaker_C | |
| Name: Refined Mailbreaker | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 2 | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bBreakArmorRate,500; | |
| - Id: 13026 | |
| AegisName: Moonlight_Sword_C | |
| Name: Moonlight Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 2 | |
| Attack: 85 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bMaxSPrate,10; | |
| bonus bSPDrainValue,3; | |
| - Id: 13027 | |
| AegisName: Scalpel | |
| Name: Scalpel | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Bleeding,500; | |
| - Id: 13028 | |
| AegisName: Tooth_Blade | |
| Name: Tooth Blade | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| if (getrefine()>=9) { | |
| bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; | |
| } else | |
| bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; | |
| - Id: 13029 | |
| AegisName: Prinsence_Knife | |
| Name: Prinsense Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 13030 | |
| AegisName: Dragon_Killer_ | |
| Name: Dragon Killer | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 60 | |
| Refineable: true | |
| Script: | | |
| bonus bIgnoreDefRace,RC_Dragon; | |
| bonus2 bExpAddRace,RC_Dragon,10; | |
| - Id: 13031 | |
| AegisName: Sword_Breaker_ | |
| Name: Swordbreaker | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakWeaponRate,500; | |
| - Id: 13032 | |
| AegisName: Mail_Breaker_ | |
| Name: Mailbreaker | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 1000 | |
| Attack: 70 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakArmorRate,500; | |
| - Id: 13033 | |
| AegisName: Assasin_Dagger_ | |
| Name: Assassin Dagger | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 140 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Assassin: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 36 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHPrate,20; | |
| bonus bMaxSPrate,15; | |
| bonus bAspdRate,2; | |
| bonus bAtkEle,Ele_Dark; | |
| - Id: 13034 | |
| AegisName: Twilight_Desert | |
| Name: Desert Twilight | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| - Id: 13035 | |
| AegisName: Sandstorm | |
| Name: Sandstorm | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 600 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Assassin: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| - Id: 13036 | |
| AegisName: BF_Dagger1 | |
| Name: Brave Assassin's Damascus | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bAgi,1; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker) | |
| bonus bMatkRate,15; | |
| - Id: 13037 | |
| AegisName: BF_Dagger2 | |
| Name: Valorous Assassin's Damascus | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bAgi,1; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus bUnbreakableWeapon; | |
| autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; | |
| if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker) | |
| bonus bMatkRate,15; | |
| - Id: 13038 | |
| AegisName: Dagger_Of_Hunter | |
| Name: Dagger of Hunter | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 120 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Rogue: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bAgi,2; | |
| bonus bDex,1; | |
| bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; | |
| bonus2 bSkillAtk,"RG_BACKSTAP",20; | |
| - Id: 13039 | |
| AegisName: Ivory_Knife | |
| Name: Ivory Knife | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 700 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bAgi,2; | |
| bonus bAspdRate,3; | |
| bonus2 bAddEff,Eff_Bleeding,300; | |
| bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; | |
| - Id: 13040 | |
| AegisName: N_Cutter | |
| Name: Novice Cutter | |
| Type: Weapon | |
| SubType: Dagger | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 13041 | |
| AegisName: N_Main_Gauche | |
| Name: Novice Main Gauche | |
| Type: Weapon | |
| SubType: Dagger | |
| Attack: 63 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 13042 | |
| AegisName: Krieger_Dagger1 | |
| Name: Glorious Gladius | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Novice: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) | |
| bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; | |
| - Id: 13043 | |
| AegisName: Fortune_Sword_I | |
| Name: Fortune Sword | |
| Type: Weapon | |
| SubType: Dagger | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bLuk,5; | |
| - Id: 13044 | |
| AegisName: House_Auger_I | |
| Name: Ice Pick | |
| Type: Weapon | |
| SubType: Dagger | |
| Attack: 105 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 13045 | |
| AegisName: Kamaitachi_I | |
| Name: Kamaitachi | |
| Type: Weapon | |
| SubType: Dagger | |
| Attack: 155 | |
| Range: 2 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 13046 | |
| AegisName: Krieg | |
| Name: Krierg | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 110 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Assassin: true | |
| Rogue: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; | |
| bonus2 bSkillAtk,"RG_BACKSTAP",15; | |
| - Id: 13047 | |
| AegisName: Weihna | |
| Name: Weihna | |
| Type: Weapon | |
| SubType: Dagger | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 135 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Assassin: true | |
| Rogue: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000; | |
| autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| - Id: 13048 | |
| AegisName: Damascus_C | |
| Name: Damascus | |
| Type: Weapon | |
| SubType: Dagger | |
| Attack: 153 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Archer: true | |
| Assassin: true | |
| BardDancer: true | |
| Blacksmith: true | |
| Crusader: true | |
| Hunter: true | |
| Knight: true | |
| Mage: true | |
| Merchant: true | |
| Ninja: true | |
| Rogue: true | |
| Sage: true | |
| SoulLinker: true | |
| Swordman: true | |
| Thief: true | |
| Wizard: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 13100 | |
| AegisName: Six_Shooter | |
| Name: Six Shooter | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 4500 | |
| Weight: 400 | |
| Attack: 30 | |
| Range: 7 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,-10; | |
| - Id: 13101 | |
| AegisName: Six_Shooter_ | |
| Name: Six Shooter | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 4500 | |
| Weight: 400 | |
| Attack: 30 | |
| Range: 7 | |
| Slots: 2 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,-10; | |
| - Id: 13102 | |
| AegisName: Crimson_Bolt | |
| Name: Crimson Bolt | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 20000 | |
| Weight: 450 | |
| Attack: 45 | |
| Range: 7 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 35 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,-10; | |
| - Id: 13103 | |
| AegisName: Crimson_Bolt_ | |
| Name: Crimson Bolt | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 20000 | |
| Weight: 450 | |
| Attack: 45 | |
| Range: 7 | |
| Slots: 2 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 35 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,-10; | |
| - Id: 13104 | |
| AegisName: The_Garrison | |
| Name: Garrison | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 48000 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 7 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,-10; | |
| - Id: 13105 | |
| AegisName: The_Garrison_ | |
| Name: Garrison | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 48000 | |
| Weight: 500 | |
| Attack: 70 | |
| Range: 7 | |
| Slots: 2 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,-10; | |
| - Id: 13106 | |
| AegisName: Gold_Lux | |
| Name: Gold Lux | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 100000 | |
| Weight: 500 | |
| Attack: 20 | |
| Range: 7 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 12 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,-10; | |
| if (getskilllv("GS_GLITTERING")>0) | |
| bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; | |
| - Id: 13107 | |
| AegisName: Wasteland_Outlaw | |
| Name: Wasteland's Outlaw | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 20 | |
| Weight: 580 | |
| Attack: 68 | |
| Range: 7 | |
| Slots: 2 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,readparam(bAgi)/10; | |
| bonus bAspdRate,readparam(bAgi)/14; | |
| - Id: 13108 | |
| AegisName: BF_Pistol1 | |
| Name: Soldier Revolver | |
| Type: Weapon | |
| SubType: Revolver | |
| Attack: 70 | |
| Range: 7 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bHit,-10; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13109 | |
| AegisName: Wasteland_Outlaw_C | |
| Name: Wasteland Outlaw | |
| Type: Weapon | |
| SubType: Revolver | |
| Buy: 20 | |
| Attack: 100 | |
| Range: 7 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| Script: | | |
| bonus bHit,readparam(bAgi)/10; | |
| bonus bAspdRate,readparam(bAgi)/14; | |
| bonus2 bAddClass,Class_All,10; | |
| bonus bMatkRate,10; | |
| - Id: 13110 | |
| AegisName: Krieger_Pistol1 | |
| Name: Glorious Pistol | |
| Type: Weapon | |
| SubType: Revolver | |
| Attack: 80 | |
| Range: 7 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); | |
| bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; | |
| bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; | |
| } | |
| - Id: 13112 | |
| AegisName: P_Revolver1 | |
| Name: Eden Revlover I | |
| Type: Weapon | |
| SubType: Revolver | |
| Attack: 4 | |
| Range: 7 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 26 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bHit,-5; | |
| - Id: 13113 | |
| AegisName: P_Revolver2 | |
| Name: Eden Revlover II | |
| Type: Weapon | |
| SubType: Revolver | |
| Attack: 60 | |
| Range: 7 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 40 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bHit,-5; | |
| - Id: 13150 | |
| AegisName: Branch | |
| Name: Branch | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 3000 | |
| Weight: 500 | |
| Attack: 50 | |
| Range: 9 | |
| Slots: 3 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| - Id: 13151 | |
| AegisName: The_Cyclone | |
| Name: Cyclone | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 17500 | |
| Weight: 700 | |
| Attack: 120 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,10; | |
| bonus bCritical,10; | |
| - Id: 13152 | |
| AegisName: The_Cyclone_ | |
| Name: Cyclone | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 17500 | |
| Weight: 700 | |
| Attack: 120 | |
| Range: 9 | |
| Slots: 2 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,10; | |
| bonus bCritical,10; | |
| - Id: 13153 | |
| AegisName: Dusk | |
| Name: Dusk | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 23500 | |
| Weight: 750 | |
| Attack: 150 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 56 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,10; | |
| bonus bCritical,10; | |
| - Id: 13154 | |
| AegisName: Rolling_Stone | |
| Name: Rolling Stone | |
| Type: Weapon | |
| SubType: Shotgun | |
| Buy: 12000 | |
| Weight: 900 | |
| Attack: 135 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 14 | |
| Refineable: true | |
| Script: | | |
| bonus bSplashRange,1; | |
| - Id: 13155 | |
| AegisName: Black_Rose | |
| Name: Black Rose | |
| Type: Weapon | |
| SubType: Shotgun | |
| Buy: 32000 | |
| Weight: 900 | |
| Attack: 180 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 35 | |
| Refineable: true | |
| Script: | | |
| bonus bSplashRange,1; | |
| - Id: 13156 | |
| AegisName: Gate_Keeper | |
| Name: Gate Keeper | |
| Type: Weapon | |
| SubType: Shotgun | |
| Buy: 56000 | |
| Weight: 1000 | |
| Attack: 210 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 24 | |
| Refineable: true | |
| Script: | | |
| bonus bSplashRange,1; | |
| bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; | |
| - Id: 13157 | |
| AegisName: Drifter | |
| Name: Drifter | |
| Type: Weapon | |
| SubType: Gatling | |
| Buy: 80000 | |
| Weight: 2300 | |
| Attack: 50 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| - Id: 13158 | |
| AegisName: Butcher | |
| Name: Butcher | |
| Type: Weapon | |
| SubType: Gatling | |
| Buy: 130000 | |
| Weight: 2500 | |
| Attack: 75 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 68 | |
| Refineable: true | |
| Script: | | |
| bonus2 bCriticalAddRace,RC_Brute,10; | |
| bonus2 bCriticalAddRace,RC_Player_Doram,10; | |
| - Id: 13159 | |
| AegisName: Butcher_ | |
| Name: Butcher | |
| Type: Weapon | |
| SubType: Gatling | |
| Buy: 130000 | |
| Weight: 2500 | |
| Attack: 75 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 68 | |
| Refineable: true | |
| Script: | | |
| bonus2 bCriticalAddRace,RC_Brute,10; | |
| bonus2 bCriticalAddRace,RC_Player_Doram,10; | |
| - Id: 13160 | |
| AegisName: Destroyer | |
| Name: Destroyer | |
| Type: Weapon | |
| SubType: Grenade | |
| Buy: 110000 | |
| Weight: 1200 | |
| Attack: 220 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 52 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakArmorRate,200; | |
| - Id: 13161 | |
| AegisName: Destroyer_ | |
| Name: Destroyer | |
| Type: Weapon | |
| SubType: Grenade | |
| Buy: 110000 | |
| Weight: 1200 | |
| Attack: 220 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 52 | |
| Refineable: true | |
| Script: | | |
| bonus bBreakArmorRate,200; | |
| - Id: 13162 | |
| AegisName: Inferno | |
| Name: Inferno | |
| Type: Weapon | |
| SubType: Grenade | |
| Buy: 230000 | |
| Weight: 1250 | |
| Attack: 280 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 2 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| - Id: 13163 | |
| AegisName: Long_Barrel | |
| Name: Long Barrel | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 40000 | |
| Weight: 1000 | |
| Attack: 150 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,10; | |
| bonus bCritical,20; | |
| bonus bAspdRate,-3; | |
| bonus3 bAutoSpell,"GS_TRACKING",5,20; | |
| - Id: 13164 | |
| AegisName: Long_Barrel_ | |
| Name: Long Barrel | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 40000 | |
| Weight: 1000 | |
| Attack: 150 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,10; | |
| bonus bCritical,20; | |
| bonus bAspdRate,-3; | |
| bonus3 bAutoSpell,"GS_TRACKING",5,20; | |
| - Id: 13165 | |
| AegisName: Jungle_Carbine | |
| Name: Jungle Carbine | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 56000 | |
| Weight: 700 | |
| Attack: 170 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,10; | |
| bonus bCritical,4; | |
| bonus bAspdRate,10; | |
| bonus bHit,-readparam(bDex)/3; | |
| - Id: 13166 | |
| AegisName: Jungle_Carbine_ | |
| Name: Jungle Carbine | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 56000 | |
| Weight: 700 | |
| Attack: 170 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,10; | |
| bonus bCritical,4; | |
| bonus bAspdRate,10; | |
| bonus bHit,-readparam(bDex)/3; | |
| - Id: 13167 | |
| AegisName: Gate_KeeperDD | |
| Name: Gate Keeper-DD | |
| Type: Weapon | |
| SubType: Shotgun | |
| Buy: 72000 | |
| Weight: 1300 | |
| Attack: 200 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bSplashRange,1; | |
| bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; | |
| bonus bDef,getrefine(); | |
| bonus bDex,1; | |
| - Id: 13168 | |
| AegisName: Thunder_P | |
| Name: Thunder P | |
| Type: Weapon | |
| SubType: Shotgun | |
| Buy: 76000 | |
| Weight: 700 | |
| Attack: 80 | |
| Range: 9 | |
| Slots: 1 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bSplashRange,1; | |
| bonus bHit,-5; | |
| bonus bAspdRate,20; | |
| - Id: 13169 | |
| AegisName: Thunder_P_ | |
| Name: Thunder P | |
| Type: Weapon | |
| SubType: Shotgun | |
| Buy: 76000 | |
| Weight: 700 | |
| Attack: 80 | |
| Range: 9 | |
| Slots: 2 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bSplashRange,1; | |
| bonus bHit,-5; | |
| bonus bAspdRate,20; | |
| - Id: 13170 | |
| AegisName: Lever_Action_Rifle | |
| Name: Lever Action Rifle | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 20 | |
| Weight: 770 | |
| Attack: 138 | |
| Range: 9 | |
| Slots: 2 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bHit,20; | |
| bonus bCritical,50; | |
| bonus bAspdRate,-5; | |
| - Id: 13171 | |
| AegisName: BF_Rifle1 | |
| Name: Soldier Rifle | |
| Type: Weapon | |
| SubType: Rifle | |
| Attack: 50 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bHit,10; | |
| bonus bCritical,10; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bCastrate,"GS_TRACKING",-25; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13172 | |
| AegisName: BF_Gatling_Gun1 | |
| Name: Soldier Gatling Gun | |
| Type: Weapon | |
| SubType: Gatling | |
| Attack: 80 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bAddRace,RC_DemiHuman,35; | |
| bonus2 bAddRace,RC_Player_Human,35; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13173 | |
| AegisName: BF_Shotgun1 | |
| Name: Soldier Shotgun | |
| Type: Weapon | |
| SubType: Shotgun | |
| Attack: 100 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus bSplashRange,1; | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13174 | |
| AegisName: BF_Launcher1 | |
| Name: Soldier Grenade Launcher | |
| Type: Weapon | |
| SubType: Grenade | |
| Attack: 300 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bDex,2; | |
| bonus2 bAddRace,RC_DemiHuman,35; | |
| bonus2 bAddRace,RC_Player_Human,35; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13175 | |
| AegisName: Lever_Action_Rifle_C | |
| Name: Lever Action Rifle | |
| Type: Weapon | |
| SubType: Rifle | |
| Buy: 20 | |
| Attack: 170 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bHit,20; | |
| bonus bCritical,50; | |
| bonus bAspdRate,-5; | |
| - Id: 13176 | |
| AegisName: Krieger_Rifle1 | |
| Name: Glorious Rifle | |
| Type: Weapon | |
| SubType: Rifle | |
| Attack: 90 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus2 bSkillAtk,"GS_TRIPLEACTION",30; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus2 bCastrate,"GS_TRACKING",25; | |
| bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; | |
| } | |
| - Id: 13177 | |
| AegisName: Krieger_Gatling1 | |
| Name: Glorious Gatling Gun | |
| Type: Weapon | |
| SubType: Gatling | |
| Attack: 90 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,35; | |
| bonus2 bAddRace,RC_Player_Human,35; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus2 bSkillAtk,"GS_TRIPLEACTION",30; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus2 bAddClass,Class_All,getrefine(); | |
| } | |
| - Id: 13178 | |
| AegisName: Krieger_Shotgun1 | |
| Name: Glorious Shotgun | |
| Type: Weapon | |
| SubType: Shotgun | |
| Attack: 110 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,55; | |
| bonus2 bAddRace,RC_Player_Human,55; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bSplashRange,1; | |
| bonus2 bSkillAtk,"GS_TRIPLEACTION",30; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; | |
| bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; | |
| } | |
| - Id: 13179 | |
| AegisName: Krieger_Launcher1 | |
| Name: Glorious Grenade Launcher | |
| Type: Weapon | |
| SubType: Grenade | |
| Attack: 330 | |
| Range: 9 | |
| Jobs: | |
| Gunslinger: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,35; | |
| bonus2 bAddRace,RC_Player_Human,35; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus2 bSkillAtk,"GS_TRIPLEACTION",30; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2; | |
| bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; | |
| autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| } | |
| - Id: 13300 | |
| AegisName: Huuma_Bird_Wing | |
| Name: Huuma Wing Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 90000 | |
| Weight: 3000 | |
| Attack: 150 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 65 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus bAtkEle,Ele_Wind; | |
| bonus bDex,-2; | |
| bonus bAgi,-1; | |
| - Id: 13301 | |
| AegisName: Huuma_Giant_Wheel | |
| Name: Huuma Giant Wheel Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 40000 | |
| Weight: 2500 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 42 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus2 bAddEff,Eff_Bleeding,100; | |
| - Id: 13302 | |
| AegisName: Huuma_Giant_Wheel_ | |
| Name: Huuma Giant Wheel Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 40000 | |
| Weight: 2500 | |
| Attack: 50 | |
| Range: 1 | |
| Slots: 4 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 42 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus2 bAddEff,Eff_Bleeding,100; | |
| - Id: 13303 | |
| AegisName: Huuma_Blaze | |
| Name: Huuma Blaze Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 78000 | |
| Weight: 1500 | |
| Attack: 185 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus bAtkEle,Ele_Fire; | |
| bonus bDex,-2; | |
| bonus3 bAutoSpell,"MG_FIREBALL",5,30; | |
| - Id: 13304 | |
| AegisName: Huuma_Calm_Mind | |
| Name: Huuma Calm Mind | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 20 | |
| Weight: 1550 | |
| Attack: 112 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus2 bSkillAtk,"NJ_HUUMA",30; | |
| bonus bNoCastCancel; | |
| - Id: 13305 | |
| AegisName: BF_Huuma_Shuriken1 | |
| Name: Brave Huuma Front Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 20 | |
| Attack: 55 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bDex,1; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13306 | |
| AegisName: BF_Huuma_Shuriken2 | |
| Name: Valorous Huuma Front Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 20 | |
| Attack: 55 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bDex,1; | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }"; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13307 | |
| AegisName: Krieger_Huuma_Shuriken1 | |
| Name: Glorious Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Buy: 20 | |
| Attack: 55 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,95; | |
| bonus2 bAddRace,RC_Player_Human,95; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bMatkRate,15; | |
| autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>8) { | |
| bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; | |
| bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; | |
| } | |
| - Id: 13308 | |
| AegisName: Huuma_Blaze_I | |
| Name: Huuma Blaze Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Attack: 230 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus bAtkEle,Ele_Fire; | |
| bonus bDex,2; | |
| - Id: 13309 | |
| AegisName: Huuma_Giant_Wheel_C | |
| Name: Huuma Giant Wheel Shuriken | |
| Type: Weapon | |
| SubType: Huuma | |
| Attack: 99 | |
| Range: 1 | |
| Jobs: | |
| Ninja: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddSize,Size_All,80; | |
| - Id: 13400 | |
| AegisName: Cutlas_ | |
| Name: Cutlus | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 900 | |
| Attack: 150 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 40 | |
| Refineable: true | |
| Script: | | |
| skill "SM_BASH",5; | |
| bonus bStr,2; | |
| bonus bDef,1; | |
| - Id: 13401 | |
| AegisName: Excalibur_C | |
| Name: Excalibur | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 1 | |
| Attack: 199 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,10; | |
| bonus bLuk,10; | |
| bonus bAtkEle,Ele_Holy; | |
| - Id: 13402 | |
| AegisName: Cutlas_C | |
| Name: Cutlus | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 2 | |
| Attack: 185 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| skill "SM_BASH",5; | |
| bonus bStr,2; | |
| bonus bDef,1; | |
| - Id: 13403 | |
| AegisName: Solar_Sword_C | |
| Name: Solar Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 2 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus bHPDrainRate,1; | |
| bonus2 bSPLossRate,15,10000; | |
| - Id: 13404 | |
| AegisName: Platinum_Shotel | |
| Name: Platinum Shotel | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bCritical,50; | |
| - Id: 13405 | |
| AegisName: Curved_Sword | |
| Name: Curved Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 800 | |
| Attack: 125 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 55 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,10; | |
| bonus2 bAddEff,Eff_Curse,300; | |
| - Id: 13406 | |
| AegisName: Edger | |
| Name: Edger | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddClass,Class_All,50; | |
| - Id: 13407 | |
| AegisName: Nagan_C | |
| Name: Refined Nagan | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 1 | |
| Attack: 148 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| skill "TF_DOUBLE",5; | |
| bonus bDoubleRate,25; | |
| bonus2 bAddRace,RC_DemiHuman,40; | |
| bonus2 bAddRace,RC_Player_Human,40; | |
| - Id: 13408 | |
| AegisName: Fire_Brand_C | |
| Name: Refined Fireblend | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 1 | |
| Attack: 120 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus bInt,2; | |
| skill "MG_FIREBOLT",5; | |
| bonus3 bAutoSpell,"MG_FIREBOLT",5,100; | |
| - Id: 13409 | |
| AegisName: Immaterial_Sword_C | |
| Name: Refined Immaterial Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 1 | |
| Attack: 160 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Ghost; | |
| bonus2 bSPVanishRate,45,30; | |
| bonus bSPDrainValue,-1; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13410 | |
| AegisName: BF_Sword1 | |
| Name: Valorous Gladiator Blade | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bDex,1; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13411 | |
| AegisName: BF_Sword2 | |
| Name: Brave Gladiator Blade | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Attack: 115 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bDex,1; | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus bMatkRate,10; | |
| bonus bUnbreakableWeapon; | |
| - Id: 13412 | |
| AegisName: Twin_Edge_B | |
| Name: Twin Edge of Naght Sieger | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 150 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Water; | |
| skill "MG_FROSTDIVER",5; | |
| autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; | |
| - Id: 13413 | |
| AegisName: Twin_Edge_R | |
| Name: Twin Edge of Naght Sieger | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 75 | |
| Refineable: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| skill "WZ_METEOR",3; | |
| autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; | |
| - Id: 13414 | |
| AegisName: Elemental_Sword | |
| Name: Elemental Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 105 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,2; | |
| bonus bInt,4; | |
| bonus bDex,1; | |
| bonus bMatkRate,5; | |
| bonus2 bAddEle,Ele_Neutral,10; | |
| bonus3 bAutoSpell,"MG_COLDBOLT",3,50; | |
| bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",3,1000; | |
| bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",3,1000; | |
| bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000; | |
| - Id: 13415 | |
| AegisName: N_Falchion | |
| Name: Novice Falchion | |
| Type: Weapon | |
| SubType: 1hSword | |
| Attack: 59 | |
| Range: 1 | |
| Slots: 3 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 1 | |
| EquipLevelMin: 2 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 13416 | |
| AegisName: Krieger_Onehand_Sword1 | |
| Name: Glorious Flamberge | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddRace,RC_DemiHuman,75; | |
| bonus2 bAddRace,RC_Player_Human,75; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; | |
| } | |
| if (getrefine()>6) | |
| bonus bAspdRate,5; | |
| if (getrefine()>8) { | |
| bonus bAspdRate,5; | |
| bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; | |
| } | |
| - Id: 13417 | |
| AegisName: Krieger_Onehand_Sword2 | |
| Name: Glorious Rapier | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Novice: true | |
| Rogue: true | |
| SuperNovice: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,getrefine()-5; | |
| bonus bMatkRate,10; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) | |
| bonus bUseSPrate,-10; | |
| if (getrefine()>8) | |
| bonus bInt,5; | |
| - Id: 13418 | |
| AegisName: Krieger_Onehand_Sword3 | |
| Name: Glorious Holy Avenger | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Attack: 130 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 80 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bInt,getrefine()-5; | |
| bonus bMatkRate,10; | |
| bonus bUnbreakableWeapon; | |
| if (getrefine()>5) | |
| bonus bUseSPrate,-10; | |
| if (getrefine()>8) | |
| bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; | |
| if (getrefine()>9) | |
| bonus bInt,5; | |
| - Id: 13419 | |
| AegisName: Holy_Saber | |
| Name: Holy saber | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Attack: 160 | |
| Range: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 13420 | |
| AegisName: Honglyun's_Sword | |
| Name: Honglyun's Sword | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1200 | |
| Attack: 160 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| Trade: | |
| NoDrop: true | |
| NoSell: true | |
| NoGuildStorage: true | |
| Script: | | |
| bonus bAtkEle,Ele_Fire; | |
| bonus bStr,2; | |
| bonus bInt,2; | |
| - Id: 13421 | |
| AegisName: Ruber | |
| Name: Ruber | |
| Type: Weapon | |
| SubType: 1hSword | |
| Buy: 20 | |
| Weight: 1500 | |
| Attack: 170 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; | |
| - Id: 13422 | |
| AegisName: Flamberge_C | |
| Name: Flamberge | |
| Type: Weapon | |
| SubType: 1hSword | |
| Attack: 185 | |
| Range: 1 | |
| Jobs: | |
| Crusader: true | |
| Knight: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus bUnbreakableWeapon; | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 15000 | |
| AegisName: Bone_Plate | |
| Name: Bone Plate | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 1000 | |
| Defense: 7 | |
| Slots: 1 | |
| Jobs: | |
| Alchemist: true | |
| Assassin: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Rogue: true | |
| Swordman: true | |
| Thief: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 85 | |
| Refineable: true | |
| Script: | | |
| bonus bStr,1; | |
| bonus bMdef,3; | |
| bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; | |
| bonus2 bIgnoreDefRaceRate,RC_Brute,10; | |
| bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; | |
| bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; | |
| - Id: 15001 | |
| AegisName: Odin's_Blessing_I | |
| Name: Odin's Blessing | |
| Type: Armor | |
| Defense: 10 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Armor: true | |
| ArmorLevel: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 16000 | |
| AegisName: Erde | |
| Name: Erde | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus2 bSkillAtk,"AM_ACIDTERROR",20; | |
| bonus2 bSkillAtk,"AM_DEMONSTRATION",20; | |
| bonus bMaxSP,50; | |
| bonus bHealPower,10; | |
| - Id: 16001 | |
| AegisName: Red_Square_Bag | |
| Name: Red Square Bag | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 500 | |
| Attack: 130 | |
| Range: 1 | |
| Slots: 2 | |
| Jobs: | |
| Acolyte: true | |
| Alchemist: true | |
| Blacksmith: true | |
| Crusader: true | |
| Knight: true | |
| Merchant: true | |
| Monk: true | |
| Priest: true | |
| Swordman: true | |
| Classes: | |
| Upper: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| Script: | | |
| bonus bMaxHP,200; | |
| bonus2 bSkillAtk,"AM_ACIDTERROR",20; | |
| bonus2 bSkillAtk,"AM_DEMONSTRATION",20; | |
| bonus2 bAddMonsterDropItem,501,50; | |
| bonus2 bAddMonsterDropItem,502,20; | |
| bonus2 bAddMonsterDropItem,503,20; | |
| bonus2 bAddMonsterDropItem,504,20; | |
| bonus2 bAddMonsterDropItem,505,10; | |
| if (readparam(bStr)>=95) | |
| bonus2 bAddEff,Eff_Stun,500; | |
| - Id: 16002 | |
| AegisName: Stunner_C | |
| Name: Stunner | |
| Type: Weapon | |
| SubType: Mace | |
| Attack: 175 | |
| Range: 1 | |
| Jobs: | |
| Acolyte: true | |
| Monk: true | |
| Priest: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 3 | |
| EquipLevelMin: 1 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| Script: | | |
| bonus2 bAddEff,Eff_Stun,1000; | |
| bonus2 bAddSize,Size_All,40; | |
| - Id: 16030 | |
| AegisName: Pilebuncker_S | |
| Name: Pile Bunker S | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 3000 | |
| Attack: 400 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 130 | |
| Refineable: true | |
| Script: | | |
| bonus bAspdRate,getrefine()/2; | |
| - Id: 16031 | |
| AegisName: Pilebuncker_P | |
| Name: Pile Bunker P | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 4000 | |
| Attack: 450 | |
| Range: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 130 | |
| Refineable: true | |
| Script: | | |
| bonus bBaseAtk,getrefine()*5; | |
| - Id: 16032 | |
| AegisName: Pilebuncker_T | |
| Name: Pile Bunker T | |
| Type: Weapon | |
| SubType: Mace | |
| Buy: 20 | |
| Weight: 3500 | |
| Attack: 400 | |
| Range: 1 | |
| Slots: 1 | |
| Jobs: | |
| Blacksmith: true | |
| Locations: | |
| Right_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 130 | |
| Refineable: true | |
| Script: | | |
| bonus bUseSPrate,getrefine()*-1; | |
| - Id: 18100 | |
| AegisName: Shooting_Star_C | |
| Name: Shooting Star | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 20 | |
| Attack: 190 | |
| Range: 5 | |
| Jobs: | |
| BardDancer: true | |
| Hunter: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| Script: | | |
| bonus bLongAtkRate,20; | |
| - Id: 18101 | |
| AegisName: F_Bow_Of_Rudra_C | |
| Name: Rudra Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 2 | |
| Attack: 185 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bInt,5; | |
| skill "AL_CURE",1; | |
| skill "AL_HEAL",1; | |
| bonus2 bResEff,Eff_Poison,5000; | |
| bonus2 bResEff,Eff_Curse,5000; | |
| bonus2 bResEff,Eff_Silence,5000; | |
| bonus2 bResEff,Eff_Confusion,5000; | |
| bonus2 bResEff,Eff_Blind,5000; | |
| - Id: 18102 | |
| AegisName: E_Bow_Of_Rudra_C | |
| Name: Rudra Bow | |
| Type: Weapon | |
| SubType: Bow | |
| Buy: 2 | |
| Attack: 185 | |
| Range: 5 | |
| Jobs: | |
| Archer: true | |
| BardDancer: true | |
| Hunter: true | |
| Rogue: true | |
| Thief: true | |
| Locations: | |
| Both_Hand: true | |
| WeaponLevel: 4 | |
| Script: | | |
| bonus bAtkEle,Ele_Holy; | |
| bonus bInt,5; | |
| skill "AL_CURE",1; | |
| skill "AL_HEAL",1; | |
| bonus2 bResEff,Eff_Poison,5000; | |
| bonus2 bResEff,Eff_Curse,5000; | |
| bonus2 bResEff,Eff_Silence,5000; | |
| bonus2 bResEff,Eff_Confusion,5000; | |
| bonus2 bResEff,Eff_Blind,5000; | |
| - Id: 18500 | |
| AegisName: Cheer_Scarf6 | |
| Name: Cheer Scarf6 | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 18501 | |
| AegisName: Cheer_Scarf8 | |
| Name: Cheer Scarf8 | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 18502 | |
| AegisName: Cheer_Scarf10 | |
| Name: Cheer Scarf10 | |
| Type: Armor | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 369 | |
| Trade: | |
| NoDrop: true | |
| NoTrade: true | |
| NoSell: true | |
| NoCart: true | |
| NoStorage: true | |
| NoGuildStorage: true | |
| NoMail: true | |
| NoAuction: true | |
| - Id: 18503 | |
| AegisName: Small_Horn_Of_Devil | |
| Name: Small Devil Horns | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 562 | |
| Script: | | |
| bonus bAtkRate,5; | |
| bonus bMatkRate,5; | |
| bonus bMaxHPRate,10; | |
| bonus bMaxSPRate,10; | |
| - Id: 18505 | |
| AegisName: Umbala_Spirit | |
| Name: Umbala Spirit | |
| Type: Armor | |
| Weight: 200 | |
| Defense: 1 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 30 | |
| View: 675 | |
| Script: | | |
| bonus bVit,1; | |
| - Id: 18506 | |
| AegisName: Hattah_Black | |
| Name: Hattah Black | |
| Type: Armor | |
| Buy: 12000 | |
| Weight: 4000 | |
| Defense: 2 | |
| Slots: 1 | |
| Locations: | |
| Head_Low: true | |
| Head_Mid: true | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| Refineable: true | |
| View: 676 | |
| - Id: 18507 | |
| AegisName: Elven_Ears_ | |
| Name: Elven Ears | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Slots: 1 | |
| Jobs: | |
| All: true | |
| Novice: false | |
| SuperNovice: false | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| View: 73 | |
| - Id: 18539 | |
| AegisName: Skull_Cap | |
| Name: Skull Cap | |
| Type: Armor | |
| Buy: 40 | |
| Weight: 200 | |
| Defense: 5 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 10 | |
| Refineable: true | |
| View: 713 | |
| Script: | | |
| bonus bMatkRate,2; | |
| if (getrefine() >= 5) { | |
| bonus bMatkRate,3; | |
| } | |
| if (getrefine() >= 7) { | |
| bonus bMatkRate,3; | |
| } | |
| - Id: 18595 | |
| AegisName: Horn_Of_Ancient | |
| Name: Horn of Ancient | |
| Type: Armor | |
| Buy: 40 | |
| Weight: 200 | |
| Defense: 8 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 50 | |
| Refineable: true | |
| View: 757 | |
| Script: | | |
| autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; | |
| - Id: 18596 | |
| AegisName: Sprout_Hat | |
| Name: Sprout Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 200 | |
| Defense: 4 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 70 | |
| Refineable: true | |
| View: 758 | |
| Script: | | |
| skill "WZ_HEAVENDRIVE",3; | |
| - Id: 18597 | |
| AegisName: Mercury_Helm | |
| Name: Mercury Riser | |
| Type: Armor | |
| Buy: 40 | |
| Weight: 200 | |
| Defense: 10 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 759 | |
| Script: | | |
| bonus bAspdRate,3; | |
| bonus bCritical,3; | |
| if (getrefine() >= 7) { | |
| bonus bAspdRate,2; | |
| bonus bCritical,2; | |
| } | |
| if (getrefine() >= 9) { | |
| bonus bAspdRate,2; | |
| bonus bCritical,2; | |
| } | |
| - Id: 18600 | |
| AegisName: Cat_Ears_Beret | |
| Name: Cat Ear Beret | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 100 | |
| Defense: 5 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 761 | |
| Script: | | |
| bonus bAtkRate,5; | |
| if (getrefine() > 5 && getrefine() <= 12) { | |
| bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); | |
| bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); | |
| bonus2 bAddRace,RC_Player_Human,(getrefine() - 5); | |
| bonus2 bSubRace,RC_Player_Human,(getrefine() - 5); | |
| } | |
| if (getrefine() > 12) { | |
| bonus2 bAddRace,RC_DemiHuman,7; | |
| bonus2 bAddRace,RC_Player_Human,7; | |
| bonus2 bSubRace,RC_DemiHuman,7; | |
| bonus2 bSubRace,RC_Player_Human,7; | |
| } | |
| - Id: 18612 | |
| AegisName: White_Musang_Hat | |
| Name: White Musang Hat | |
| Type: Armor | |
| Buy: 40 | |
| Weight: 200 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 770 | |
| Script: | | |
| bonus bStr,2; | |
| bonus bVit,2; | |
| bonus bLuk,1; | |
| bonus bUnbreakableHelm; | |
| - Id: 18613 | |
| AegisName: Black_Musang_Hat | |
| Name: Black Musang Hat | |
| Type: Armor | |
| Buy: 40 | |
| Weight: 200 | |
| Defense: 3 | |
| Slots: 1 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 771 | |
| Script: | | |
| bonus bInt,2; | |
| bonus bDex,2; | |
| bonus bAgi,1; | |
| bonus bUnbreakableHelm; | |
| - Id: 18620 | |
| AegisName: Heart_Eyepatch | |
| Name: Heart Eyepatch | |
| Type: Armor | |
| Buy: 5 | |
| Weight: 200 | |
| Defense: 2 | |
| Locations: | |
| Head_Mid: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 779 | |
| - Id: 18656 | |
| AegisName: Wit_Pumpkin_Hat | |
| Name: Witch's Pumpkin Hat | |
| Type: Armor | |
| Buy: 20 | |
| Weight: 300 | |
| Defense: 10 | |
| Locations: | |
| Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 20 | |
| Refineable: true | |
| View: 717 | |
| Script: | | |
| bonus bMdef,10; | |
| bonus bStr,2; | |
| bonus bInt,2; | |
| bonus2 bMagicAddRace,RC_Undead,15; | |
| bonus2 bMagicAddRace,RC_Demon,15; | |
| - Id: 19500 | |
| AegisName: T_Mr_Smile | |
| Name: T Mr Smile | |
| Type: Armor | |
| Locations: | |
| Costume_Head_Mid: true | |
| Costume_Head_Low: true | |
| ArmorLevel: 1 | |
| View: 65 | |
| Script: | | |
| bonus bStr,2; | |
| - Id: 19501 | |
| AegisName: T_Spinx_Helm | |
| Name: T Spinx Helm | |
| Type: Armor | |
| Slots: 1 | |
| Locations: | |
| Costume_Head_Top: true | |
| Costume_Head_Low: true | |
| ArmorLevel: 1 | |
| View: 137 | |
| - Id: 19504 | |
| AegisName: T_Sunglasses | |
| Name: T Sunglasses | |
| Type: Armor | |
| Locations: | |
| Costume_Head_Mid: true | |
| ArmorLevel: 1 | |
| View: 12 | |
| - Id: 19505 | |
| AegisName: T_Cigarette | |
| Name: T Cigarette | |
| Type: Armor | |
| Locations: | |
| Costume_Head_Low: true | |
| ArmorLevel: 1 | |
| View: 54 | |
| - Id: 19506 | |
| AegisName: T_Valkyrie_Feather_Band | |
| Name: T Valkyrie Feather Band | |
| Type: Armor | |
| Locations: | |
| Costume_Head_Top: true | |
| ArmorLevel: 1 | |
| Refineable: true | |
| View: 300 | |
| - Id: 19507 | |
| AegisName: Fine_Sun | |
| Name: Clear Sun | |
| Type: Armor | |
| Locations: | |
| Costume_Head_Top: true | |
| ArmorLevel: 1 | |
| EquipLevelMin: 1 | |
| View: 654 |